/* Orixes Tech — Premium black / white / yellow theme */

:root {
    --color-bg: #ffffff;
    --color-bg-dark: #0a0a0a;
    --color-bg-darker: #000000;
    --color-surface: #ffffff;
    --color-surface-elevated: #111111;
    --color-surface-muted: #f5f5f5;
    --color-surface-soft: #fafaf9;
    --color-surface-accent: #fffbeb;
    --color-surface-dark: #141414;
    --color-border: rgba(10, 10, 10, 0.1);
    --color-border-dark: rgba(255, 255, 255, 0.1);
    --color-text: #0a0a0a;
    --color-text-muted: #525252;
    --color-text-subtle: #737373;
    --color-text-on-dark: #ffffff;
    --color-text-on-dark-muted: rgba(255, 255, 255, 0.72);
    --color-accent: #f9b233;
    --color-accent-bright: #ffc033;
    --color-accent-gold: #f9b233;
    --color-accent-dim: rgba(255, 192, 51, 0.14);
    --color-glow: rgba(255, 192, 51, 0.28);
    --color-link: #a16207;
    --color-link-hover: #92400e;
    --color-focus-ring: rgba(255, 192, 51, 0.35);
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 24px 70px rgba(0, 0, 0, 0.16);
    --shadow-glow: 0 0 0 1px rgba(255, 192, 51, 0.35), 0 10px 30px rgba(255, 192, 51, 0.18);

    --font-display: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
    --font-body: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 999px;

    --space-section: 112px;
    --space-group: 64px;
    --space-element: 24px;

    --container: 1240px;
    --header-h: 76px;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: 0.01em;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
}

.container {
    width: min(100% - 48px, var(--container));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    z-index: 9999;
    padding: 12px 20px;
    background: #fff;
    color: #000;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.skip-link:focus {
    top: 16px;
}

/* Typography — aligned with ORIXES TECH logo */
.text-hero {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 6.5vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: none;
}

.text-section {
    font-family: var(--font-display);
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.015em;
}

.text-headline {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.2vw, 1.625rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.01em;
}

.text-subhead {
    font-family: var(--font-body);
    font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.02em;
    color: var(--color-text-muted);
}

.text-label {
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
}

/* Buttons — unified site-wide */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    padding: 14px 28px;
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: none;
    line-height: 1.2;
    border-radius: var(--radius-full);
    border: 1px solid transparent;
    transition: background-color 0.2s var(--ease-out), color 0.2s var(--ease-out), border-color 0.2s var(--ease-out), transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
}

.btn:focus-visible {
    outline: 2px solid rgba(249, 178, 51, 0.65);
    outline-offset: 2px;
}

.btn-primary,
.btn-accent {
    background: var(--color-accent-bright);
    color: #0a0a0a;
    border-color: rgba(255, 192, 51, 0.35);
    box-shadow: 0 0 0 1px rgba(255, 192, 51, 0.2), 0 8px 24px rgba(255, 192, 51, 0.22);
}

.btn-primary:hover,
.btn-accent:hover {
    background: #ffcb4d;
    border-color: rgba(255, 192, 51, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(255, 192, 51, 0.28), 0 12px 32px rgba(255, 192, 51, 0.28);
}

.btn-primary:active,
.btn-accent:active {
    transform: translateY(0);
}

.btn-ghost,
.btn-secondary {
    border-color: var(--color-border);
    color: var(--color-text);
    background: #fff;
}

.btn-ghost:hover,
.btn-secondary:hover {
    background: var(--color-surface-muted);
    border-color: rgba(249, 178, 51, 0.45);
    color: var(--color-text);
    transform: translateY(-1px);
}

.btn-ghost-light,
.ox-surface-dark .btn-ghost:not(.btn-primary):not(.btn-accent) {
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.btn-ghost-light:hover,
.ox-surface-dark .btn-ghost:not(.btn-primary):not(.btn-accent):hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 192, 51, 0.55);
    color: #fff;
}

.btn-lg {
    min-height: 48px;
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-sm {
    min-height: 40px;
    padding: 10px 20px;
    font-size: 0.8125rem;
}

.header-cta {
    min-height: 40px;
    padding: 10px 20px;
    font-size: 0.8125rem;
}

/* Header — dark premium bar so brand logo colors stay true */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background-color 0.35s var(--ease-out), border-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), backdrop-filter 0.35s var(--ease-out);
}

.site-header.is-scrolled {
    background: rgba(10, 10, 10, 0.96);
    border-bottom-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.site-header--light {
    background: rgba(255, 255, 255, 0.92);
    border-bottom-color: var(--color-border);
    box-shadow: none;
}

.site-header--home.site-header--light:not(.is-scrolled) {
    background: transparent;
    backdrop-filter: none;
    border-bottom-color: transparent;
    box-shadow: none;
}

.site-header--home.site-header--light.is-scrolled {
    background: rgba(10, 10, 10, 0.94);
    backdrop-filter: blur(18px);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
}

.site-header--light .nav-link {
    color: var(--color-text-muted);
}

.site-header--light .nav-link:hover,
.site-header--light .nav-link.is-active {
    color: var(--color-text);
}

.site-header--light .nav-toggle span {
    background: var(--color-text);
}

.site-header--dark .nav-link {
    color: rgba(255, 255, 255, 0.78);
}

.site-header--dark .nav-link:hover,
.site-header--dark .nav-link.is-active {
    color: #fff;
}

.site-header--dark .nav-toggle span {
    background: #fff;
}

.site-header--dark .logo-img {
    filter: none;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    display: block;
    width: auto;
    height: 44px;
    max-width: min(180px, 42vw);
    object-fit: contain;
    object-position: left center;
}

.logo-img-footer {
    height: 40px;
    max-width: 160px;
}

.nav-desktop {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    color: var(--color-text-muted);
    transition: color 0.25s var(--ease-out);
    position: relative;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--color-text);
}

.nav-link.is-active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    border-radius: var(--radius-full);
    background: var(--color-accent-bright);
    transform: scaleX(1);
    transform-origin: center;
    transition: transform 0.25s var(--ease-out), opacity 0.25s;
}

.site-header--light .nav-link.is-active::after {
    background: #a16207;
}

.site-header--dark .nav-link.is-active::after {
    background: var(--color-accent-bright);
}

/* Home hero — nav aligns with dark cinematic banner */
body.is-home .site-header--light:not(.is-scrolled) {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.18) 72%, transparent 100%);
    backdrop-filter: blur(6px);
    border-bottom-color: rgba(255, 255, 255, 0.06);
    box-shadow: none;
}

body.is-home .site-header--light:not(.is-scrolled) .nav-link,
body.is-home .site-header--light.is-scrolled .nav-link {
    color: rgba(255, 255, 255, 0.76);
}

body.is-home .site-header--light:not(.is-scrolled) .nav-link:hover,
body.is-home .site-header--light.is-scrolled .nav-link:hover {
    color: var(--color-accent-bright);
}

body.is-home .site-header--light:not(.is-scrolled) .nav-link.is-active,
body.is-home .site-header--light.is-scrolled .nav-link.is-active {
    color: #ffffff;
}

body.is-home .site-header--light .nav-link.is-active::after {
    display: block;
    background: var(--color-accent-bright);
    box-shadow: 0 0 12px rgba(255, 192, 51, 0.45);
}

body.is-home .site-header--light:not(.is-scrolled) .nav-toggle span,
body.is-home .site-header--light.is-scrolled .nav-toggle span {
    background: #ffffff;
}

body.is-home .site-header--light.is-scrolled {
    background: rgba(10, 10, 10, 0.94);
    backdrop-filter: blur(18px);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
}

body.is-home .site-header--light .nav-mega {
    background: rgba(12, 12, 12, 0.98);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

body.is-home .site-header--light .nav-mega__title,
body.is-home .site-header--light .nav-mega__link {
    color: rgba(255, 255, 255, 0.9);
}

body.is-home .site-header--light .nav-mega__link:hover {
    color: var(--color-accent-bright);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--color-text);
    transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

.nav-mobile {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(24px);
    padding: 32px 24px;
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.nav-mobile-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-mobile-link {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

.nav-mobile-contact {
    margin-top: 24px;
    color: var(--color-accent);
    font-weight: 500;
}

/* Hero — cinematic full-screen animation banner */
.hero--cinematic {
    overflow: hidden;
}

.hero--fullscreen {
    position: relative;
    width: 100%;
    min-height: 100dvh;
    padding-top: 0;
    display: block;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #fafaf9;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
}

/* Premium static mesh — clean software-house aesthetic */
.hero-mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 60% at 85% 40%, rgba(255, 192, 51, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 70% 75%, rgba(249, 178, 51, 0.05) 0%, transparent 50%),
        linear-gradient(165deg, #ffffff 0%, #fafaf9 40%, #f4f6fa 100%);
}

.hero-ambient {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    will-change: transform;
}

.hero-glow--gold {
    width: min(55vw, 520px);
    height: min(55vw, 520px);
    background: rgba(255, 192, 51, 0.14);
    top: 8%;
    right: -8%;
    animation: hero-glow-drift 24s ease-in-out infinite;
}

.hero-glow--warm {
    width: min(40vw, 380px);
    height: min(40vw, 380px);
    background: rgba(253, 232, 184, 0.35);
    bottom: 12%;
    right: 18%;
    animation: hero-glow-drift 28s ease-in-out infinite reverse;
}

@keyframes hero-glow-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-2%, 3%) scale(1.04); }
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.45;
    background-image:
        linear-gradient(rgba(10, 10, 10, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 10, 10, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(105deg, transparent 0%, transparent 38%, rgba(0, 0, 0, 0.35) 62%, rgba(0, 0, 0, 0.7) 100%);
    -webkit-mask-image: linear-gradient(105deg, transparent 0%, transparent 38%, rgba(0, 0, 0, 0.35) 62%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-accent-line {
    position: absolute;
    top: 22%;
    right: 8%;
    width: 1px;
    height: 42%;
    z-index: 2;
    background: linear-gradient(to bottom, transparent, rgba(255, 192, 51, 0.35) 30%, rgba(255, 192, 51, 0.15) 70%, transparent);
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .hero-glow--gold,
    .hero-glow--warm {
        animation: none;
    }
}

.hero-backdrop__overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background:
        linear-gradient(105deg, rgba(250, 250, 249, 0.92) 0%, rgba(250, 250, 249, 0.55) 48%, transparent 72%),
        linear-gradient(to top, rgba(250, 250, 249, 0.25) 0%, transparent 22%);
    pointer-events: none;
}

.hero--has-video .hero-backdrop__overlay {
    background:
        linear-gradient(105deg, rgba(248, 250, 252, 0.94) 0%, rgba(248, 250, 252, 0.7) 45%, rgba(248, 250, 252, 0.15) 72%, transparent 100%),
        linear-gradient(to top, rgba(248, 250, 252, 0.35) 0%, transparent 28%);
}

.hero-overlay {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    min-height: 100dvh;
    padding-top: var(--header-h);
    padding-bottom: 100px;
}

.hero--fullscreen .hero-content {
    max-width: 680px;
}

.hero--light .hero-title .line-accent {
    background: linear-gradient(135deg, #ffc033 0%, #f9b233 50%, #c8820a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-scroll-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-subtle);
    animation: scroll-bounce 2s ease-in-out infinite;
}

.hero-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px max(24px, calc((100vw - var(--container)) / 2 + 24px));
    pointer-events: none;
}

.hero-bottom-bar > * {
    pointer-events: auto;
}

.hero--light .hero-float-card {
    position: static;
    background: rgba(255, 255, 255, 0.85);
    border-color: var(--color-border);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    max-width: 220px;
}

.hero--light .hero-float-card strong {
    color: var(--color-text);
}

.hero--light .hero-float-card span {
    color: var(--color-text-muted);
}

.hero-scroll-hint svg {
    opacity: 0.6;
}

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

.hero--fullscreen .hero-float-card {
    position: static;
    max-width: 220px;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
    padding-top: var(--header-h);
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    min-height: calc(100vh - var(--header-h));
    padding-block: var(--space-group);
}

.hero-content {
    max-width: 720px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    padding: 8px 16px;
    background: var(--color-accent-dim);
    border: 1px solid rgba(249, 178, 51, 0.28);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-accent);
}

.hero-eyebrow-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.hero-title {
    margin-bottom: 28px;
}

.hero-title .line-accent {
    display: block;
    color: var(--color-accent);
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 520px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.hero-stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat-label {
    font-size: 0.8125rem;
    color: var(--color-text-subtle);
}

.hero-visual {
    position: relative;
    height: min(70vh, 640px);
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-surface);
    box-shadow: var(--shadow-lg);
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-frame {
    position: absolute;
    inset: -1px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.hero-float-card {
    position: absolute;
    bottom: -24px;
    left: -32px;
    padding: 20px 24px;
    background: var(--color-surface-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    max-width: 240px;
    box-shadow: var(--shadow-md);
}

.hero-float-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.hero-float-card span {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.hero-form-panel {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
}

.hero-form-panel h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 24px;
}

/* Sections */
.section {
    padding-block: var(--space-section);
}

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

.section-surface {
    background: var(--color-surface);
}

.section-header {
    margin-bottom: var(--space-group);
}

.section-header.centered {
    text-align: center;
    max-width: 680px;
    margin-inline: auto;
    margin-bottom: var(--space-group);
}

.section-header .text-label {
    margin-bottom: 16px;
}

.section-header .text-section {
    margin-bottom: 16px;
}

/* Marquee */
.marquee-section {
    padding-block: 32px;
    border-block: 1px solid var(--color-border);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 64px;
    animation: marquee 40s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-subtle);
    white-space: nowrap;
}

.marquee-track span em {
    font-style: normal;
    color: var(--color-accent);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Service cards — asymmetric grid */
.services-showcase {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.service-card {
    grid-column: span 4;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.service-card:hover {
    border-color: rgba(249, 178, 51, 0.45);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.service-card.featured {
    grid-column: span 8;
    grid-row: span 2;
}

.service-card-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e2e8f0;
}

.service-card.featured .service-card-image {
    aspect-ratio: 16 / 9;
    min-height: 320px;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.service-card:hover .service-card-image img {
    transform: scale(1.04);
}

.service-card-body {
    padding: 28px;
}

.service-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card-body p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    line-height: 1.55;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-accent);
    transition: gap 0.2s;
}

.service-link:hover {
    gap: 12px;
}

.service-link svg {
    width: 16px;
    height: 16px;
}

/* Stats band */
.stats-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--color-border);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.stat-cell {
    padding: 48px 32px;
    background: var(--color-surface);
    text-align: center;
}

.stat-cell .value {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 12px;
    color: var(--color-text);
}

.stat-cell .label {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    padding: 36px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: border-color 0.25s, box-shadow 0.25s;
}

.value-card:hover {
    border-color: rgba(249, 178, 51, 0.35);
    box-shadow: var(--shadow-md);
}

.value-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-accent);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 20px;
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* CTA block */
.cta-block {
    position: relative;
    padding: var(--space-group) 0;
    text-align: center;
}

.cta-block-inner {
    padding: 80px 48px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.cta-block .text-label {
    margin-bottom: 16px;
}

.cta-block .text-section {
    margin-bottom: 32px;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    background: #f8fafc;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: rgba(249, 178, 51, 0.6);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(249, 178, 51, 0.15);
}

.form-control::placeholder {
    color: var(--color-text-subtle);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-message {
    padding: 14px 18px;
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    margin-bottom: 20px;
}

.form-message.success {
    background: rgba(249, 178, 51, 0.1);
    border: 1px solid rgba(249, 178, 51, 0.3);
    color: var(--color-accent);
}

.form-message.error {
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.25);
    color: #b91c1c;
}

/* Page hero (inner pages) — see Clay block below for typography overrides */
.page-hero {
    padding-top: calc(var(--header-h) + 48px);
    padding-bottom: 48px;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-bg);
}

.page-hero.compact {
    padding-bottom: 40px;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--color-text-subtle);
    margin-bottom: 24px;
}

.breadcrumb a:hover {
    color: var(--color-text);
}

.breadcrumb span {
    color: var(--color-text-muted);
}

/* About split */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--color-surface);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* Team grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.team-card:hover {
    border-color: rgba(249, 178, 51, 0.25);
    transform: translateY(-4px);
}

.team-photo {
    aspect-ratio: 1;
    overflow: hidden;
    background: #e2e8f0;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: filter 0.4s;
}

.team-card:hover .team-photo img {
    filter: grayscale(0%);
}

.team-info {
    padding: 20px;
}

.team-info h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.team-info p {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

/* Services hub */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Service detail */
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.service-detail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--color-surface);
    position: sticky;
    top: calc(var(--header-h) + 32px);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content p {
    color: var(--color-text-muted);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.capability-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 32px;
}

.capability-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

.capability-list li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    margin-top: 8px;
    background: var(--color-accent);
    border-radius: 50%;
}

.points-list {
    margin-top: 32px;
}

.points-list li {
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.points-list li:first-child {
    padding-top: 0;
}

/* Contact page (Netguru-inspired estimate layout) */
.ox-contact-hero {
    padding-top: calc(var(--header-h) + 48px);
    padding-bottom: 40px;
    background:
        radial-gradient(ellipse 60% 55% at 0% 0%, rgba(255, 192, 51, 0.1), transparent 55%),
        var(--color-bg);
    border-bottom: 1px solid var(--color-border);
}

.ox-contact-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin: 0 0 20px;
    max-width: 14ch;
}

.ox-contact-hero__lead {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: var(--color-text-muted);
    max-width: 42rem;
    margin: 0;
}

.ox-contact-hero__lead a {
    color: var(--color-text);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ox-contact-hero__lead a:hover {
    color: var(--color-accent);
}

.ox-contact-hero__trust {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--color-border);
}

.ox-contact-hero__trust-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-subtle);
    margin: 0 0 16px;
}

.ox-contact-hero__trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ox-contact-hero__trust-list li {
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
    background: var(--color-surface-muted);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
}

.ox-contact-main {
    padding-block: 56px 80px;
}

.ox-contact-main__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 48px;
    align-items: start;
}

.ox-contact-form {
    padding: 40px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.ox-contact-form__req {
    color: var(--color-accent);
}

.ox-contact-form__opt {
    font-weight: 400;
    color: var(--color-text-subtle);
}

.ox-contact-form__note {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--color-text-subtle);
    margin: 0 0 24px;
}

.ox-contact-form__submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.ox-contact-aside {
    position: sticky;
    top: calc(var(--header-h) + 24px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ox-contact-person {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.ox-contact-person__avatar {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    background: var(--color-accent-dim);
    border-radius: var(--radius-full);
}

.ox-contact-person__name {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 700;
    margin: 0 0 4px;
}

.ox-contact-person__role {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0 0 12px;
}

.ox-contact-person__toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: 0;
    background: none;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ox-contact-person__toggle:hover {
    color: var(--color-accent);
}

.ox-contact-person__details {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.ox-contact-person__details p {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--color-text-muted);
    margin: 0 0 12px;
}

.ox-contact-person__channels {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ox-contact-person__channels li + li {
    margin-top: 6px;
}

.ox-contact-person__channels a {
    font-size: 0.9375rem;
    font-weight: 500;
}

.ox-contact-aside__card {
    padding: 24px;
    background: var(--color-surface-muted);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.ox-contact-aside__card h3 {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-subtle);
    margin: 0 0 8px;
}

.ox-contact-aside__card p {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--color-text);
    margin: 0;
}

.ox-contact-aside__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ox-contact-aside__stat {
    padding: 16px;
    text-align: center;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.ox-contact-aside__stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 4px;
}

.ox-contact-aside__stat span {
    font-size: 0.6875rem;
    line-height: 1.4;
    color: var(--color-text-subtle);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ox-contact-panel {
    position: relative;
    overflow: hidden;
    padding-block: 80px;
    background:
        radial-gradient(ellipse 70% 90% at 0% 0%, rgba(249, 178, 51, 0.14), transparent 58%),
        radial-gradient(ellipse 50% 60% at 100% 100%, rgba(249, 178, 51, 0.06), transparent 55%),
        linear-gradient(180deg, #0a0a0a 0%, var(--color-bg-darker) 100%);
    color: var(--color-text-on-dark);
    border-top: 1px solid var(--color-border-dark);
}

.ox-contact-panel__glow {
    position: absolute;
    inset: 0 auto auto 0;
    width: min(480px, 60vw);
    height: 240px;
    background: radial-gradient(circle, rgba(255, 192, 51, 0.16), transparent 70%);
    pointer-events: none;
}

.ox-contact-panel__inner {
    position: relative;
    z-index: 1;
}

.ox-contact-panel__brand {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 32px 48px;
    align-items: center;
    padding-bottom: 40px;
    margin-bottom: 48px;
    border-bottom: 1px solid var(--color-border-dark);
}

.ox-contact-panel__logo {
    display: inline-block;
    line-height: 0;
}

.ox-contact-panel__logo-img {
    display: block;
    width: auto;
    height: 52px;
    max-width: 200px;
    object-fit: contain;
    object-position: left center;
}

.ox-contact-panel__eyebrow {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-accent-bright);
    margin: 0 0 12px;
}

.ox-contact-panel__heading {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.12;
    color: #fff;
    margin: 0 0 14px;
}

.ox-contact-panel__text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-text-on-dark-muted);
    max-width: 40rem;
    margin: 0;
}

.ox-contact-panel__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px 48px;
}

.ox-contact-panel__section {
    padding: 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border-dark);
    border-radius: var(--radius-lg);
}

.ox-contact-panel__title {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent-bright);
    margin: 0 0 22px;
}

.ox-contact-panel__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ox-contact-panel__links li + li {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--color-border-dark);
}

.ox-contact-panel__links a {
    display: block;
    color: var(--color-text-on-dark);
    line-height: 1.45;
    transition: color 0.2s var(--ease-out);
}

.ox-contact-panel__link-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
}

.ox-contact-panel__link-label svg {
    flex-shrink: 0;
    opacity: 0;
    transform: translate(-4px, 2px);
    transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out);
    color: var(--color-accent-bright);
}

.ox-contact-panel__links a:hover .ox-contact-panel__link-label {
    color: var(--color-accent-bright);
}

.ox-contact-panel__links a:hover .ox-contact-panel__link-label svg {
    opacity: 1;
    transform: translate(0, 2px);
}

.ox-contact-panel__links a > span:last-child {
    display: block;
    margin-top: 6px;
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--color-text-on-dark-muted);
}

.ox-contact-panel__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ox-contact-panel__tags li {
    padding: 8px 14px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 192, 51, 0.22);
    border-radius: var(--radius-full);
    transition: border-color 0.2s var(--ease-out), background-color 0.2s var(--ease-out), color 0.2s var(--ease-out);
}

.ox-contact-panel__tags li:hover {
    color: #fff;
    background: rgba(255, 192, 51, 0.1);
    border-color: rgba(255, 192, 51, 0.45);
}

.ox-contact-panel__cases {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ox-contact-panel__cases li {
    padding-left: 14px;
    border-left: 2px solid rgba(255, 192, 51, 0.35);
}

.ox-contact-panel__cases li + li {
    margin-top: 20px;
    padding-top: 0;
}

.ox-contact-panel__cases strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.ox-contact-panel__cases span {
    display: block;
    font-size: 0.8125rem;
    line-height: 1.65;
    color: var(--color-text-on-dark-muted);
}

.ox-contact-panel__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border-dark);
}

.ox-contact-panel__company p {
    margin: 0 0 8px;
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--color-text-on-dark-muted);
}

.ox-contact-panel__company-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-accent-bright) !important;
    margin-bottom: 10px !important;
}

.ox-contact-panel__company a {
    color: #fff;
    transition: color 0.2s var(--ease-out);
}

.ox-contact-panel__company a:hover {
    color: var(--color-accent-bright);
}

.ox-contact-panel__meta {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    max-width: 280px;
    text-align: right;
    line-height: 1.6;
}

/* Legacy contact aliases */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
}

.contact-info-card {
    padding: 32px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.contact-info-card h3 {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-subtle);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 1.0625rem;
    color: var(--color-text);
}

.contact-info-card a:hover {
    color: var(--color-accent);
}

.contact-form-wrap {
    padding: 48px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* 404 */
.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--header-h);
}

.error-code {
    font-family: var(--font-display);
    font-size: clamp(6rem, 20vw, 12rem);
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(15, 23, 42, 0.12);
}

/* Footer */
.site-footer {
    background: var(--color-bg-darker);
    color: var(--color-text-on-dark);
    border-top: 1px solid var(--color-border-dark);
}

.footer-cta {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--color-border-dark);
    background:
        radial-gradient(ellipse 70% 120% at 100% 0%, rgba(249, 178, 51, 0.12), transparent 55%),
        linear-gradient(180deg, #111111 0%, var(--color-bg-darker) 100%);
}

.footer-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-block: 56px;
}

.footer-cta__copy {
    max-width: 560px;
}

.footer-cta__copy .text-label {
    margin-bottom: 12px;
}

.footer-cta__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 12px;
}

.footer-cta__desc {
    font-size: 1rem;
    color: var(--color-text-on-dark-muted);
    line-height: 1.6;
    max-width: 480px;
}

.footer-cta__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    flex-shrink: 0;
    min-width: 0;
}

.footer-cta__actions .btn {
    width: auto;
    align-self: flex-start;
}

.footer-cta__contact {
    font-size: 0.9375rem;
    color: var(--color-text-on-dark-muted);
    transition: color 0.2s var(--ease-out);
}

.footer-cta__contact:hover {
    color: var(--color-accent-bright);
}

/* Inner pages with dark cinematic heroes — visible nav on dark background */
body.is-about .site-header--light:not(.is-scrolled),
body.is-industries .site-header--light:not(.is-scrolled) {
    background: linear-gradient(180deg, rgba(7, 7, 13, 0.82) 0%, rgba(7, 7, 13, 0.42) 70%, transparent 100%);
    backdrop-filter: blur(10px);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

body.is-about .site-header--light:not(.is-scrolled) .nav-link,
body.is-industries .site-header--light:not(.is-scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.78);
}

body.is-about .site-header--light:not(.is-scrolled) .nav-link:hover,
body.is-about .site-header--light:not(.is-scrolled) .nav-link.is-active,
body.is-industries .site-header--light:not(.is-scrolled) .nav-link:hover,
body.is-industries .site-header--light:not(.is-scrolled) .nav-link.is-active {
    color: #fff;
}

body.is-about .site-header--light:not(.is-scrolled) .nav-link.is-active::after,
body.is-industries .site-header--light:not(.is-scrolled) .nav-link.is-active::after {
    background: var(--color-accent-bright);
}

body.is-about .site-header--light:not(.is-scrolled) .nav-toggle span,
body.is-industries .site-header--light:not(.is-scrolled) .nav-toggle span {
    background: #fff;
}

body.is-about .site-header--light.is-scrolled,
body.is-industries .site-header--light.is-scrolled {
    background: rgba(7, 7, 13, 0.96);
    backdrop-filter: blur(18px);
    border-bottom-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
}

body.is-about .site-header--light.is-scrolled .nav-link,
body.is-industries .site-header--light.is-scrolled .nav-link {
    color: rgba(255, 255, 255, 0.78);
}

body.is-about .site-header--light.is-scrolled .nav-link:hover,
body.is-about .site-header--light.is-scrolled .nav-link.is-active,
body.is-industries .site-header--light.is-scrolled .nav-link:hover,
body.is-industries .site-header--light.is-scrolled .nav-link.is-active {
    color: #fff;
}

body.is-about .site-header--light.is-scrolled .nav-toggle span,
body.is-industries .site-header--light.is-scrolled .nav-toggle span {
    background: #fff;
}

body.is-about .site-header--light .nav-mega,
body.is-industries .site-header--light .nav-mega {
    background: rgba(12, 12, 18, 0.98);
    border-color: rgba(255, 255, 255, 0.1);
}

body.is-about .site-header--light .nav-mega__title,
body.is-about .site-header--light .nav-mega__link,
body.is-industries .site-header--light .nav-mega__title,
body.is-industries .site-header--light .nav-mega__link {
    color: rgba(255, 255, 255, 0.88);
}

body.is-about .site-header--light .nav-mega__link:hover,
body.is-industries .site-header--light .nav-mega__link:hover {
    color: var(--neon-cyan);
}

.site-header:not(.is-scrolled):not(.site-header--home):not(.site-header--on-dark) {
    background: rgba(10, 10, 10, 0.88);
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(260px, 1.25fr) minmax(220px, 1.15fr) minmax(180px, 0.95fr) minmax(220px, 1fr);
    gap: 32px 40px;
    align-items: start;
    padding-block: 48px 40px;
}

.footer-brand {
    padding-right: 8px;
}

.footer-logo {
    display: inline-block;
    line-height: 0;
    margin-bottom: 16px;
}

.footer-logo__img {
    display: block;
    width: auto;
    height: 48px;
    max-width: 190px;
    object-fit: contain;
    object-position: left center;
}

.footer-tagline {
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent-bright);
    margin-bottom: 10px;
}

.footer-desc {
    font-size: 0.875rem;
    color: var(--color-text-on-dark-muted);
    line-height: 1.65;
    max-width: 300px;
    margin-bottom: 20px;
}

.footer-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    max-width: 280px;
}

.footer-stats li {
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border-dark);
    border-radius: var(--radius-md);
}

.footer-stats strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.footer-stats span {
    display: block;
    margin-top: 2px;
    font-size: 0.625rem;
    line-height: 1.35;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-social a {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-dark);
    color: var(--color-text-on-dark-muted);
    background: rgba(255, 255, 255, 0.04);
    transition: color 0.2s var(--ease-out), border-color 0.2s var(--ease-out), background-color 0.2s var(--ease-out);
}

.footer-social a:hover {
    color: var(--color-accent-bright);
    border-color: rgba(249, 178, 51, 0.4);
    background: rgba(249, 178, 51, 0.08);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-col {
    min-width: 0;
}

.footer-col--stack {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.footer-stack .footer-heading {
    margin-bottom: 14px;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent-bright);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links--columns {
    columns: 2;
    column-gap: 20px;
}

.footer-links--columns li {
    break-inside: avoid;
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--color-text-on-dark-muted);
    transition: color 0.2s var(--ease-out);
}

.footer-links a:hover {
    color: var(--color-accent-bright);
}

.footer-links__more {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent) !important;
}

.footer-links__more:hover {
    color: var(--color-accent-bright) !important;
}

.footer-contact-card {
    margin-top: 20px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border-dark);
    border-left: 2px solid rgba(255, 192, 51, 0.45);
    border-radius: var(--radius-md);
}

.footer-contact-card__label {
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 10px;
}

.footer-contact-card__link {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 6px;
    transition: color 0.2s var(--ease-out);
}

.footer-contact-card__link:hover {
    color: var(--color-accent-bright);
}

.footer-address {
    margin: 12px 0 0;
    font-style: normal;
    font-size: 0.8125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 24px;
    padding-block: 24px 32px;
    border-top: 1px solid var(--color-border-dark);
}

.footer-copy,
.footer-meta {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.footer-meta {
    text-align: right;
}

/* Legacy footer aliases */
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .footer-text,
.footer-text {
    font-size: 0.9375rem;
    color: var(--color-text-on-dark-muted);
    margin-bottom: 16px;
    line-height: 1.6;
    max-width: 320px;
}

.footer-email,
.footer-phone {
    display: block;
    font-size: 0.9375rem;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.footer-email:hover,
.footer-phone:hover {
    color: var(--color-accent);
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* Responsive */
@media (max-width: 1024px) {
    :root {
        --space-section: 80px;
    }

    .hero-grid,
    .about-split,
    .service-detail-grid,
    .contact-grid,
    .ox-contact-main__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ox-contact-aside {
        position: static;
    }

    .ox-contact-panel__brand {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ox-contact-panel__grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-visual {
        height: 400px;
        order: -1;
    }

    .hero-float-card {
        left: 16px;
        bottom: -16px;
    }

    .services-showcase .service-card,
    .services-showcase .service-card.featured {
        grid-column: span 12;
    }

    .stats-band {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid,
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 32px 28px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-links--columns {
        columns: 2;
    }

    .footer-cta__inner {
        flex-direction: column;
        align-items: flex-start;
        padding-block: 48px;
    }

    .service-detail-image {
        position: static;
    }
}

@media (max-width: 1024px) {
    .hero-float-ui {
        opacity: 0.55;
    }
}

@media (max-width: 768px) {

    .nav-desktop,
    .header-contact {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .hero-float-ui {
        opacity: 0.2;
    }

    .hero-ui-card--1 { top: 12%; right: 2%; }
    .hero-ui-card--2 { top: 38%; right: 14%; }
    .hero-ui-card--3 { bottom: 18%; right: 2%; }

    .hero-tech-orbit {
        display: none;
    }

    .hero-bottom-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding-bottom: 32px;
    }

    .hero-overlay {
        padding-bottom: 140px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .values-grid,
    .team-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .capability-list {
        grid-template-columns: 1fr;
    }

    .footer-grid,
    .footer-main {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-brand {
        padding-right: 0;
    }

    .footer-stats {
        max-width: none;
    }

    .footer-links--columns {
        columns: 1;
    }

    .footer-col--stack {
        gap: 24px;
    }

    .footer-cta__actions {
        width: 100%;
    }

    .footer-cta__actions .btn {
        width: 100%;
        max-width: 320px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-meta {
        text-align: left;
    }

    .cta-block-inner {
        padding: 48px 24px;
    }

    .contact-form-wrap {
        padding: 32px 24px;
    }

    .ox-contact-form {
        padding: 28px 20px;
    }

    .ox-contact-panel {
        padding-block: 56px;
    }

    .ox-contact-panel__grid {
        grid-template-columns: 1fr;
    }

    .ox-contact-panel__section {
        padding: 22px 20px;
    }

    .ox-contact-panel__meta {
        text-align: left;
        max-width: none;
    }

    .ox-contact-aside__stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Jornaya landing page */
.jornaya-hero {
    border-bottom: 1px solid var(--color-border);
    background:
        radial-gradient(900px 420px at 100% 0%, rgba(249, 178, 51, 0.1), transparent 60%),
        var(--color-surface);
}

.jornaya-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.jornaya-hero-title {
    max-width: 720px;
    margin-top: 8px;
}

.jornaya-hero-desc {
    margin-top: 20px;
    max-width: 600px;
}

.jornaya-feature-list {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.jornaya-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

.jornaya-feature-list svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    color: var(--color-accent);
}

.jornaya-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
}

.jornaya-hero-visual {
    position: relative;
    min-height: 380px;
}

.jornaya-visual-glow {
    position: absolute;
    inset: 10% 5%;
    background: radial-gradient(circle, rgba(249, 178, 51, 0.18), transparent 70%);
    filter: blur(40px);
    z-index: 0;
}

.jornaya-visual-card {
    position: relative;
    z-index: 1;
    padding: 28px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.jornaya-visual-card--primary {
    max-width: 320px;
}

.jornaya-visual-card--secondary {
    position: absolute;
    right: 0;
    bottom: 24px;
    max-width: 280px;
    background: #0a0a0a;
    color: #f8fafc;
    border-color: rgba(255, 255, 255, 0.08);
}

.jornaya-visual-badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #166534;
    background: rgba(34, 197, 94, 0.12);
    border-radius: var(--radius-full);
}

.jornaya-visual-code {
    display: block;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.jornaya-visual-card--primary p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.jornaya-visual-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent-bright);
    margin-bottom: 16px;
}

.jornaya-visual-flow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    font-weight: 600;
}

.jornaya-visual-flow svg {
    width: 24px;
    height: 8px;
    color: var(--color-accent-bright);
}

.jornaya-consult {
    padding-block: 48px;
}

.jornaya-consult-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 40px 48px;
    background: linear-gradient(135deg, #0a0a0a 0%, #141414 100%);
    color: #f8fafc;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.jornaya-consult-band .text-label {
    color: var(--color-accent-bright);
}

.jornaya-consult-band .text-headline {
    color: #ffffff;
    margin-top: 8px;
}

.jornaya-consult-band .text-subhead {
    color: rgba(248, 250, 252, 0.72);
}

.jornaya-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.jornaya-plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 36px 32px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.jornaya-plan-card:hover {
    border-color: rgba(249, 178, 51, 0.4);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.jornaya-plan-card.is-featured {
    border-color: rgba(249, 178, 51, 0.55);
    box-shadow: var(--shadow-lg);
}

.jornaya-plan-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 12px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0a0a0a;
    background: var(--color-accent-bright);
    border-radius: var(--radius-full);
}

.jornaya-plan-name {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.jornaya-plan-audience {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.jornaya-plan-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--color-border);
}

.jornaya-plan-amount {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1;
}

.jornaya-plan-period {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

.jornaya-plan-custom {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.jornaya-plan-features {
    display: grid;
    gap: 12px;
    margin-bottom: 32px;
    flex: 1;
}

.jornaya-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.jornaya-plan-features svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 3px;
    color: var(--color-accent);
}

.jornaya-plan-cta {
    width: 100%;
}

.jornaya-auth-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.jornaya-auth-card {
    padding: 28px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.jornaya-auth-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
}

.jornaya-auth-status svg {
    width: 20px;
    height: 20px;
}

.jornaya-auth-status--success {
    color: #15803d;
}

.jornaya-auth-status--warning {
    color: #b45309;
}

.jornaya-auth-status--error {
    color: #b91c1c;
}

.jornaya-auth-summary {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin-bottom: 16px;
    line-height: 1.55;
}

.jornaya-code-block {
    margin: 0;
    padding: 16px;
    overflow-x: auto;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.8125rem;
    line-height: 1.6;
    color: #e2e8f0;
    background: #0a0a0a;
    border-radius: var(--radius-md);
}

.jornaya-checker {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    padding: 48px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.jornaya-checker-form .btn {
    width: 100%;
}

.jornaya-checker-result {
    margin-top: 20px;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
}

.jornaya-checker-result strong {
    display: block;
    margin-bottom: 6px;
    font-family: var(--font-display);
}

.jornaya-checker-result p {
    margin: 0;
    line-height: 1.55;
}

.jornaya-checker-result.is-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #166534;
}

.jornaya-checker-result.is-error {
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.2);
    color: #b91c1c;
}

.jornaya-faq {
    max-width: 820px;
    margin-inline: auto;
    display: grid;
    gap: 12px;
}

.jornaya-faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-surface);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.jornaya-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

.jornaya-faq-item summary::-webkit-details-marker {
    display: none;
}

.jornaya-faq-item summary::after {
    content: '+';
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-accent);
    background: var(--color-accent-dim);
    border-radius: var(--radius-full);
    transition: transform 0.2s var(--ease-out);
}

.jornaya-faq-item[open] summary::after {
    content: '−';
}

.jornaya-faq-answer {
    padding: 0 24px 20px;
}

.jornaya-faq-answer p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}

@media (max-width: 1024px) {
    .jornaya-hero-grid,
    .jornaya-checker,
    .jornaya-pricing-grid,
    .jornaya-auth-grid {
        grid-template-columns: 1fr;
    }

    .jornaya-hero-visual {
        min-height: 300px;
    }

    .jornaya-visual-card--secondary {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 16px;
        margin-left: auto;
    }

    .jornaya-consult-band {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 28px;
    }
}

/* ─── Clay-inspired layout (Orixes brand) ─── */

.section {
    padding-block: var(--space-section);
}

/* ========== Homepage — premium black / white / yellow ========== */

.ox-section {
    padding-block: var(--space-section);
}

.ox-section--dark {
    background: var(--color-bg-dark);
    color: var(--color-text-on-dark);
}

.ox-section--muted {
    background: var(--color-surface-soft);
}

.ox-section--accent {
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 192, 51, 0.08), transparent 55%),
        var(--color-surface-accent);
}

.ox-section__head {
    max-width: 720px;
    margin-bottom: 56px;
}

.ox-section__eyebrow {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 14px;
}

.ox-section--dark .ox-section__eyebrow {
    color: var(--color-accent-bright);
}

.ox-section__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.ox-section--dark .ox-section__title {
    color: #fff;
}

.ox-section__sub {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    max-width: 640px;
}

.ox-section--dark .ox-section__sub {
    color: var(--color-text-on-dark-muted);
}

/* Hero — full-viewport cinematic */
.ox-hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 48px) 0 72px;
    background: var(--color-bg-dark);
    color: var(--color-text);
    overflow: hidden;
    isolation: isolate;
}

.ox-hero__ambient {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background: var(--color-bg-dark);
}

.ox-hero__bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    max-width: none;
    object-fit: cover;
    object-position: center center;
    opacity: 0;
    filter: blur(2px) saturate(0.9) brightness(0.88);
    transform: translate(-50%, -50%) scale(1.06);
    transition: opacity 1.2s ease-in-out;
    will-change: opacity, transform;
    pointer-events: none;
}

.ox-hero__bg-video--active {
    z-index: 1;
    opacity: 1;
}

.ox-hero__bg-video--twin {
    z-index: 0;
}

.ox-hero__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    mix-blend-mode: screen;
}

.ox-hero__mesh {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(10, 10, 10, 0.72) 0%, rgba(10, 10, 10, 0.42) 28%, rgba(10, 10, 10, 0.12) 52%, rgba(10, 10, 10, 0.28) 100%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.35) 0%, transparent 22%, transparent 78%, rgba(10, 10, 10, 0.45) 100%);
    pointer-events: none;
}

.ox-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    animation: ox-hero-orb-drift 22s ease-in-out infinite;
}

.ox-hero__orb--1 {
    width: 420px;
    height: 420px;
    top: -100px;
    right: 8%;
    background: rgba(249, 178, 51, 0.14);
}

.ox-hero__orb--2 {
    width: 300px;
    height: 300px;
    bottom: 6%;
    right: 32%;
    background: rgba(255, 192, 51, 0.10);
    animation-delay: -8s;
}

@keyframes ox-hero-orb-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-24px, 16px) scale(1.06); }
}

.ox-hero__layout {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    max-width: 1240px;
    margin-inline: auto;
}

.ox-hero__copy {
    min-width: 0;
    max-width: 40rem;
    padding: clamp(24px, 3vw, 36px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
    color: var(--color-text-on-dark);
}

.ox-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    margin-bottom: 20px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 192, 51, 0.45);
    background: rgba(255, 192, 51, 0.12);
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffc033;
}

.ox-hero__badge::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 10px rgba(255, 192, 51, 0.65);
}

.ox-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4.8vw, 3.75rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.035em;
    margin-bottom: 22px;
    max-width: 11em;
    text-wrap: balance;
    color: #ffffff;
}

.ox-hero__title-accent {
    display: block;
    margin-top: 0.1em;
    background: linear-gradient(135deg, #ffc033 0%, #f9b233 55%, #fbbf24 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ox-hero__sub {
    font-size: clamp(1rem, 1.35vw, 1.125rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
    max-width: 32rem;
    margin-bottom: 30px;
}

.ox-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.ox-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 32px;
    padding-top: 4px;
}

.ox-hero__stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffc033;
    line-height: 1.1;
}

.ox-hero__stat span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ox-hero__visual {
    position: relative;
    min-width: 0;
}

.ox-hero__float {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 12px 32px rgba(10, 10, 10, 0.08), 0 0 0 1px rgba(255, 192, 51, 0.15);
    transition: transform 0.4s var(--ease-out);
    will-change: transform;
}

.ox-hero__float--1 {
    top: 6%;
    left: -4%;
    animation: ox-float-drift 6s ease-in-out infinite;
}

.ox-hero__float--2 {
    top: 38%;
    right: -6%;
    animation: ox-float-drift 7.5s ease-in-out infinite 1s;
}

.ox-hero__float--3 {
    bottom: 10%;
    left: 8%;
    animation: ox-float-drift 5.5s ease-in-out infinite 0.5s;
}

.ox-hero__float-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    margin-bottom: 4px;
    background: linear-gradient(135deg, rgba(255, 192, 51, 0.25), rgba(255, 192, 51, 0.08));
    position: relative;
}

.ox-hero__float-icon::after {
    content: '';
    position: absolute;
    inset: 8px;
    border: 2px solid var(--color-accent-bright);
    border-radius: 4px;
}

.ox-hero__float-icon--chart::after {
    border-radius: 2px;
    border-bottom-width: 6px;
}

.ox-hero__float-icon--crm::after {
    border-radius: 50%;
}

.ox-hero__float-label {
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-subtle);
}

.ox-hero__float-value {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-text);
}

@keyframes ox-float-drift {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.ox-hero__scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.72);
    transition: color 0.2s;
}

.ox-hero__scroll:hover {
    color: #ffffff;
}

.ox-hero__scroll-line {
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--color-accent-bright), transparent);
    animation: ox-scroll-pulse 2s ease-in-out infinite;
}

.ox-hero__scroll-text {
    font-family: var(--font-display);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

@keyframes ox-scroll-pulse {
    0%, 100% { opacity: 0.4; transform: scaleY(0.8); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

.ox-hero__frame {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(10, 10, 10, 0.08);
    background: #fff;
    box-shadow:
        0 24px 56px rgba(15, 15, 15, 0.1),
        0 0 0 1px rgba(255, 192, 51, 0.12);
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
    transform: perspective(1400px) rotateY(-4deg) rotateX(1.5deg);
    transform-style: preserve-3d;
}

.ox-hero__frame:hover {
    transform: perspective(1400px) rotateY(0deg) rotateX(0deg) translateY(-4px);
    box-shadow:
        0 32px 64px rgba(15, 15, 15, 0.12),
        0 0 0 1px rgba(255, 192, 51, 0.22);
}

.ox-hero__frame img {
    width: 100%;
    height: auto;
    display: block;
}

.ox-hero__frame-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: #f7f7f6;
    border-bottom: 1px solid rgba(10, 10, 10, 0.06);
}

.ox-hero__frame-dots {
    display: inline-flex;
    gap: 6px;
    flex-shrink: 0;
}

.ox-hero__frame-dots i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.14);
    font-style: normal;
}

.ox-hero__frame-dots i:first-child {
    background: rgba(255, 105, 97, 0.55);
}

.ox-hero__frame-dots i:nth-child(2) {
    background: rgba(255, 192, 51, 0.65);
}

.ox-hero__frame-dots i:last-child {
    background: rgba(52, 199, 89, 0.5);
}

.ox-hero__frame-url {
    flex: 1;
    font-family: var(--font-body);
    font-size: 0.6875rem;
    color: var(--color-text-subtle);
    background: #fff;
    border: 1px solid rgba(10, 10, 10, 0.06);
    border-radius: var(--radius-full);
    padding: 4px 12px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ox-hero__frame-live {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #15803d;
}

.ox-hero__frame-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent-bright);
    box-shadow: 0 0 0 0 rgba(255, 192, 51, 0.6);
    animation: ox-live-pulse 2s ease-out infinite;
}

@keyframes ox-live-pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 192, 51, 0.55); }
    70% { box-shadow: 0 0 0 7px rgba(255, 192, 51, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 192, 51, 0); }
}

/* Trust strip — revolving marquee */
.ox-trust {
    background: #fff;
    border-block: 1px solid var(--color-border);
    padding-block: 18px 16px;
    overflow: hidden;
}

.ox-trust__label {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--color-text-subtle);
    text-align: center;
    margin-bottom: 12px;
    padding-inline: 24px;
}

.ox-trust__marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.ox-trust__track {
    display: flex;
    width: max-content;
    animation: ox-trust-marquee 45s linear infinite;
}

.ox-trust__track:hover {
    animation-play-state: paused;
}

.ox-trust__list {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
    flex-shrink: 0;
    list-style: none;
    margin: 0;
}

.ox-trust__item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text);
    white-space: nowrap;
}

.ox-trust__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    flex-shrink: 0;
}

@keyframes ox-trust-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .ox-trust__track {
        animation: none;
    }

    .ox-hero__float {
        animation: none;
    }

    .ox-hero__scroll-line {
        animation: none;
    }

    .ox-about-hero__orb {
        animation: none;
    }
}

/* Capabilities — editorial showcase */
.ox-cap-editorial {
    position: relative;
    background: #0a0a0a;
    overflow: hidden;
}

.ox-cap-editorial__decor {
    position: absolute;
    inset: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.ox-cap-editorial__bg-art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0.28;
}

.ox-cap-editorial__gridlines {
    position: absolute;
    inset: 0;
    opacity: 0.45;
    background-image:
        linear-gradient(rgba(255, 192, 51, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 192, 51, 0.07) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 100% 80% at 50% 45%, #000 30%, transparent 85%);
}

.ox-cap-editorial__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.ox-cap-editorial__orb--1 {
    width: min(48vw, 520px);
    height: min(48vw, 520px);
    top: -12%;
    right: -8%;
    background: rgba(255, 192, 51, 0.16);
}

.ox-cap-editorial__orb--2 {
    width: min(36vw, 400px);
    height: min(36vw, 400px);
    bottom: 8%;
    left: -6%;
    background: rgba(249, 178, 51, 0.12);
}

.ox-cap-editorial__orb--3 {
    width: min(28vw, 280px);
    height: min(28vw, 280px);
    top: 42%;
    left: 38%;
    background: rgba(255, 192, 51, 0.08);
}

.ox-cap-editorial__stage {
    position: relative;
    z-index: 1;
    min-height: auto;
    overflow: hidden;
}

.ox-cap-editorial__media {
    position: absolute;
    inset: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    z-index: 0;
    overflow: hidden;
}

.ox-cap-editorial__media-slide {
    position: absolute;
    inset: -6%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.75s var(--ease-out), visibility 0.75s;
}

.ox-cap-editorial__media-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.ox-cap-editorial__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: blur(18px) saturate(0.85) brightness(0.45);
    transform: scale(1.08);
}

.ox-cap-editorial__scrim {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 60% at 50% 30%, rgba(255, 192, 51, 0.1), transparent 62%),
        radial-gradient(ellipse 55% 45% at 85% 75%, rgba(249, 178, 51, 0.08), transparent 58%),
        radial-gradient(ellipse 50% 40% at 12% 80%, rgba(255, 192, 51, 0.06), transparent 55%),
        linear-gradient(180deg, rgba(5, 5, 5, 0.5) 0%, rgba(5, 5, 5, 0.78) 50%, rgba(5, 5, 5, 0.94) 100%);
    pointer-events: none;
}

.ox-cap-editorial__pause {
    position: absolute;
    top: clamp(20px, 3vw, 32px);
    right: clamp(20px, 3vw, 32px);
    z-index: 4;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.45);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background 0.2s, border-color 0.2s;
}

.ox-cap-editorial__pause:hover {
    background: rgba(10, 10, 10, 0.65);
    border-color: rgba(255, 192, 51, 0.5);
}

.ox-cap-editorial__pause-icon {
    width: 18px;
    height: 18px;
}

.ox-cap-editorial__pause-icon--play {
    display: none;
}

.ox-cap-editorial__pause.is-paused .ox-cap-editorial__pause-icon--pause {
    display: none;
}

.ox-cap-editorial__pause.is-paused .ox-cap-editorial__pause-icon--play {
    display: block;
}

.ox-cap-editorial__shell {
    position: relative;
    z-index: 2;
    padding: clamp(72px, 9vw, 112px) 0 clamp(72px, 9vw, 104px);
}

/* Capabilities — 3-up square card slider */
.ox-cap-slider {
    position: relative;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 192, 51, 0.2);
    background: rgba(12, 12, 12, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
}

.ox-cap-slider__viewport {
    overflow: hidden;
    padding: clamp(20px, 2.5vw, 28px);
}

.ox-cap-slider__track {
    display: flex;
    gap: clamp(16px, 2vw, 22px);
    transition: transform 0.45s var(--ease-out);
    will-change: transform;
}

.ox-cap-card {
    flex: 0 0 calc((100% - (2 * clamp(16px, 2vw, 22px))) / 3);
    min-width: 0;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(18, 18, 18, 0.95);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    transition: border-color 0.25s, box-shadow 0.25s;
}

.ox-cap-card.is-centered {
    border-color: rgba(255, 192, 51, 0.45);
    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 192, 51, 0.1) inset;
}

.ox-cap-card__media {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #111;
}

.ox-cap-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.ox-cap-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0;
    padding: clamp(18px, 2.2vw, 24px);
    color: #fff;
}

.ox-cap-card__eyebrow {
    margin: 0 0 8px;
    font-family: var(--font-display);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-accent-bright);
}

.ox-cap-card__title {
    margin: 0 0 6px;
    font-family: var(--font-display);
    font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #fff;
}

.ox-cap-card__tagline {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--color-accent-bright);
}

.ox-cap-card__text {
    margin: 0 0 14px;
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
}

.ox-cap-card__highlights {
    margin: 0 0 14px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ox-cap-card__highlights li {
    position: relative;
    padding-left: 18px;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.78);
}

.ox-cap-card__highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
}

.ox-cap-card__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 0 0 16px;
    padding: 12px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ox-cap-card__stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: center;
}

.ox-cap-card__stat-value {
    font-family: var(--font-display);
    font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--color-accent-bright);
    line-height: 1.2;
}

.ox-cap-card__stat-label {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.3;
}

.ox-cap-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 4px;
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 600;
    transition: gap 0.2s var(--ease-out), color 0.2s;
}

.ox-cap-card__cta:hover {
    gap: 16px;
    color: var(--color-accent-bright);
}

.ox-cap-card__cta-icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--color-accent);
    color: #0a0a0a;
    flex-shrink: 0;
}

.ox-cap-card__cta-icon svg {
    width: 14px;
    height: 14px;
}

.ox-cap-slider__progress {
    height: 3px;
    margin: 0 clamp(20px, 2.5vw, 28px);
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.ox-cap-slider__progress-bar {
    display: block;
    height: 100%;
    width: 0;
    background: var(--color-accent);
    border-radius: inherit;
}

.ox-cap-slider__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: clamp(16px, 2vw, 22px) clamp(20px, 2.5vw, 28px) clamp(20px, 2.5vw, 28px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ox-cap-slider__arrow {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.ox-cap-slider__arrow:hover {
    background: rgba(255, 192, 51, 0.12);
    border-color: rgba(255, 192, 51, 0.45);
    color: var(--color-accent-bright);
}

.ox-cap-slider__arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.ox-cap-slider__arrow svg {
    width: 20px;
    height: 20px;
}

.ox-cap-slider__dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ox-cap-slider__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.ox-cap-slider__dot.is-active {
    background: var(--color-accent);
    transform: scale(1.25);
}

@media (max-width: 1024px) {
    .ox-cap-card {
        flex: 0 0 calc((100% - clamp(16px, 2vw, 22px)) / 2);
    }
}

@media (max-width: 640px) {
    .ox-cap-card {
        flex: 0 0 100%;
    }

    .ox-cap-card__stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (prefers-reduced-motion: reduce) {
    .ox-cap-slider__track {
        transition: none;
    }
}

.ox-cap-editorial .container {
    width: min(100% - clamp(32px, 5vw, 64px), 1360px);
}

.ox-cap-editorial__section-head {
    max-width: 720px;
    margin-bottom: clamp(36px, 5vw, 56px);
}

.ox-cap-editorial__section-eyebrow {
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent-bright);
}

.ox-cap-editorial__section-title {
    margin: 0 0 16px;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: #fff;
    text-transform: none;
}

.ox-cap-editorial__section-lead {
    margin: 0;
    max-width: 58ch;
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.6vw, 1.125rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
}

.ox-cap-editorial__layout {
    position: relative;
    width: 100%;
    min-height: clamp(480px, 44vw, 580px);
}

.ox-cap-editorial__content {
    position: absolute;
    inset: 0;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(32px, 4.5vw, 56px);
    align-items: stretch;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.55s var(--ease-out), visibility 0.55s;
}

.ox-cap-editorial__content.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
}

.ox-cap-editorial__preview {
    position: relative;
    width: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 192, 51, 0.24);
    background: #0a0a0a;
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    min-height: clamp(380px, 40vw, 540px);
}

.ox-cap-editorial__preview::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.06), transparent 45%, rgba(255, 192, 51, 0.05));
    pointer-events: none;
}

.ox-cap-editorial__preview img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: clamp(380px, 40vw, 540px);
    object-fit: cover;
    object-position: center center;
}

.ox-cap-editorial__panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: none;
    margin-left: 0;
    padding: clamp(32px, 4vw, 48px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 192, 51, 0.24);
    background: rgba(10, 10, 10, 0.88);
    color: #fff;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 28px 72px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.ox-cap-editorial__eyebrow {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-accent-bright);
}

.ox-cap-editorial__panel-title {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #fff;
}

.ox-cap-editorial__panel-tagline {
    margin: 0 0 16px;
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-weight: 600;
    line-height: 1.4;
    color: var(--color-accent-bright);
}

.ox-cap-editorial__panel-text {
    margin: 0 0 24px;
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.5vw, 1.0625rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

.ox-cap-editorial__cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 600;
    transition: gap 0.2s var(--ease-out), color 0.2s;
}

.ox-cap-editorial__cta:hover {
    gap: 18px;
    color: var(--color-accent-bright);
}

.ox-cap-editorial__cta-icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--color-accent);
    color: #0a0a0a;
}

.ox-cap-editorial__cta-icon svg {
    width: 16px;
    height: 16px;
}

.ox-cap-editorial__anim {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(5px);
}

.ox-cap-editorial__content.is-active.is-animating .ox-cap-editorial__preview.ox-cap-editorial__anim {
    animation: ox-cap-text-in 0.5s var(--ease-out) 0.04s forwards;
}

.ox-cap-editorial__content.is-active.is-animating .ox-cap-editorial__panel .ox-cap-editorial__anim:nth-child(1) {
    animation: ox-cap-text-in 0.5s var(--ease-out) 0.12s forwards;
}

.ox-cap-editorial__content.is-active.is-animating .ox-cap-editorial__panel .ox-cap-editorial__anim:nth-child(2) {
    animation: ox-cap-text-in 0.5s var(--ease-out) 0.2s forwards;
}

.ox-cap-editorial__content.is-active.is-animating .ox-cap-editorial__panel .ox-cap-editorial__anim:nth-child(3) {
    animation: ox-cap-text-in 0.5s var(--ease-out) 0.28s forwards;
}

.ox-cap-editorial__content.is-active.is-animating .ox-cap-editorial__panel .ox-cap-editorial__anim:nth-child(4) {
    animation: ox-cap-text-in 0.5s var(--ease-out) 0.36s forwards;
}

.ox-cap-editorial__content.is-active.is-animating .ox-cap-editorial__panel .ox-cap-editorial__anim:nth-child(5) {
    animation: ox-cap-text-in 0.5s var(--ease-out) 0.44s forwards;
}

.ox-cap-editorial__content.is-active:not(.is-animating) .ox-cap-editorial__anim {
    opacity: 1;
    transform: none;
    filter: none;
}

@keyframes ox-cap-text-in {
    from {
        opacity: 0;
        transform: translateY(18px);
        filter: blur(5px);
    }

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

.ox-cap-editorial__cards-wrap {
    position: relative;
    z-index: 2;
    padding: clamp(32px, 4vw, 48px) 0 clamp(72px, 9vw, 104px);
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.35) 0%, #0a0a0a 14%),
        #0a0a0a;
    border-top: 1px solid rgba(255, 192, 51, 0.14);
}

.ox-cap-editorial__cards-label {
    margin: 0 0 clamp(20px, 2.5vw, 28px);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 192, 51, 0.85);
}

.ox-cap-editorial__cards {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 22px);
    align-items: stretch;
    width: 100%;
}

.ox-cap-editorial__card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    min-height: clamp(420px, 32vw, 500px);
    padding: clamp(28px, 3vw, 36px) clamp(22px, 2.4vw, 28px) 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    background: rgba(18, 18, 18, 0.92);
    color: rgba(255, 255, 255, 0.92);
    text-align: left;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s, border-color 0.25s, background 0.25s;
}

.ox-cap-editorial__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
    border-color: rgba(255, 192, 51, 0.38);
    background: rgba(22, 22, 22, 0.96);
}

.ox-cap-editorial__card.is-active {
    border-color: rgba(255, 192, 51, 0.55);
    background: linear-gradient(165deg, rgba(28, 24, 12, 0.98) 0%, rgba(14, 14, 14, 0.98) 55%);
    color: #fff;
    transform: translateY(-6px);
    box-shadow:
        0 28px 64px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 192, 51, 0.12) inset;
}

.ox-cap-editorial__card-title {
    font-family: var(--font-display);
    font-size: clamp(1.125rem, 1.5vw, 1.3125rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    padding-right: 4px;
    color: inherit;
}

.ox-cap-editorial__card.is-active .ox-cap-editorial__card-title {
    color: var(--color-accent-bright);
}

.ox-cap-editorial__card-media {
    display: block;
    width: calc(100% + 56px);
    margin: auto -28px 0;
    flex: 1 1 auto;
    min-height: 200px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ox-cap-editorial__card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.ox-cap-editorial__card:focus-visible {
    outline: 2px solid var(--color-accent-bright);
    outline-offset: 3px;
}

@media (max-width: 1200px) {
    .ox-cap-editorial__cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ox-cap-editorial__card {
        min-height: 400px;
    }

    .ox-cap-editorial__layout {
        min-height: clamp(420px, 50vw, 520px);
    }

    .ox-cap-editorial__preview,
    .ox-cap-editorial__preview img {
        min-height: clamp(320px, 42vw, 440px);
    }
}

@media (max-width: 900px) {
    .ox-cap-editorial__layout {
        min-height: auto;
    }

    .ox-cap-editorial__content {
        position: relative;
        inset: auto;
        display: none;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ox-cap-editorial__content.is-active {
        display: grid;
    }

    .ox-cap-editorial__panel {
        max-width: none;
        margin-left: 0;
    }

    .ox-cap-editorial__preview,
    .ox-cap-editorial__preview img {
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    .ox-cap-editorial__shell {
        padding-top: clamp(64px, 12vw, 88px);
    }

    .ox-cap-editorial__section-title {
        font-size: clamp(2rem, 10vw, 2.75rem);
    }

    .ox-cap-editorial__cards {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }

    .ox-cap-editorial__card {
        flex: 0 0 min(88vw, 340px);
        scroll-snap-align: start;
        min-height: 360px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ox-cap-editorial__media-slide,
    .ox-cap-editorial__content {
        transition: opacity 0.2s;
    }

    .ox-cap-editorial__video {
        filter: brightness(0.45) saturate(0.85);
        transform: none;
    }

    .ox-cap-editorial__anim {
        opacity: 1;
        transform: none;
        filter: none;
        animation: none !important;
    }
}


/* Cards */
.ox-card {
    padding: 28px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: #fff;
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s;
}

.ox-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 192, 51, 0.55);
    box-shadow: var(--shadow-glow);
}

.ox-card--dark {
    background: var(--color-surface-dark);
    border-color: var(--color-border-dark);
    color: #fff;
}

.ox-card--dark:hover {
    border-color: rgba(255, 192, 51, 0.45);
}

.ox-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    margin-bottom: 20px;
    background:
        linear-gradient(135deg, rgba(255, 192, 51, 0.2), rgba(255, 192, 51, 0.05)),
        #0a0a0a;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-bright);
    transition: transform 0.25s var(--ease-out);
}

.ox-card__icon:has(.ox-card__icon-svg)::after {
    display: none;
}

.ox-card__icon-svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.ox-card:hover .ox-card__icon {
    transform: translateY(-3px);
}

.ox-card__icon::after {
    content: '';
    position: absolute;
    inset: 12px;
    border: 2px solid var(--color-accent-bright);
    border-radius: 6px;
}

.ox-card__icon--software::after {
    border-radius: 4px;
    inset: 10px 12px;
    border-top-width: 5px;
}

.ox-card__icon--chatbot::after {
    border-radius: 10px 10px 10px 2px;
}

.ox-card__icon--ai::after {
    border-radius: 10px 10px 10px 2px;
}

.ox-card__icon--saas::after {
    border-radius: 4px;
    border-top-width: 6px;
}

.ox-card__icon--dialer::after {
    border-radius: 50%;
}

.ox-card__icon--crm::after {
    border-radius: 4px;
    border-top-width: 6px;
}

.ox-card__icon--automation::after {
    border-radius: 0;
    transform: rotate(45deg);
    inset: 14px;
}

.ox-card__icon--hosting::after {
    border-radius: 4px;
    border-bottom-width: 6px;
}

.ox-card__icon--design::after {
    border-radius: 2px;
    inset: 10px 14px;
}

.ox-card__icon--mobile::after {
    border-radius: 8px;
    inset: 8px 14px;
}

.ox-card__icon--network::after {
    border-radius: 0;
    transform: rotate(45deg);
    inset: 14px;
}

.ox-card__icon--consult::after {
    border-radius: 50% 50% 2px 2px;
}

.ox-card__icon--print::after {
    border-radius: 2px;
    border-top-width: 8px;
}

.ox-card__icon--seo::after {
    border-radius: 50%;
    inset: 10px;
    border-width: 3px;
}

.ox-card__icon--wordpress::after {
    border-radius: 50%;
    border-width: 3px;
}

.ox-card__icon--marketing::after {
    border-radius: 2px 10px 2px 10px;
}

.ox-card__icon--compliance::after {
    border-radius: 4px;
    border-width: 3px;
}

.ox-card__title a {
    color: inherit;
    transition: color 0.2s;
}

.ox-card__title a:hover {
    color: #a16207;
}

.ox-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #a16207;
    transition: gap 0.2s var(--ease-out), color 0.2s;
}

.ox-card__link:hover {
    gap: 10px;
    color: var(--color-text);
}

.ox-section__actions {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.ox-card__title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}

.ox-card--dark .ox-card__title {
    color: #fff;
}

.ox-card__text {
    color: var(--color-text-muted);
    font-size: 0.975rem;
    line-height: 1.65;
}

.ox-card--dark .ox-card__text {
    color: var(--color-text-on-dark-muted);
}

.ox-services__grid,
.ox-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ox-services__grid--featured {
    gap: 24px;
}

.ox-service-card {
    border-radius: 20px;
    border: 1px solid var(--color-border);
    background: #fff;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s, border-color 0.25s;
}

.ox-service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 192, 51, 0.45);
    box-shadow: var(--shadow-md);
}

.ox-service-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    cursor: pointer;
}

.ox-service-card__link:focus-visible {
    outline: 2px solid var(--color-accent-bright);
    outline-offset: 3px;
}

.ox-service-card__media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0a0a0a;
}

.ox-service-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.ox-service-card:hover .ox-service-card__media img {
    transform: scale(1.04);
}

.ox-service-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 24px 22px 26px;
    flex: 1;
}

.ox-service-card__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-text);
}

.ox-service-card__text {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    flex: 1;
}

.ox-service-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #a16207;
    transition: gap 0.2s var(--ease-out), color 0.2s;
}

.ox-service-card:hover .ox-service-card__cta {
    gap: 10px;
    color: var(--color-text);
}

/* Homepage featured products */
.ox-home-products .ox-product-cards--featured {
    gap: 28px;
}

.ox-home-products .ox-product-card--featured .ox-product-card__media {
    aspect-ratio: 4 / 3;
}

.ox-product-card__media-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0a0a0a;
    background: var(--color-accent-bright);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    pointer-events: none;
}

.ox-products-page {
    padding-top: 72px;
    padding-bottom: var(--space-section);
}

/* Compact product cards — 3-column row */
.ox-product-cards {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.ox-product-card {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #0a0a0a;
    color: #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s, border-color 0.25s;
}

.ox-product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 192, 51, 0.45);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 192, 51, 0.12);
}

.ox-product-card__media {
    display: block;
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0a0a0a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ox-product-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.15) 0%, transparent 35%, rgba(10, 10, 10, 0.7) 100%);
    pointer-events: none;
    transition: opacity 0.35s var(--ease-out);
}

.ox-product-card:hover .ox-product-card__media::after {
    opacity: 0.85;
}

.ox-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.55s var(--ease-out), filter 0.35s var(--ease-out);
}

.ox-product-card:hover .ox-product-card__media img {
    transform: scale(1.06);
    filter: brightness(1.05) saturate(1.08);
}

.ox-product-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 24px 24px;
}

.ox-product-card__category {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent-bright);
    margin-bottom: 8px;
}

.ox-product-card__name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 10px;
    color: #fff;
}

.ox-product-card__name a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.ox-product-card__name a:hover {
    color: var(--color-accent-bright);
}

.ox-product-card__text {
    flex: 1;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.ox-product-card__cta {
    align-self: flex-start;
}

.ox-product-card--featured {
    border-radius: 20px;
}

.ox-product-card--featured:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.ox-product-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    cursor: pointer;
}

.ox-product-card__link:focus-visible {
    outline: 2px solid var(--color-accent-bright);
    outline-offset: 3px;
    border-radius: 20px;
}

.ox-product-card--featured .ox-product-card__body {
    flex: 1;
    padding: 24px 22px 26px;
}

.ox-product-card--featured .ox-product-card__name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
}

.ox-product-card--featured .ox-product-card__text {
    flex: 1;
    color: rgba(255, 255, 255, 0.78);
}

.ox-product-card__link-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent-bright);
    transition: gap 0.2s var(--ease-out), color 0.2s;
}

.ox-product-card--featured:hover .ox-product-card__link-cta {
    gap: 10px;
    color: #fff;
}

.ox-product-card--azdawaj,
.ox-product-card--orixdent,
.ox-product-card--ai-chatbot,
.ox-product-card--fintech,
.ox-product-card--leadgen-platform,
.ox-product-card--pharma-store {
    background: linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
}

/* Products page — 6-product catalog grid */
body.is-products {
    background: #ffffff;
    color: var(--color-text);
}

body.is-products .ox-products-page {
    background:
        radial-gradient(ellipse 70% 50% at 10% 0%, rgba(255, 192, 51, 0.05), transparent 55%),
        radial-gradient(ellipse 60% 45% at 90% 20%, rgba(251, 191, 36, 0.04), transparent 50%),
        linear-gradient(180deg, #fafaf9 0%, #ffffff 50%, #fffbeb 100%);
}

body.is-products .ox-products-page__head {
    max-width: 720px;
    margin-bottom: clamp(28px, 4vw, 40px);
}

body.is-products .breadcrumb,
body.is-products .breadcrumb span {
    color: var(--color-text-subtle);
}

body.is-products .breadcrumb a:hover {
    color: var(--color-link);
}

body.is-products .ox-svc-hero--light .ox-svc-hero__title,
body.is-products .ox-svc-hero--light .ox-svc-hero__line {
    color: var(--color-text);
}

body.is-products .ox-svc-hero--light .ox-svc-hero__line--accent {
    color: #a16207;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

body.is-products .ox-svc-hero--light .ox-svc-hero__intro {
    color: var(--color-text-muted);
}

body.is-products .ox-svc-hero--light .ox-svc-hero__stat {
    border: 1px solid var(--color-border);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

body.is-products .ox-svc-hero--light .ox-svc-hero__stat:nth-child(1) {
    border-color: rgba(255, 192, 51, 0.28);
    box-shadow: 0 4px 18px rgba(255, 192, 51, 0.08);
}

body.is-products .ox-svc-hero--light .ox-svc-hero__stat:nth-child(2) {
    border-color: rgba(249, 178, 51, 0.28);
    box-shadow: 0 4px 18px rgba(249, 178, 51, 0.08);
}

body.is-products .ox-svc-hero--light .ox-svc-hero__stat:nth-child(3) {
    border-color: rgba(251, 191, 36, 0.32);
    box-shadow: 0 4px 18px rgba(251, 191, 36, 0.1);
}

body.is-products .ox-svc-hero--light .ox-svc-hero__stat strong {
    background: linear-gradient(135deg, var(--color-link), #d97706);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

body.is-products .ox-svc-hero--light .ox-svc-hero__stat span {
    color: var(--color-text-muted);
}

body.is-products .ox-products-page .ox-product-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

body.is-products .ox-products-page .ox-product-card {
    border-color: rgba(255, 255, 255, 0.12);
    background: linear-gradient(160deg, #0a0a0a 0%, #111118 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

body.is-products .ox-products-page .ox-product-card:hover {
    border-color: rgba(249, 178, 51, 0.5);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(249, 178, 51, 0.15);
}

body.is-products .ox-products-page .ox-product-card__category {
    color: var(--color-accent-bright);
}

body.is-products .ox-products-page .ox-product-card__name,
body.is-products .ox-products-page .ox-product-card__name a {
    color: rgba(255, 255, 255, 0.95);
}

body.is-products .ox-products-page .ox-product-card__name a:hover {
    color: var(--color-accent-bright);
}

body.is-products .ox-products-page .ox-product-card__text {
    color: rgba(255, 255, 255, 0.72);
}

body.is-products .ox-products-page .ox-product-card__link {
    color: var(--color-accent-bright);
}

body.is-products .ox-svc-faq {
    background:
        radial-gradient(ellipse 55% 45% at 0% 100%, rgba(255, 192, 51, 0.05), transparent 55%),
        radial-gradient(ellipse 50% 40% at 100% 0%, rgba(249, 178, 51, 0.04), transparent 50%),
        #f5f5f4;
}

body.is-products .ox-svc-faq__intro-card,
body.is-products .ox-svc-faq__list {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(160deg, #0a0a0a 0%, #111118 100%);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.24);
    color: rgba(255, 255, 255, 0.92);
}

body.is-products .ox-svc-faq__item summary {
    color: rgba(255, 255, 255, 0.92);
}

body.is-products .ox-svc-faq__item summary::after {
    color: rgba(255, 255, 255, 0.55);
}

body.is-products .ox-svc-faq__answer p {
    color: rgba(255, 255, 255, 0.72);
}

body.is-products .ox-svc-faq__item[open] {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    box-shadow: none;
    background: transparent;
}

body.is-products .ox-svc-faq__item[open] .ox-svc-faq__answer {
    border-left: none;
    padding-left: 0;
}

.ox-featured-product {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 0;
    align-items: stretch;
    border-radius: 24px;
    border: 1px solid var(--color-border);
    background: #fff;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform 0.28s var(--ease-out), box-shadow 0.28s, border-color 0.28s;
}

.ox-featured-product:nth-child(even) {
    grid-template-columns: 0.95fr 1.05fr;
}

.ox-featured-product:nth-child(even) .ox-featured-product__visual {
    order: 2;
}

.ox-featured-product:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 192, 51, 0.5);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 192, 51, 0.12);
}

.ox-featured-product--jornaya {
    background: linear-gradient(135deg, #ffffff 0%, #fffdf7 100%);
}

.ox-featured-product--vc-dialer {
    background: linear-gradient(135deg, #ffffff 0%, #fafaf9 100%);
}

.ox-featured-product__visual {
    position: relative;
    min-height: 340px;
    background: linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 100%);
    overflow: hidden;
}

.ox-featured-product__frame {
    width: 100%;
    height: 100%;
}

.ox-featured-product__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s var(--ease-out);
}

.ox-featured-product:hover .ox-featured-product__frame img {
    transform: scale(1.03);
}

.ox-featured-product__badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-text);
    box-shadow: var(--shadow-sm);
}

.ox-featured-product__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent-bright);
    box-shadow: 0 0 0 3px rgba(255, 192, 51, 0.25);
}

.ox-featured-product__content {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

.ox-featured-product__name {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #a16207;
}

.ox-featured-product__headline {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--color-text);
}

.ox-featured-product__text {
    color: var(--color-text-muted);
    line-height: 1.7;
    font-size: 0.975rem;
}

.ox-featured-product__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.ox-featured-product__stat {
    flex: 1 1 88px;
    min-width: 88px;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    background: var(--color-surface-muted);
    border: 1px solid var(--color-border);
}

.ox-featured-product__stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.2;
}

.ox-featured-product__stat span {
    display: block;
    margin-top: 2px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-text-subtle);
}

.ox-featured-product__features {
    display: grid;
    gap: 10px;
    margin-top: 4px;
}

.ox-featured-product__features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--color-text-muted);
    font-size: 0.925rem;
    line-height: 1.55;
}

.ox-featured-product__features svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    color: #a16207;
}

.ox-featured-product__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

/* Legacy product cards (footer/contact) */
.ox-products__grid {
    display: grid;
    gap: 28px;
}

.ox-product {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s, border-color 0.25s;
}

.ox-product:nth-child(even) {
    grid-template-columns: 0.9fr 1.1fr;
}

.ox-product:nth-child(even) .ox-product__media {
    order: 2;
}

.ox-product:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 192, 51, 0.45);
    box-shadow: var(--shadow-md);
}

.ox-product__media {
    min-height: 280px;
    background: var(--color-surface-muted);
    overflow: hidden;
}

.ox-product__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.ox-product:hover .ox-product__media img {
    transform: scale(1.04);
}

.ox-product__body {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
}

.ox-product__name {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #a16207;
}

.ox-product__title {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
}

.ox-product__text {
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-bottom: 8px;
}

/* Dialer */
.ox-dialer__grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 48px;
    align-items: center;
}

.ox-dialer__points {
    display: grid;
    gap: 12px;
    margin: 24px 0 28px;
}

.ox-dialer__points li {
    position: relative;
    padding-left: 22px;
    color: var(--color-text-muted);
}

.ox-dialer__points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent-bright);
}

.ox-dialer__visual {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
}

.ox-dialer__visual img {
    width: 100%;
    display: block;
}

/* Industries — light split-card slider */
.ox-industries {
    padding-bottom: clamp(72px, 10vw, var(--space-section));
}

.ox-industries .container {
    margin-bottom: 0;
}

.ox-industries__head {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
}

.ox-industries__head .ox-section__eyebrow {
    margin-bottom: 12px;
}

.ox-industries__title {
    font-family: var(--font-display);
    font-size: clamp(1.875rem, 3.6vw, 2.75rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.035em;
    color: var(--color-text);
    margin: 0 auto 14px;
    max-width: 20ch;
    text-wrap: balance;
}

.ox-industries__sub {
    margin: 0 auto;
    max-width: 52ch;
    font-size: clamp(1rem, 1.4vw, 1.0625rem);
    line-height: 1.7;
    color: var(--color-text-muted);
    text-wrap: balance;
}

.ox-industries__chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
}

.ox-industries__chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(249, 178, 51, 0.35);
    background: rgba(255, 251, 235, 0.9);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #a16207;
}

.ox-industries__cta {
    margin-top: 22px;
}

.ox-industries-slider {
    position: relative;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: #fff;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.ox-industries-slider__viewport {
    position: relative;
    overflow: hidden;
    min-height: clamp(300px, 34vw, 400px);
}

.ox-industries-slider__track {
    position: relative;
    width: 100%;
    min-height: inherit;
}

.ox-industries-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s var(--ease-out), visibility 0.5s;
    z-index: 0;
}

.ox-industries-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.ox-industries-slide__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: clamp(28px, 4vw, 44px);
    background: #fff;
    color: var(--color-text);
    overflow: visible;
}

.ox-industries-slide__badge {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(249, 178, 51, 0.4);
    background: rgba(255, 251, 235, 0.95);
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #a16207;
}

.ox-industries-slide__title {
    margin: 0 0 14px;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.2vw, 3.25rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--color-text);
    text-wrap: balance;
}

.ox-industries-slide--featured .ox-industries-slide__title {
    background: linear-gradient(135deg, #a16207 0%, #f9b233 50%, #d97706 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ox-industries-slide__tagline {
    margin: 0;
    max-width: 38ch;
    font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
    line-height: 1.7;
    color: var(--color-text-muted);
}

.ox-industries-slide__media {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    background: var(--color-surface-muted);
}

.ox-industries-slide__media img {
    width: 100%;
    height: 100%;
    min-height: clamp(260px, 34vw, 400px);
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition: transform 6s linear;
}

.ox-industries-slide.is-active .ox-industries-slide__media img {
    transform: scale(1.05);
}

.ox-industries-slide__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.35) 0%, transparent 28%);
    pointer-events: none;
}

.ox-industries-slider__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 14px 20px;
    background: var(--color-surface-soft);
    border-top: 1px solid var(--color-border);
}

.ox-industries-slider__arrow {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    background: #fff;
    color: var(--color-text);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.ox-industries-slider__arrow:hover {
    background: rgba(249, 178, 51, 0.1);
    border-color: rgba(249, 178, 51, 0.45);
}

.ox-industries-slider__arrow svg {
    width: 20px;
    height: 20px;
}

.ox-industries-slider__dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    max-width: min(100%, 520px);
}

.ox-industries-slider__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.14);
    cursor: pointer;
    transition: transform 0.2s, background 0.2s, width 0.25s;
}

.ox-industries-slider__dot.is-active {
    width: 28px;
    border-radius: var(--radius-full);
    background: var(--color-accent);
}

.ox-industries-slider__progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: rgba(10, 10, 10, 0.06);
    z-index: 4;
    pointer-events: none;
}

.ox-industries-slider__progress-bar {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent), #fbbf24);
    transform-origin: left center;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Process — legacy (vc-dialer detail page) */
.ox-process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ox-process__step {
    padding: 28px 22px;
    border-top: 2px solid var(--color-accent-bright);
    background: var(--color-surface-muted);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.ox-process__num {
    display: block;
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--color-accent);
    margin-bottom: 14px;
}

.ox-process__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.ox-process__text {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* Process showcase — homepage (light theme) */
.ox-process-showcase {
    position: relative;
    padding: var(--space-section) 0;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 55% at 0% 0%, rgba(255, 192, 51, 0.09), transparent 55%),
        radial-gradient(ellipse 55% 50% at 100% 18%, rgba(255, 192, 51, 0.07), transparent 50%),
        radial-gradient(ellipse 50% 45% at 50% 100%, rgba(249, 178, 51, 0.05), transparent 55%),
        var(--color-surface-soft);
    color: var(--color-text);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.ox-process-showcase__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ox-process-showcase__gridlines {
    position: absolute;
    inset: 0;
    opacity: 0.42;
    background-image:
        linear-gradient(rgba(10, 10, 10, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 10, 10, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent);
}

.ox-process-showcase__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.45;
}

.ox-process-showcase__glow--1 {
    width: 480px;
    height: 480px;
    top: -160px;
    left: -120px;
    background: rgba(255, 192, 51, 0.2);
}

.ox-process-showcase__glow--2 {
    width: 420px;
    height: 420px;
    top: 20%;
    right: -140px;
    background: rgba(255, 192, 51, 0.14);
}

.ox-process-showcase__glow--3 {
    width: 360px;
    height: 360px;
    bottom: -120px;
    left: 35%;
    background: rgba(249, 178, 51, 0.12);
}

.ox-process-showcase__inner {
    position: relative;
    z-index: 1;
}

.ox-process-showcase__head {
    max-width: 720px;
    margin-bottom: 56px;
}

.ox-process-showcase__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #a16207;
    margin-bottom: 14px;
}

.ox-process-showcase__eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 12px rgba(249, 178, 51, 0.55);
}

.ox-process-showcase__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    color: var(--color-text);
}

.ox-process-showcase__sub {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 640px;
}

.ox-process-showcase__timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.ox-process-showcase__rail {
    position: absolute;
    top: 118px;
    left: 12%;
    right: 12%;
    height: 2px;
    z-index: 0;
    pointer-events: none;
}

.ox-process-showcase__rail-line {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 178, 51, 0.28) 8%, rgba(249, 178, 51, 0.55) 50%, rgba(249, 178, 51, 0.28) 92%, transparent);
}

.ox-process-showcase__rail-glow {
    position: absolute;
    inset: -6px 0;
    background: linear-gradient(90deg, transparent, rgba(249, 178, 51, 0.18), transparent);
    filter: blur(8px);
    opacity: 0.7;
}

.ox-process-showcase__card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.ox-process-showcase__marker {
    position: relative;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
}

.ox-process-showcase__marker-dot {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffc033, #f9b233);
    box-shadow: 0 0 0 6px rgba(255, 192, 51, 0.18), 0 8px 24px rgba(255, 192, 51, 0.28);
}

.ox-process-showcase__marker-num {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #0a0a0a;
}

.ox-process-showcase__card-inner {
    width: 100%;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(10, 10, 10, 0.05);
    transition: transform 0.28s var(--ease-out), border-color 0.28s, box-shadow 0.28s;
}

.ox-process-showcase__card:hover .ox-process-showcase__card-inner {
    transform: translateY(-6px);
    border-color: rgba(249, 178, 51, 0.45);
    box-shadow: 0 20px 48px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(249, 178, 51, 0.15);
}

.ox-process-showcase__visual {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f4f4f5;
}

.ox-process-showcase__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s var(--ease-out);
}

.ox-process-showcase__card:hover .ox-process-showcase__visual img {
    transform: scale(1.05);
}

.ox-process-showcase__visual-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 10, 0.12) 100%);
    pointer-events: none;
}

.ox-process-showcase__icon {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #fff;
    color: #a16207;
    border: 1px solid rgba(249, 178, 51, 0.25);
    box-shadow: 0 4px 16px rgba(10, 10, 10, 0.08);
}

.ox-process-showcase__icon svg {
    width: 22px;
    height: 22px;
}

.ox-process-showcase__body {
    padding: 22px 20px 24px;
}

.ox-process-showcase__step-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #a16207;
    margin-bottom: 8px;
}

.ox-process-showcase__card-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 8px;
    color: var(--color-text);
}

.ox-process-showcase__card-text {
    color: var(--color-text-muted);
    font-size: 0.925rem;
    line-height: 1.65;
}

.ox-process-showcase__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 52px;
}

.ox-process-showcase__card--discover .ox-process-showcase__marker-dot { background: linear-gradient(145deg, var(--color-accent-bright), var(--color-accent)); box-shadow: 0 0 0 6px rgba(255, 192, 51, 0.18), 0 8px 24px rgba(255, 192, 51, 0.25); }
.ox-process-showcase__card--design .ox-process-showcase__marker-dot { background: linear-gradient(145deg, var(--color-accent), var(--color-accent-bright)); box-shadow: 0 0 0 6px rgba(249, 178, 51, 0.18), 0 8px 24px rgba(249, 178, 51, 0.25); }
.ox-process-showcase__card--build .ox-process-showcase__marker-dot { background: linear-gradient(145deg, #ffc033, #f9b233); }
.ox-process-showcase__card--launch .ox-process-showcase__marker-dot { background: linear-gradient(145deg, #fbbf24, #d97706); box-shadow: 0 0 0 6px rgba(255, 192, 51, 0.18), 0 8px 24px rgba(255, 192, 51, 0.22); }

@media (prefers-reduced-motion: reduce) {
    .ox-process-showcase__card:hover .ox-process-showcase__card-inner,
    .ox-process-showcase__card:hover .ox-process-showcase__visual img {
        transform: none;
    }
}

/* Why Orixes — premium trust studio (light section, dark cards) */
.ox-why-studio {
    position: relative;
    padding: clamp(72px, 10vw, 120px) 0;
    background:
        radial-gradient(ellipse 70% 55% at 0% 0%, rgba(255, 192, 51, 0.08), transparent 55%),
        radial-gradient(ellipse 55% 50% at 100% 20%, rgba(255, 192, 51, 0.06), transparent 50%),
        radial-gradient(ellipse 50% 45% at 50% 100%, rgba(249, 178, 51, 0.05), transparent 55%),
        var(--color-surface-soft);
    color: var(--color-text);
    overflow: hidden;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.ox-why-studio__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ox-why-studio__gridlines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(10, 10, 10, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 10, 10, 0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 20%, transparent 75%);
}

.ox-why-studio__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.45;
}

.ox-why-studio__glow--1 {
    width: 480px;
    height: 480px;
    top: -160px;
    left: -120px;
    background: rgba(255, 192, 51, 0.22);
}

.ox-why-studio__glow--2 {
    width: 420px;
    height: 420px;
    top: 20%;
    right: -140px;
    background: rgba(255, 192, 51, 0.16);
}

.ox-why-studio__glow--3 {
    width: 360px;
    height: 360px;
    bottom: -120px;
    left: 35%;
    background: rgba(249, 178, 51, 0.14);
}

.ox-why-studio__inner {
    position: relative;
    z-index: 1;
}

.ox-why-studio__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

.ox-why-studio__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #a16207;
}

.ox-why-studio__eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 12px rgba(249, 178, 51, 0.55);
}

.ox-why-studio__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.2vw, 3.25rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin: 0 0 20px;
    color: var(--color-text);
}

.ox-why-studio__title-accent {
    display: block;
    background: linear-gradient(135deg, #a16207 0%, #f9b233 48%, #d97706 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ox-why-studio__sub {
    max-width: 34rem;
    margin: 0 0 28px;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--color-text-muted);
}

.ox-why-studio__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.ox-why-studio__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ox-why-studio__trust li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.ox-why-studio__trust svg {
    width: 16px;
    height: 16px;
    color: #d97706;
    flex-shrink: 0;
}

.ox-why-studio__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.ox-why-studio__card {
    position: relative;
    padding: 22px 22px 24px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(155deg, rgba(18, 18, 28, 0.95) 0%, rgba(8, 8, 14, 0.98) 100%);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.22),
        0 4px 14px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.28s var(--ease-out), border-color 0.28s, box-shadow 0.28s;
}

.ox-why-studio__card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.28),
        0 8px 20px rgba(0, 0, 0, 0.12);
}

.ox-why-studio__card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.ox-why-studio__card-index {
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.28);
}

.ox-why-studio__card-icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ox-why-studio__card-icon svg {
    width: 22px;
    height: 22px;
}

.ox-why-studio__card-title {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 8px;
    color: #fff;
}

.ox-why-studio__card-text {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.58);
}

.ox-why-studio__card-glow {
    position: absolute;
    width: 140px;
    height: 140px;
    bottom: -70px;
    right: -40px;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.35;
    pointer-events: none;
    transition: opacity 0.28s;
}

.ox-why-studio__card:hover .ox-why-studio__card-glow {
    opacity: 0.55;
}

.ox-why-studio__card--cyan {
    border-top: 2px solid rgba(255, 192, 51, 0.55);
}

.ox-why-studio__card--cyan .ox-why-studio__card-icon {
    color: var(--color-accent-bright);
    box-shadow: 0 0 20px rgba(255, 192, 51, 0.15);
}

.ox-why-studio__card--cyan .ox-why-studio__card-glow {
    background: var(--color-accent-bright);
}

.ox-why-studio__card--magenta {
    border-top: 2px solid rgba(249, 178, 51, 0.55);
}

.ox-why-studio__card--magenta .ox-why-studio__card-icon {
    color: var(--color-accent);
    box-shadow: 0 0 20px rgba(249, 178, 51, 0.15);
}

.ox-why-studio__card--magenta .ox-why-studio__card-glow {
    background: var(--color-accent);
}

.ox-why-studio__card--gold {
    border-top: 2px solid rgba(251, 191, 36, 0.55);
}

.ox-why-studio__card--gold .ox-why-studio__card-icon {
    color: #fbbf24;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.15);
}

.ox-why-studio__card--gold .ox-why-studio__card-glow {
    background: #fbbf24;
}

.ox-why-studio__card--green {
    border-top: 2px solid rgba(217, 119, 6, 0.55);
}

.ox-why-studio__card--green .ox-why-studio__card-icon {
    color: #d97706;
    box-shadow: 0 0 20px rgba(217, 119, 6, 0.15);
}

.ox-why-studio__card--green .ox-why-studio__card-glow {
    background: #d97706;
}

.ox-why-studio__proof {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: clamp(40px, 6vw, 64px);
    padding: 6px;
    border-radius: 20px;
    border: 1px solid rgba(10, 10, 10, 0.08);
    background: linear-gradient(135deg, rgba(12, 12, 20, 0.96) 0%, rgba(6, 6, 12, 0.98) 100%);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.16),
        0 8px 24px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.ox-why-studio__proof-item {
    position: relative;
    padding: 28px 20px;
    text-align: center;
}

.ox-why-studio__proof-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 22%;
    right: 0;
    width: 1px;
    height: 56%;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.ox-why-studio__proof-value {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 8px;
}

.ox-why-studio__proof-item--1 .ox-why-studio__proof-value {
    background: linear-gradient(135deg, var(--color-accent-bright), #ffd666);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ox-why-studio__proof-item--2 .ox-why-studio__proof-value {
    background: linear-gradient(135deg, var(--color-accent), #f9b233);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ox-why-studio__proof-item--3 .ox-why-studio__proof-value {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ox-why-studio__proof-item--4 .ox-why-studio__proof-value {
    background: linear-gradient(135deg, #fbbf24, #d97706);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ox-why-studio__proof-label {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.48);
}

@media (max-width: 1100px) {
    .ox-why-studio__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ox-why-studio__proof {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ox-why-studio__proof-item:nth-child(2)::after {
        display: none;
    }

    .ox-why-studio__proof-item:nth-child(odd):not(:last-child)::after {
        content: '';
        position: absolute;
        top: 22%;
        right: 0;
        width: 1px;
        height: 56%;
        background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    }
}

@media (max-width: 768px) {
    .ox-why-studio__cards {
        grid-template-columns: 1fr;
    }

    .ox-why-studio__proof {
        grid-template-columns: 1fr;
    }

    .ox-why-studio__proof-item::after {
        display: none !important;
    }

    .ox-why-studio__proof-item:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .ox-why-studio__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ox-why-studio__actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ox-why-studio__card:hover {
        transform: none;
    }
}

/* Stats */
.ox-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
}

.ox-stat__value {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: #a16207;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 8px;
}

.ox-stat__label {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
}

/* Case studies */
.ox-cases__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.ox-case {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s, border-color 0.25s;
}

.ox-case:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 192, 51, 0.45);
    box-shadow: var(--shadow-glow);
}

.ox-case__media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0a0a0a;
}

.ox-case__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s var(--ease-out);
}

.ox-case:hover .ox-case__media img {
    transform: scale(1.05);
}

.ox-case__body {
    padding: 24px;
}

.ox-case__industry {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.ox-case__title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}

.ox-case__text {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.ox-case__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ox-case__tags span {
    padding: 6px 10px;
    border-radius: var(--radius-full);
    background: var(--color-accent-dim);
    color: #0a0a0a;
    font-size: 0.75rem;
    font-weight: 600;
}

/* About page — SoftCodec-inspired cinematic hero */
.ox-about-hero {
    position: relative;
    min-height: min(92dvh, 860px);
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 40px) 0 72px;
    background: #07070d;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    isolation: isolate;
    color: rgba(255, 255, 255, 0.92);
}

.ox-about-hero__ambient {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.ox-about-hero__bg {
    position: absolute;
    inset: -2%;
    width: 104%;
    height: 104%;
    object-fit: cover;
    object-position: 72% center;
    transform: scale(1.02);
    filter: saturate(1.35) contrast(1.08) brightness(0.68);
    opacity: 0.55;
}

.ox-about-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 7, 13, 0.95) 0%, rgba(7, 7, 13, 0.84) 34%, rgba(7, 7, 13, 0.44) 58%, rgba(7, 7, 13, 0.2) 100%),
        linear-gradient(180deg, rgba(7, 7, 13, 0.58) 0%, transparent 28%, transparent 72%, rgba(7, 7, 13, 0.9) 100%),
        radial-gradient(ellipse 46% 52% at 80% 40%, rgba(251, 191, 36, 0.16), transparent 62%),
        radial-gradient(ellipse 40% 40% at 18% 68%, rgba(255, 192, 51, 0.12), transparent 60%);
}

.ox-about-hero__gridlines {
    position: absolute;
    inset: 0;
    opacity: 0.32;
    background:
        linear-gradient(rgba(255, 192, 51, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 192, 51, 0.08) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
}

.ox-about-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    animation: ox-about-orb-drift 20s ease-in-out infinite;
}

.ox-about-hero__orb--1 {
    width: 380px;
    height: 380px;
    top: -80px;
    right: 6%;
    background: rgba(255, 192, 51, 0.28);
}

.ox-about-hero__orb--2 {
    width: 280px;
    height: 280px;
    bottom: 8%;
    right: 28%;
    background: rgba(251, 191, 36, 0.22);
    animation-delay: -7s;
}

.ox-about-hero__orb--3 {
    width: 220px;
    height: 220px;
    top: 42%;
    left: 4%;
    background: rgba(249, 178, 51, 0.18);
    animation-delay: -12s;
}

@keyframes ox-about-orb-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-18px, 14px) scale(1.05); }
}

.ox-about-hero__inner {
    position: relative;
    z-index: 1;
}

.ox-about-hero .breadcrumb {
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.42);
}

.ox-about-hero .breadcrumb span {
    color: rgba(255, 255, 255, 0.62);
}

.ox-about-hero .breadcrumb a:hover {
    color: var(--color-accent-bright);
}

.ox-about-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.ox-about-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    margin-bottom: 20px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(251, 191, 36, 0.35);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fbbf24;
}

.ox-about-hero__badge::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fbbf24;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.65);
}

.ox-about-hero__title {
    display: flex;
    flex-direction: column;
    gap: 0.06em;
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.045em;
    max-width: 12ch;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.96);
}

.ox-about-hero__line--accent {
    background: linear-gradient(135deg, var(--color-accent-bright) 0%, #fbbf24 48%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ox-about-hero__intro {
    max-width: 40rem;
    font-size: clamp(1.0625rem, 1.6vw, 1.2rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.62);
    margin: 0 0 28px;
}

.ox-about-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
}

.ox-about-hero__trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ox-about-hero__avatars {
    display: flex;
    align-items: center;
}

.ox-about-hero__avatar {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    margin-left: -10px;
    border-radius: 50%;
    border: 2px solid #07070d;
    background: linear-gradient(135deg, #141824, #1e2438);
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 700;
    color: #fbbf24;
}

.ox-about-hero__avatar:first-child {
    margin-left: 0;
}

.ox-about-hero__trust-label {
    margin: 0;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.55);
}

.ox-about-hero__trust-label strong {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
}

.ox-about-hero__panel {
    position: relative;
    padding: 32px 28px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(160deg, rgba(20, 24, 36, 0.92) 0%, rgba(10, 10, 16, 0.88) 100%);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    max-width: 360px;
    margin-left: auto;
}

.ox-about-hero__panel-glow {
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 192, 51, 0.35), rgba(251, 191, 36, 0.2), rgba(249, 178, 51, 0.25));
    opacity: 0.45;
    z-index: -1;
    filter: blur(12px);
}

.ox-about-hero__panel-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 14px;
    border: 1px solid rgba(255, 192, 51, 0.35);
    background: rgba(255, 192, 51, 0.1);
    color: var(--color-accent-bright);
}

.ox-about-hero__panel-icon svg {
    width: 28px;
    height: 28px;
}

.ox-about-hero__panel-eyebrow {
    margin: 0 0 20px;
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.ox-about-hero__metrics {
    display: grid;
    gap: 16px;
}

.ox-about-hero__metric {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.ox-about-hero__metric:first-child {
    border-color: rgba(255, 192, 51, 0.32);
    box-shadow: 0 0 20px rgba(255, 192, 51, 0.08);
}

.ox-about-hero__metric:last-child {
    border-color: rgba(251, 191, 36, 0.32);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.08);
}

.ox-about-hero__metric-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.ox-about-hero__metric-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
}

.ox-about-hero__metric:first-child .ox-about-hero__metric-value {
    background: linear-gradient(135deg, var(--color-accent-bright), #ffd666);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ox-about-hero__metric:last-child .ox-about-hero__metric-value {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

body.is-about .site-header--light:not(.is-scrolled) {
    background: transparent;
    backdrop-filter: none;
    border-bottom-color: transparent;
    box-shadow: none;
}

body.is-about .site-header--light.is-scrolled {
    background: rgba(7, 7, 13, 0.94);
    backdrop-filter: blur(18px);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

body.is-about .site-header--light .nav-link,
body.is-about .site-header--light .logo-img {
    filter: none;
}

body.is-about .site-header--light .nav-link {
    color: rgba(255, 255, 255, 0.82);
}

body.is-about .site-header--light .nav-link:hover,
body.is-about .site-header--light .nav-link.is-active {
    color: #fff;
}

body.is-about .site-header--light .nav-toggle span {
    background: #fff;
}

.ox-about-story__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 64px;
    align-items: center;
}

.ox-about-story__media {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--color-surface-muted);
}

.ox-about-story__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ox-about-story__content .ox-section__title {
    margin-bottom: 24px;
}

.ox-about-story__content p {
    color: var(--color-text-muted);
    font-size: 1.0625rem;
    line-height: 1.75;
    margin-bottom: 18px;
}

.ox-about-stats .ox-stats {
    border-top-color: var(--color-border-dark);
}

.ox-history__layout {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 48px;
    align-items: start;
    margin-top: 16px;
}

.ox-history__nav {
    position: sticky;
    top: calc(var(--header-h) + 24px);
}

.ox-history__years {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-left: 1px solid var(--color-border);
    padding-left: 18px;
}

.ox-history__year {
    display: block;
    padding: 10px 0;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-text-subtle);
    transition: color 0.2s, transform 0.2s;
    position: relative;
}

.ox-history__year::before {
    content: '';
    position: absolute;
    left: -21px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-border);
    transform: translateY(-50%);
    transition: background 0.2s, box-shadow 0.2s;
}

.ox-history__year:hover,
.ox-history__year.is-active {
    color: var(--color-text);
}

.ox-history__year.is-active::before {
    background: var(--color-accent);
    box-shadow: 0 0 0 4px var(--color-accent-dim);
}

.ox-history__block {
    padding: 36px 0;
    border-bottom: 1px solid var(--color-border);
    scroll-margin-top: calc(var(--header-h) + 32px);
}

.ox-history__block-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
    gap: 40px;
    align-items: center;
}

.ox-history__content {
    min-width: 0;
}

.ox-history__media {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    background: var(--color-surface-muted);
    aspect-ratio: 16 / 10;
}

.ox-history__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ox-history__block:first-child {
    padding-top: 0;
}

.ox-history__block:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.ox-history__year-label {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 24px;
    color: var(--color-text);
}

.ox-history__items {
    display: grid;
    gap: 16px;
    max-width: 46rem;
}

.ox-history__items li {
    position: relative;
    padding-left: 22px;
    color: var(--color-text-muted);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.ox-history__items li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
}

.ox-about-values__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--color-border);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.ox-about-value {
    background: #fff;
    padding: 32px 28px;
}

.ox-about-values__grid .ox-about-value:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}

.ox-about-value__num {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--color-accent);
    margin-bottom: 14px;
}

.ox-about-value__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}

.ox-about-value__text {
    color: var(--color-text-muted);
    font-size: 0.9875rem;
    line-height: 1.7;
}

.ox-about-leaders__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.ox-about-leader {
    padding: 28px 24px;
    border: 1px solid var(--color-border-dark);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.25s, transform 0.25s, background 0.25s;
}

.ox-about-leader:hover {
    border-color: rgba(255, 192, 51, 0.45);
    background: rgba(255, 192, 51, 0.06);
    transform: translateY(-4px);
}

.ox-about-leader__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    background: var(--color-accent-dim);
    color: var(--color-accent-bright);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.125rem;
}

.ox-about-leader__name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.ox-about-leader__role {
    color: var(--color-text-on-dark-muted);
    font-size: 0.9375rem;
    line-height: 1.5;
}

/* Final CTA — light premium */
.ox-cta {
    padding-block: 100px;
    background:
        radial-gradient(ellipse 60% 50% at 50% 100%, rgba(255, 192, 51, 0.12), transparent 60%),
        var(--color-surface-soft);
    color: var(--color-text);
    border-top: 1px solid var(--color-border);
}

.ox-cta__inner {
    max-width: 760px;
    text-align: center;
    margin-inline: auto;
}

.ox-cta__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin: 12px 0 18px;
    color: var(--color-text);
}

.ox-cta__text {
    color: var(--color-text-muted);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.ox-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 28px;
}

.ox-cta__contacts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 28px;
}

.ox-cta__contacts a {
    color: var(--color-text-muted);
    transition: color 0.2s;
}

.ox-cta__contacts a:hover {
    color: #a16207;
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

.ox-hero .reveal {
    transform: translateY(24px);
}

.ox-hero .reveal.is-visible {
    transform: translateY(0);
}

.ox-hero__visual.reveal {
    transform: translateY(24px);
}

.ox-hero__visual.reveal.is-visible {
    transform: translateY(0);
}

/* Mobile nav — dark premium */
.nav-mobile {
    background: rgba(10, 10, 10, 0.98) !important;
}

.nav-mobile-link,
.nav-mobile-contact {
    color: #fff !important;
}

.nav-mobile-link:hover {
    color: var(--color-accent-bright) !important;
}

/* Responsive */
@media (max-width: 1280px) {
    .ox-hero__layout {
        max-width: 100%;
        gap: 28px;
    }

    .ox-hero__title {
        font-size: clamp(1.875rem, 3vw, 2.75rem);
    }
}

@media (max-width: 1100px) {
    .ox-hero__layout,
    .ox-dialer__grid,
    .ox-product,
    .ox-product:nth-child(even),
    .ox-featured-product,
    .ox-featured-product:nth-child(even),
    .ox-about-hero__layout,
    .ox-about-story__grid {
        grid-template-columns: 1fr;
    }

    .ox-featured-product:nth-child(even) .ox-featured-product__visual {
        order: 0;
    }

    .ox-hero__layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ox-hero__visual {
        max-width: 560px;
        margin-inline: auto;
        width: 100%;
    }

    .ox-hero__frame,
    .ox-hero__frame:hover {
        transform: none;
    }

    .ox-hero__title {
        max-width: none;
    }

    .ox-product:nth-child(even) .ox-product__media {
        order: 0;
    }

    .ox-about-hero__panel {
        max-width: 420px;
        margin-inline: auto;
        width: 100%;
    }

    .ox-history__layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .ox-history__nav {
        position: static;
    }

    .ox-history__years {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 8px;
        border-left: 0;
        padding-left: 0;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .ox-history__year {
        padding: 10px 16px;
        border: 1px solid var(--color-border);
        border-radius: var(--radius-full);
        white-space: nowrap;
        font-size: 0.9375rem;
    }

    .ox-history__year::before {
        display: none;
    }

    .ox-history__year.is-active {
        background: var(--color-bg-dark);
        border-color: var(--color-bg-dark);
        color: #fff;
    }

    .ox-history__block-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ox-history__media {
        order: -1;
    }

    .ox-about-leaders__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ox-industries__head {
        margin-bottom: 32px;
        text-align: left;
        margin-inline: 0;
    }

    .ox-industries__title,
    .ox-industries__sub {
        margin-inline: 0;
        max-width: none;
    }

    .ox-industries__chips {
        justify-content: flex-start;
    }

    .ox-industries-slider__viewport {
        min-height: clamp(280px, 38vw, 360px);
    }

    .ox-industries-slide {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .ox-process__grid,
    .ox-cases__grid,
    .ox-product-cards,
    .ox-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .ox-process-showcase__timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 20px;
    }

    .ox-process-showcase__rail {
        display: none;
    }

    .ox-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --space-section: 80px;
    }

    .ox-hero {
        min-height: 100dvh;
        padding-top: calc(var(--header-h) + 28px);
        padding-bottom: 48px;
    }

    .ox-hero__copy {
        padding: 22px 20px;
        max-width: none;
    }

    .ox-hero__title {
        font-size: clamp(1.75rem, 7vw, 2.35rem);
        max-width: none;
    }

    .ox-hero__sub {
        font-size: 1rem;
        max-width: none;
    }

    .ox-hero__float {
        display: none;
    }

    .ox-hero__scroll {
        display: none;
    }

    .ox-services__grid,
    .ox-why__grid,
    .ox-process__grid,
    .ox-cases__grid,
    .ox-product-cards,
    .ox-stats,
    .ox-about-values__grid,
    .ox-about-leaders__grid,
    .footer-grid,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .ox-process-showcase__timeline {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ox-process-showcase__head {
        margin-bottom: 36px;
    }

    .ox-process-showcase__card {
        align-items: stretch;
    }

    .ox-process-showcase__marker {
        align-self: flex-start;
    }

    .ox-process-showcase__cta {
        flex-direction: column;
        align-items: stretch;
        margin-top: 36px;
    }

    .ox-industries__head {
        margin-bottom: 24px;
        text-align: left;
    }

    .ox-industries__title {
        font-size: clamp(1.5rem, 7vw, 1.875rem);
        max-width: none;
    }

    .ox-industries__sub {
        font-size: 0.9375rem;
        max-width: none;
    }

    .ox-industries-slide {
        position: relative;
        inset: auto;
        display: none;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    .ox-industries-slide.is-active {
        display: grid;
    }

    .ox-industries-slide__media {
        order: -1;
    }

    .ox-industries-slide__copy {
        padding: 24px 20px 28px;
    }

    .ox-industries-slide__title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    .ox-industries-slide__media img {
        min-height: 220px;
        aspect-ratio: 16 / 10;
    }

    .ox-industries-slide__media::after {
        background: linear-gradient(180deg, transparent 55%, rgba(255, 255, 255, 0.25) 100%);
    }

    .ox-industries-slider__viewport {
        min-height: auto;
    }

    .ox-industries-slider__track {
        min-height: auto;
    }

    .ox-industries-slider__controls {
        padding: 14px 12px;
        gap: 10px;
    }

    .ox-industries-slider__dots {
        gap: 6px;
    }

    .ox-about-hero {
        min-height: auto;
        padding-bottom: 48px;
    }

    .ox-about-hero__title {
        font-size: clamp(2.25rem, 10vw, 3rem);
        max-width: none;
    }

    .ox-about-hero__bg {
        object-position: center 30%;
    }

    .ox-about-hero__overlay {
        background:
            linear-gradient(180deg, rgba(7, 7, 13, 0.94) 0%, rgba(7, 7, 13, 0.88) 100%),
            radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 192, 51, 0.12), transparent 70%);
    }

    .ox-about-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ox-about-hero__actions .btn {
        width: 100%;
    }

    .ox-about-value {
        padding: 24px 20px;
    }

    .ox-product__body {
        padding: 24px 20px 28px;
    }

    .ox-hero__actions,
    .ox-cta__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ox-hero__actions .btn,
    .ox-cta__actions .btn {
        width: 100%;
    }

    .nav-desktop {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .ox-hero .reveal,
    .ox-hero__visual.reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .ox-wwd-hero__video {
        display: none;
    }

    .ox-hero__ambient {
        background: #fafaf9;
    }

    .ox-hero__bg-video {
        filter: none;
        transform: none;
    }

    .ox-hero__orb {
        animation: none;
    }

    .ox-wwd-hero__media {
        background:
            #fafaf9 url('../img/generated/services-hero-poster.jpg') 72% center / cover no-repeat;
    }

    .ox-hero__frame,
    .ox-card,
    .ox-product,
    .ox-case,
    .ox-industries-slide__media img,
    .btn-primary {
        animation: none;
        transition: none;
    }

    .ox-trust__track {
        animation: none;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
        gap: 12px 24px;
    }

    .ox-trust__marquee {
        mask-image: none;
        -webkit-mask-image: none;
    }

    .ox-trust__list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 24px;
        padding: 0;
    }

    .ox-trust__list[aria-hidden="true"] {
        display: none;
    }
}

/* ========== Services — What we do (Thoughtworks-inspired) ========== */

.ox-wwd-hero {
    position: relative;
    min-height: min(92dvh, 920px);
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 48px) 0 80px;
    background: #fafaf9;
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
    isolation: isolate;
}

.ox-wwd-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.ox-wwd-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% center;
    transform: scale(1.02);
    filter: saturate(1.04) contrast(1.02);
}

.ox-wwd-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(250, 250, 249, 0.95) 0%, rgba(250, 250, 249, 0.86) 36%, rgba(250, 250, 249, 0.32) 60%, rgba(250, 250, 249, 0.14) 100%),
        linear-gradient(180deg, rgba(250, 250, 249, 0.5) 0%, transparent 26%, transparent 76%, rgba(250, 250, 249, 0.72) 100%),
        radial-gradient(ellipse 46% 52% at 80% 40%, rgba(255, 192, 51, 0.14), transparent 62%);
    pointer-events: none;
}

.ox-wwd-hero__inner {
    position: relative;
    z-index: 1;
}

.ox-wwd-hero .breadcrumb {
    margin-bottom: 28px;
}

.ox-wwd-hero .ox-section__eyebrow {
    margin-bottom: 16px;
}

.ox-wwd-hero__title {
    display: flex;
    flex-direction: column;
    gap: 0.08em;
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 7vw, 5.25rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.045em;
    max-width: 14ch;
    margin-bottom: 28px;
    color: var(--color-text);
}

.ox-wwd-hero__line--accent {
    color: #a16207;
}

.ox-wwd-hero__intro {
    max-width: 42rem;
    font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
    line-height: 1.75;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.ox-wwd-hero__pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 52rem;
    margin-bottom: 32px;
}

.ox-wwd-hero__pillar {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 18px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(12px);
    transition: border-color 0.2s var(--ease-out), transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.ox-wwd-hero__pillar:hover {
    border-color: rgba(255, 192, 51, 0.55);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.ox-wwd-hero__pillar-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #a16207;
}

.ox-wwd-hero__pillar-text {
    font-size: 0.9375rem;
    line-height: 1.45;
    color: var(--color-text-muted);
}

.ox-wwd-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.ox-wwd-pillars {
    padding-top: 80px;
}

.ox-wwd-pillars__head {
    max-width: 720px;
    margin-bottom: 40px;
}

.ox-wwd-tabs__nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-bottom: 48px;
    border-bottom: 1px solid var(--color-border);
}

.ox-wwd-tabs__btn {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 20px 8px 18px;
    text-align: left;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
    color: var(--color-text-subtle);
    transition: color 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}

.ox-wwd-tabs__btn:hover {
    color: var(--color-text);
}

.ox-wwd-tabs__btn.is-active {
    color: var(--color-text);
    border-bottom-color: var(--color-accent);
}

.ox-wwd-tabs__btn:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
}

.ox-wwd-tabs__index {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--color-accent);
}

.ox-wwd-tabs__label {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.4vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.ox-wwd-panel[hidden] {
    display: none;
}

.ox-wwd-panel__copy {
    max-width: 640px;
    margin-bottom: 40px;
}

.ox-wwd-panel__eyebrow {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.ox-wwd-panel__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}

.ox-wwd-panel__text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.ox-wwd-panel__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.ox-wwd-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.ox-wwd-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.ox-wwd-card__media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0a0a0a;
}

.ox-wwd-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.ox-wwd-card:hover .ox-wwd-card__media img {
    transform: scale(1.04);
}

.ox-wwd-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px 22px 24px;
}

.ox-wwd-card__category {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #a16207;
    margin-bottom: 10px;
}

.ox-wwd-card__title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.ox-wwd-card__title a:hover {
    color: #a16207;
}

.ox-wwd-card__text {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ox-wwd-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--color-text);
    transition: color 0.2s, gap 0.2s var(--ease-out);
}

.ox-wwd-card__link:hover {
    color: #a16207;
    gap: 12px;
}

.ox-wwd-capabilities__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--color-border-dark);
}

.ox-wwd-capabilities__item {
    border-bottom: 1px solid var(--color-border-dark);
}

.ox-wwd-capabilities__item:nth-child(odd) {
    border-right: 1px solid var(--color-border-dark);
}

.ox-wwd-capabilities__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 8px;
    font-family: var(--font-display);
    font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #fff;
    transition: color 0.2s, padding-left 0.25s var(--ease-out);
}

.ox-wwd-capabilities__link svg {
    flex-shrink: 0;
    opacity: 0.45;
    transition: opacity 0.2s, transform 0.25s var(--ease-out);
}

.ox-wwd-capabilities__link:hover {
    color: var(--color-accent-bright);
    padding-left: 12px;
}

.ox-wwd-capabilities__link:hover svg {
    opacity: 1;
    transform: translateX(4px);
}

.ox-wwd-method__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 48px 64px;
    align-items: start;
}

.ox-wwd-method__steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
}

.ox-wwd-method__step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    padding: 28px 0;
    border-top: 1px solid var(--color-border);
}

.ox-wwd-method__step:last-child {
    border-bottom: 1px solid var(--color-border);
}

.ox-wwd-method__num {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--color-accent);
    padding-top: 4px;
}

.ox-wwd-method__label {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.ox-wwd-method__text {
    color: var(--color-text-muted);
    line-height: 1.65;
}

@media (max-width: 1024px) {
    .ox-wwd-panel__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ox-wwd-method__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .ox-wwd-hero {
        min-height: auto;
        padding-bottom: 56px;
    }

    .ox-wwd-hero__video {
        transform: scale(1.06);
        object-position: center top;
        opacity: 0.5;
    }

    .ox-wwd-hero__overlay {
        background:
            linear-gradient(180deg, rgba(250, 250, 249, 0.9) 0%, rgba(250, 250, 249, 0.82) 48%, rgba(250, 250, 249, 0.94) 100%),
            radial-gradient(ellipse 70% 50% at 50% 20%, rgba(255, 192, 51, 0.1), transparent 60%);
    }

    .ox-wwd-hero__title {
        max-width: none;
    }

    .ox-wwd-hero__pillars {
        grid-template-columns: 1fr;
    }

    .ox-wwd-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ox-wwd-hero__actions .btn {
        width: 100%;
    }

    .ox-wwd-tabs__nav {
        grid-template-columns: 1fr;
        border-bottom: none;
        gap: 8px;
        margin-bottom: 32px;
    }

    .ox-wwd-tabs__btn {
        border: 1px solid var(--color-border);
        border-radius: var(--radius-md);
        padding: 14px 16px;
        margin-bottom: 0;
    }

    .ox-wwd-tabs__btn.is-active {
        border-color: var(--color-accent);
        background: rgba(255, 192, 51, 0.08);
    }

    .ox-wwd-panel__grid,
    .ox-wwd-capabilities__list {
        grid-template-columns: 1fr;
    }

    .ox-wwd-capabilities__item:nth-child(odd) {
        border-right: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ox-wwd-card,
    .ox-wwd-card__media img,
    .ox-wwd-card__link,
    .ox-wwd-capabilities__link,
    .ox-wwd-capabilities__link svg {
        transition: none;
    }

    .ox-wwd-card:hover {
        transform: none;
    }

    .ox-wwd-card:hover .ox-wwd-card__media img {
        transform: none;
    }
}

/* Inner-page compatibility (until product/service pages are redesigned) */
.clay-work__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.clay-work-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
}

.clay-work-card__media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0a0a0a;
}

.clay-work-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clay-work-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 16px 0;
}

.clay-work-card__tags span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-accent);
}

.clay-work-card__body {
    padding: 16px 20px 24px;
}

.clay-work-card__title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.clay-work-card__cta,
.clay-work__all,
.clay-cta__link {
    color: var(--color-text);
    font-weight: 600;
}

.clay-work-card__cta:hover,
.clay-work__all:hover,
.clay-cta__link:hover {
    color: var(--color-accent);
}

.clay-work__header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
    margin-bottom: 32px;
}

.clay-work__heading,
.clay-manifesto__title,
.clay-cta__title,
.clay-pillar__title {
    font-family: var(--font-display);
    font-weight: 700;
}

.clay-work__heading { font-size: 1.75rem; }
.clay-manifesto__title,
.clay-cta__title { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 16px; }
.clay-pillar__title { font-size: 1.125rem; margin-bottom: 10px; }

.clay-manifesto__text,
.clay-pillar__text {
    color: var(--color-text-muted);
    line-height: 1.7;
}

.clay-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.clay-stat__value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-accent);
}

.clay-stat__label { color: var(--color-text-muted); }

.clay-pillars__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.clay-pillar {
    padding: 28px;
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.clay-cta__inner { text-align: center; }
.clay-cta__contacts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .clay-stats,
    .clay-pillars__grid {
        grid-template-columns: 1fr;
    }
}

/* Solution pages — Jornaya & VC Dialer */
.ox-solution-hero {
    padding-top: calc(var(--header-h) + 48px);
    padding-bottom: 72px;
    background:
        radial-gradient(ellipse 60% 50% at 100% 0%, rgba(255, 192, 51, 0.1), transparent 55%),
        var(--color-bg-dark);
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ox-solution-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 48px 56px;
    align-items: center;
}

.ox-solution-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.2vw, 3.25rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
    margin: 12px 0 18px;
    max-width: 16ch;
}

.ox-solution-hero__sub {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
    max-width: 36em;
    margin-bottom: 24px;
}

.ox-solution-hero__points {
    display: grid;
    gap: 10px;
    margin-bottom: 28px;
}

.ox-solution-hero__points li {
    position: relative;
    padding-left: 22px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9875rem;
}

.ox-solution-hero__points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent-bright);
}

.ox-solution-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ox-solution-hero__visual {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.ox-solution-hero__visual img {
    width: 100%;
    display: block;
}

.ox-solution-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.ox-solution-usecases {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.ox-solution-usecase {
    padding: 28px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: #fff;
}

.ox-solution-usecase__title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.ox-solution-usecase__text {
    color: var(--color-text-muted);
    line-height: 1.65;
    font-size: 0.975rem;
}

.ox-solution-split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 48px;
    align-items: center;
}

.ox-solution-split__visual {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.ox-solution-split__visual img {
    width: 100%;
    display: block;
}

.ox-solution-faq {
    max-width: 820px;
}

.ox-solution-faq__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ox-solution-faq__item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ox-solution-faq__item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 0;
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 600;
    color: #fff;
}

.ox-solution-faq__item summary::-webkit-details-marker {
    display: none;
}

.ox-solution-faq__item summary::after {
    content: '+';
    float: right;
    color: var(--color-accent-bright);
    font-size: 1.25rem;
}

.ox-solution-faq__item[open] summary::after {
    content: '−';
}

.ox-solution-faq__answer {
    padding: 0 0 20px;
}

.ox-solution-faq__answer p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
    font-size: 0.975rem;
}

.ox-dialer__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ox-solutions__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.ox-solution-card {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    background: #fff;
}

.ox-solution-card:nth-child(even) {
    grid-template-columns: 1.05fr 0.95fr;
}

.ox-solution-card:nth-child(even) .ox-solution-card__media {
    order: 2;
}

.ox-solution-card__media {
    min-height: 240px;
    background: #0a0a0a;
    overflow: hidden;
}

.ox-solution-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ox-solution-card__body {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.ox-solution-card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.25;
}

.ox-solution-card__text {
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-bottom: 8px;
}

@media (max-width: 1100px) {
    .ox-solution-hero__grid,
    .ox-solution-split,
    .ox-solution-card,
    .ox-solution-card:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .ox-solution-card:nth-child(even) .ox-solution-card__media {
        order: 0;
    }

    .ox-solution-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .ox-solution-hero__title {
        max-width: none;
    }

    .ox-solution-features,
    .ox-solution-usecases,
    .ox-solutions__grid {
        grid-template-columns: 1fr;
    }

    .ox-solution-hero__actions,
    .ox-dialer__actions,
    .ox-featured-product__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ox-featured-product__content {
        padding: 28px 24px;
    }

}

/* ========== Nav — Services mega dropdown ========== */

.nav-item--dropdown {
    position: static;
}

.nav-link--dropdown {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-link__chevron {
    transition: transform 0.2s var(--ease-out);
}

.nav-item--dropdown.is-open .nav-link__chevron,
.nav-item--dropdown:hover .nav-link__chevron,
.nav-item--dropdown:focus-within .nav-link__chevron {
    transform: rotate(180deg);
}

.nav-mega {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    padding: 28px 0 32px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.22s var(--ease-out), transform 0.22s var(--ease-out), visibility 0.22s;
    pointer-events: none;
}

.site-header--dark .nav-mega {
    background: rgba(14, 14, 14, 0.98);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.nav-item--dropdown.is-open .nav-mega,
.nav-item--dropdown:hover .nav-mega,
.nav-item--dropdown:focus-within .nav-mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-mega__inner {
    display: grid;
    grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
    gap: 36px;
    align-items: start;
}

.nav-mega__eyebrow {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #a16207;
    margin-bottom: 14px;
}

.nav-mega__title {
    display: flex;
    flex-direction: column;
    gap: 0.04em;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 2.4vw, 2.25rem);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
}

.nav-mega__title-line--accent {
    color: #a16207;
}

.nav-mega__text {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--color-text-muted);
    margin-bottom: 18px;
}

.site-header--dark .nav-mega__text {
    color: var(--color-text-on-dark-muted);
}

.nav-mega__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 24px;
    transition: gap 0.2s var(--ease-out), color 0.2s;
}

.site-header--dark .nav-mega__cta {
    color: var(--color-text-on-dark);
}

.nav-mega__cta:hover {
    gap: 12px;
    color: #a16207;
}

.nav-mega__footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.site-header--dark .nav-mega__footer {
    border-top-color: rgba(255, 255, 255, 0.08);
}

.nav-mega__stat {
    font-size: 0.8125rem;
    color: var(--color-text-subtle);
}

.nav-mega__stat--highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--color-text);
}

.site-header--dark .nav-mega__stat--highlight {
    color: var(--color-text-on-dark);
}

.nav-mega__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.nav-mega__card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: rgba(250, 250, 249, 0.72);
    transition: border-color 0.2s var(--ease-out), transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.site-header--dark .nav-mega__card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

.nav-mega__card:hover {
    border-color: rgba(255, 192, 51, 0.45);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.nav-mega__icon {
    width: 36px;
    height: 36px;
    margin-bottom: 0;
}

.nav-mega__icon::after {
    inset: 9px;
}

.nav-mega__card-title {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

.site-header--dark .nav-mega__card-title {
    color: var(--color-text-on-dark);
}

.nav-mega__card-text {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--color-text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.site-header--dark .nav-mega__card-text {
    color: var(--color-text-on-dark-muted);
}

.nav-mobile-services {
    border-bottom: 1px solid var(--color-border);
}

.nav-mobile-link--summary {
    list-style: none;
    cursor: pointer;
}

.nav-mobile-link--summary::-webkit-details-marker {
    display: none;
}

.nav-mobile-link--summary::after {
    content: '+';
    float: right;
    font-size: 1.125rem;
    line-height: 1;
    color: var(--color-text-subtle);
}

.nav-mobile-services[open] .nav-mobile-link--summary::after {
    content: '−';
}

.nav-mobile-services__panel {
    padding: 0 0 16px;
}

.nav-mobile-services__eyebrow {
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #a16207;
    margin-bottom: 8px;
}

.nav-mobile-services__text {
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.nav-mobile-services__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 12px;
}

.nav-mobile-services__link {
    padding: 10px 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text);
    background: var(--color-surface-soft);
}

.nav-mobile-services__all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #a16207;
}

/* ========== Services page — SoftCodec-inspired layout ========== */

.ox-svc-hero {
    position: relative;
    min-height: auto;
    display: block;
    padding: calc(var(--header-h) + 28px) 0 40px;
    background: #fafaf9;
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
    isolation: isolate;
}

.ox-svc-hero--banner .ox-svc-hero__media {
    display: none;
}

.ox-svc-hero--cinematic {
    min-height: min(88dvh, 820px);
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 48px) 0 72px;
    background: var(--neon-bg, #07070d);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ox-svc-hero--cinematic .ox-svc-hero__title {
    font-size: clamp(2.75rem, 7vw, 5rem);
    max-width: 12ch;
    margin-bottom: 24px;
}

.ox-svc-hero--cinematic .ox-svc-hero__intro {
    font-size: clamp(1.0625rem, 1.6vw, 1.2rem);
    line-height: 1.75;
    margin-bottom: 28px;
}

.ox-svc-hero--cinematic .breadcrumb {
    margin-bottom: 28px;
}

/* Inner page cinematic hero — unified banner layout (all pages except home) */
body.is-inner .ox-svc-hero--cinematic .ox-svc-hero__image,
body.is-inner .ox-svc-hero--cinematic .ox-svc-hero__video {
    filter: saturate(1.35) contrast(1.1) brightness(0.78);
    opacity: 0.62;
}

body.is-inner .ox-svc-hero--cinematic .ox-svc-hero__overlay {
    background:
        linear-gradient(90deg, rgba(7, 7, 13, 0.94) 0%, rgba(7, 7, 13, 0.82) 36%, rgba(7, 7, 13, 0.42) 58%, rgba(7, 7, 13, 0.22) 100%),
        linear-gradient(180deg, rgba(7, 7, 13, 0.55) 0%, transparent 28%, transparent 72%, rgba(7, 7, 13, 0.88) 100%),
        radial-gradient(ellipse 46% 52% at 80% 40%, rgba(251, 191, 36, 0.16), transparent 62%),
        radial-gradient(ellipse 40% 40% at 18% 68%, rgba(255, 192, 51, 0.14), transparent 60%);
}

body.is-inner .ox-svc-hero--cinematic .ox-svc-hero__gridlines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.35;
    background:
        linear-gradient(rgba(255, 192, 51, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 192, 51, 0.08) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
}

body.is-inner .ox-svc-hero--cinematic .ox-svc-hero__blob--1 { background: rgba(255, 192, 51, 0.42); opacity: 0.9; }
body.is-inner .ox-svc-hero--cinematic .ox-svc-hero__blob--2 { background: rgba(249, 178, 51, 0.38); opacity: 0.9; }
body.is-inner .ox-svc-hero--cinematic .ox-svc-hero__blob--3 { background: rgba(251, 191, 36, 0.4); opacity: 0.9; }
body.is-inner .ox-svc-hero--cinematic .ox-svc-hero__blob--4 { background: rgba(74, 222, 128, 0.32); opacity: 0.9; }

body.is-inner .ox-svc-hero--cinematic .breadcrumb,
body.is-inner .ox-svc-hero--cinematic .breadcrumb span {
    color: var(--neon-subtle, rgba(255, 255, 255, 0.42));
}

body.is-inner .ox-svc-hero--cinematic .breadcrumb a:hover {
    color: var(--neon-cyan, var(--color-accent-bright));
}

body.is-inner .ox-svc-hero--cinematic .ox-svc-hero__title,
body.is-inner .ox-svc-hero--cinematic .ox-svc-hero__line {
    color: var(--neon-text, rgba(255, 255, 255, 0.92));
}

body.is-inner .ox-svc-hero--cinematic .ox-svc-hero__line--accent {
    background: linear-gradient(135deg, var(--neon-cyan, var(--color-accent-bright)) 0%, var(--neon-gold, #fbbf24) 48%, var(--neon-magenta, var(--color-accent)) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

body.is-inner .ox-svc-hero--cinematic .ox-svc-hero__intro {
    color: var(--neon-muted, rgba(255, 255, 255, 0.62));
}

body.is-inner .ox-svc-hero--cinematic .ox-svc-hero__intro a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

body.is-inner .ox-svc-hero--cinematic .ox-svc-hero__intro a:hover {
    color: var(--neon-cyan, var(--color-accent-bright));
}

body.is-inner .ox-svc-hero--cinematic .ox-svc-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    margin-bottom: 16px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 192, 51, 0.35);
    background: linear-gradient(135deg, rgba(255, 192, 51, 0.12), rgba(249, 178, 51, 0.1));
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--neon-cyan, var(--color-accent-bright));
    box-shadow: 0 0 20px rgba(255, 192, 51, 0.12);
}

body.is-inner .ox-svc-hero--cinematic .ox-svc-hero__eyebrow::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-cyan, var(--color-accent-bright)), var(--neon-magenta, var(--color-accent)));
    box-shadow: 0 0 12px var(--neon-cyan, var(--color-accent-bright));
}

body.is-inner .ox-svc-hero--cinematic .ox-svc-hero__stat {
    padding: 12px 18px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(160deg, #0a0a0a 0%, #141824 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

body.is-inner .ox-svc-hero--cinematic .ox-svc-hero__stat:nth-child(1) {
    border-color: rgba(255, 192, 51, 0.38);
    box-shadow: 0 0 20px rgba(255, 192, 51, 0.14);
}

body.is-inner .ox-svc-hero--cinematic .ox-svc-hero__stat:nth-child(2) {
    border-color: rgba(249, 178, 51, 0.38);
    box-shadow: 0 0 20px rgba(249, 178, 51, 0.14);
}

body.is-inner .ox-svc-hero--cinematic .ox-svc-hero__stat:nth-child(3) {
    border-color: rgba(251, 191, 36, 0.38);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.14);
}

body.is-inner .ox-svc-hero--cinematic .ox-svc-hero__stat strong {
    background: linear-gradient(135deg, #fff 0%, var(--color-accent-bright, #ffc033) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

body.is-inner .ox-svc-hero--cinematic .ox-svc-hero__stat span {
    color: rgba(255, 255, 255, 0.72);
}

body.is-inner .ox-svc-hero--cinematic .jornaya-feature-list li,
body.is-inner .ox-svc-hero--cinematic .ox-solution-hero__points li {
    color: var(--neon-muted, rgba(255, 255, 255, 0.62));
}

body.is-inner .ox-svc-hero--cinematic .jornaya-feature-list svg,
body.is-inner .ox-svc-hero--cinematic .ox-solution-hero__points li::before {
    color: var(--neon-cyan, var(--color-accent-bright));
}

body.is-inner .ox-svc-hero--cinematic .ox-contact-hero__trust {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

body.is-inner .ox-svc-hero--cinematic .ox-contact-hero__trust-label {
    color: var(--neon-subtle, rgba(255, 255, 255, 0.42));
}

body.is-inner .ox-svc-hero--cinematic .ox-contact-hero__trust-list li {
    color: rgba(255, 255, 255, 0.82);
    background: linear-gradient(160deg, #0a0a0a 0%, #141824 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

body.is-inner .ox-svc-hero--cinematic .ox-about-hero__trust {
    margin-top: 28px;
}

body.is-inner .ox-svc-hero--cinematic .ox-about-hero__trust-label {
    color: var(--neon-muted, rgba(255, 255, 255, 0.62));
}

body.is-inner .ox-svc-hero--cinematic .ox-about-hero__trust-label strong {
    color: #fff;
}

@media (max-width: 768px) {
    body.is-inner .ox-svc-hero--cinematic .ox-svc-hero__overlay {
        background:
            linear-gradient(180deg, rgba(7, 7, 13, 0.94) 0%, rgba(7, 7, 13, 0.88) 100%),
            radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 192, 51, 0.12), transparent 70%);
    }
}

.ox-svc-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
}

.ox-svc-hero__content {
    min-width: 0;
}

.ox-svc-hero__visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    max-height: 280px;
    border: 1px solid var(--color-border);
    background: var(--color-surface-muted);
    box-shadow: var(--shadow-sm);
}

.ox-svc-hero__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ox-svc-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.ox-svc-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% center;
    transform: scale(1.02);
    filter: saturate(1.04) contrast(1.02);
}

.ox-svc-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 68% center;
    transform: scale(1.02);
    filter: saturate(1.08) contrast(1.04);
}

.ox-svc-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(250, 250, 249, 0.96) 0%, rgba(250, 250, 249, 0.88) 38%, rgba(250, 250, 249, 0.34) 62%, rgba(250, 250, 249, 0.16) 100%),
        linear-gradient(180deg, rgba(250, 250, 249, 0.52) 0%, transparent 28%, transparent 76%, rgba(250, 250, 249, 0.74) 100%),
        radial-gradient(ellipse 46% 52% at 80% 40%, rgba(255, 192, 51, 0.14), transparent 62%);
    pointer-events: none;
}

.ox-svc-hero__blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.ox-svc-hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.7;
}

.ox-svc-hero__blob--1 {
    width: 280px;
    height: 280px;
    top: 12%;
    left: 58%;
}

.ox-svc-hero__blob--2 {
    width: 220px;
    height: 220px;
    top: 28%;
    right: 8%;
}

.ox-svc-hero__blob--3 {
    width: 200px;
    height: 200px;
    bottom: 18%;
    left: 42%;
}

.ox-svc-hero__blob--4 {
    width: 180px;
    height: 180px;
    bottom: 8%;
    right: 22%;
}

.ox-svc-hero__inner {
    position: relative;
    z-index: 1;
}

.ox-svc-hero .breadcrumb {
    margin-bottom: 20px;
}

.ox-svc-hero .ox-section__eyebrow {
    margin-bottom: 12px;
}

.ox-svc-hero__title {
    display: flex;
    flex-direction: column;
    gap: 0.04em;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.6vw, 2.75rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.035em;
    max-width: 14ch;
    margin-bottom: 16px;
    color: var(--color-text);
}

.ox-svc-hero__line--accent {
    color: #a16207;
}

.ox-svc-hero__intro {
    max-width: 36rem;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.ox-svc-hero__stats {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 10px;
    max-width: 32rem;
    margin-bottom: 20px;
}

.ox-svc-hero__stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1 1 0;
    min-width: 108px;
    max-width: 10.5rem;
    padding: 10px 12px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(160deg, #0a0a0a 0%, #141824 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.ox-svc-hero__stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.ox-svc-hero__stat span {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.72);
}

.ox-svc-hero__stat:nth-child(1) {
    border-color: rgba(255, 192, 51, 0.38);
    box-shadow: 0 0 20px rgba(255, 192, 51, 0.12);
}

.ox-svc-hero__stat:nth-child(2) {
    border-color: rgba(249, 178, 51, 0.38);
    box-shadow: 0 0 20px rgba(249, 178, 51, 0.12);
}

.ox-svc-hero__stat:nth-child(3) {
    border-color: rgba(251, 191, 36, 0.38);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.12);
}

.ox-svc-hero__stat:nth-child(1) strong {
    background: linear-gradient(135deg, var(--color-accent-bright), #ffd666);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ox-svc-hero__stat:nth-child(2) strong {
    background: linear-gradient(135deg, var(--color-accent), #f9b233);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ox-svc-hero__stat:nth-child(3) strong {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ox-svc-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.ox-svc-grid__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.ox-svc-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 24px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: #fff;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.ox-svc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 192, 51, 0.4);
}

.ox-svc-card__badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 5px 10px;
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #a16207;
    background: rgba(255, 192, 51, 0.16);
    border: 1px solid rgba(255, 192, 51, 0.28);
}

.ox-svc-card__icon {
    margin-bottom: 18px;
}

.ox-svc-card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.ox-svc-card__title a {
    color: inherit;
}

.ox-svc-card__title a:hover {
    color: #a16207;
}

.ox-svc-card__text {
    flex: 1;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--color-text-muted);
    margin-bottom: 18px;
}

.ox-svc-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    font-size: 0.875rem;
    font-weight: 700;
    color: #a16207;
    transition: gap 0.2s var(--ease-out), color 0.2s;
}

.ox-svc-card__link:hover {
    gap: 12px;
    color: var(--color-text);
}

.ox-svc-faq__layout {
    display: grid;
    grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}

.ox-svc-faq__item {
    border-bottom: 1px solid var(--color-border);
}

.ox-svc-faq__item:first-child {
    border-top: 1px solid var(--color-border);
}

.ox-svc-faq__item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
    list-style: none;
}

.ox-svc-faq__item summary::-webkit-details-marker {
    display: none;
}

.ox-svc-faq__item summary::after {
    content: '+';
    flex-shrink: 0;
    font-size: 1.25rem;
    line-height: 1;
    color: var(--color-text-subtle);
}

.ox-svc-faq__item[open] summary::after {
    content: '−';
}

.ox-svc-faq__answer {
    padding: 0 0 20px;
}

.ox-svc-faq__answer p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

@media (max-width: 1100px) {
    .nav-mega__inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .nav-mega__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ox-svc-grid__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-mega {
        display: none;
    }

    .ox-svc-hero {
        padding-bottom: 36px;
    }

    .ox-svc-hero__layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ox-svc-hero__visual {
        order: -1;
        max-height: 200px;
    }

    .ox-svc-hero__video {
        object-position: center;
    }

    .ox-svc-hero__overlay {
        background:
            linear-gradient(180deg, rgba(7, 7, 13, 0.94) 0%, rgba(7, 7, 13, 0.88) 100%),
            radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 192, 51, 0.12), transparent 70%);
    }

    .ox-svc-hero__stats {
        max-width: 100%;
        gap: 10px;
    }

    .ox-svc-hero__stat {
        flex: 1 1 calc(50% - 5px);
        max-width: none;
        min-width: 0;
    }

    .ox-svc-hero__stat:last-child:nth-child(odd) {
        flex-basis: 100%;
        max-width: calc(50% - 5px);
    }

    .ox-svc-grid__list,
    .ox-svc-faq__layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .nav-mobile-services__grid {
        grid-template-columns: 1fr;
    }
}

/* ========== Services — dark neon theme ========== */

:root {
    --neon-bg: #07070d;
    --neon-surface: #0f1118;
    --neon-surface-2: #141824;
    --neon-border: rgba(255, 255, 255, 0.1);
    --neon-text: rgba(255, 255, 255, 0.92);
    --neon-muted: rgba(255, 255, 255, 0.62);
    --neon-subtle: rgba(255, 255, 255, 0.42);
    --neon-cyan: var(--color-accent-bright);
    --neon-magenta: var(--color-accent-bright);
    --neon-green: var(--color-accent-bright);
    --neon-gold: var(--color-accent-bright);
    --neon-blue: var(--color-accent-bright);
}

body.is-services {
    background: var(--neon-bg);
    color: var(--neon-text);
}

body.is-services .ox-section__sub,
body.is-services .ox-svc-card__text,
body.is-services .ox-svc-faq__answer p {
    color: var(--neon-muted);
}

body.is-services .breadcrumb,
body.is-services .breadcrumb span {
    color: var(--neon-subtle);
}

body.is-services .breadcrumb a:hover {
    color: var(--neon-cyan);
}

/* —— Hero —— */
body.is-services .ox-svc-hero {
    background:
        radial-gradient(ellipse 80% 60% at 12% 18%, rgba(255, 192, 51, 0.14), transparent 55%),
        radial-gradient(ellipse 60% 50% at 88% 12%, rgba(249, 178, 51, 0.12), transparent 50%),
        radial-gradient(ellipse 50% 45% at 72% 82%, rgba(251, 191, 36, 0.1), transparent 55%),
        var(--neon-bg);
    border-bottom-color: var(--neon-border);
}

body.is-services .ox-svc-hero__video {
    filter: saturate(1.5) contrast(1.12) brightness(0.72);
    opacity: 0.55;
}

body.is-services .ox-svc-hero--cinematic .ox-svc-hero__image,
body.is-services .ox-svc-hero--cinematic .ox-svc-hero__video {
    filter: saturate(1.35) contrast(1.1) brightness(0.78);
    opacity: 0.62;
}

body.is-services .ox-svc-hero--cinematic .ox-svc-hero__overlay {
    background:
        linear-gradient(90deg, rgba(7, 7, 13, 0.94) 0%, rgba(7, 7, 13, 0.82) 36%, rgba(7, 7, 13, 0.42) 58%, rgba(7, 7, 13, 0.22) 100%),
        linear-gradient(180deg, rgba(7, 7, 13, 0.55) 0%, transparent 28%, transparent 72%, rgba(7, 7, 13, 0.88) 100%),
        radial-gradient(ellipse 46% 52% at 80% 40%, rgba(251, 191, 36, 0.16), transparent 62%),
        radial-gradient(ellipse 40% 40% at 18% 68%, rgba(255, 192, 51, 0.14), transparent 60%);
}

body.is-services .ox-svc-hero__gridlines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.35;
    background:
        linear-gradient(rgba(255, 192, 51, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 192, 51, 0.08) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
}

body.is-services .ox-svc-hero__blob--1 { background: rgba(255, 192, 51, 0.42); opacity: 0.9; }
body.is-services .ox-svc-hero__blob--2 { background: rgba(249, 178, 51, 0.38); opacity: 0.9; }
body.is-services .ox-svc-hero__blob--3 { background: rgba(251, 191, 36, 0.4); opacity: 0.9; }
body.is-services .ox-svc-hero__blob--4 { background: rgba(255, 192, 51, 0.32); opacity: 0.9; }

body.is-services .ox-svc-hero__title,
body.is-services .ox-svc-hero__line {
    color: var(--neon-text);
}

body.is-services .ox-svc-hero__line--accent {
    background: linear-gradient(135deg, #fff 0%, var(--color-accent-bright) 55%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 0 24px rgba(255, 192, 51, 0.25));
}

body.is-services .ox-svc-hero__intro {
    color: var(--neon-muted);
}

body.is-services .ox-svc-section__eyebrow,
body.is-services .ox-svc-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    margin-bottom: 16px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 192, 51, 0.35);
    background: linear-gradient(135deg, rgba(255, 192, 51, 0.12), rgba(249, 178, 51, 0.1));
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent-bright);
    box-shadow: 0 0 20px rgba(255, 192, 51, 0.12);
}

body.is-services .ox-svc-section__eyebrow::before,
body.is-services .ox-svc-hero__eyebrow::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent-bright), var(--color-accent));
    box-shadow: 0 0 12px var(--color-accent-bright);
}

body.is-services .ox-svc-section__eyebrow--light {
    border-color: rgba(251, 191, 36, 0.35);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.16), rgba(255, 192, 51, 0.14));
    color: var(--neon-gold);
}

body.is-services .ox-svc-hero__stat {
    padding: 12px 18px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(160deg, #0a0a0a 0%, #141824 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

body.is-services .ox-svc-hero__stat:nth-child(1),
body.is-services .ox-svc-hero__stat:nth-child(2),
body.is-services .ox-svc-hero__stat:nth-child(3) {
    border-color: rgba(255, 192, 51, 0.35);
    box-shadow: 0 0 24px rgba(255, 192, 51, 0.12);
}

body.is-services .ox-svc-hero__stat strong {
    background: linear-gradient(135deg, #fff 0%, var(--color-accent-bright) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

body.is-services .ox-svc-hero__stat span {
    color: rgba(255, 255, 255, 0.72);
}

/* —— Grid —— */
body.is-services .ox-svc-grid {
    background:
        radial-gradient(ellipse 70% 50% at 0% 0%, rgba(255, 192, 51, 0.1), transparent 55%),
        radial-gradient(ellipse 60% 45% at 100% 20%, rgba(249, 178, 51, 0.08), transparent 50%),
        var(--neon-bg);
}

body.is-services .ox-svc-grid__bg {
    background:
        linear-gradient(90deg, transparent 0%, rgba(255, 192, 51, 0.04) 50%, transparent 100%),
        repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255, 192, 51, 0.03) 40px, rgba(255, 192, 51, 0.03) 41px);
}

body.is-services .ox-svc-grid__title,
body.is-services .ox-section__title {
    color: var(--neon-text);
}

body.is-services .ox-svc-grid__title {
    background: linear-gradient(135deg, #fff 0%, var(--color-accent-bright) 55%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* —— Cards —— */
body.is-services .ox-svc-card {
    --svc-accent: var(--color-accent-bright);
    --svc-soft: rgba(255, 192, 51, 0.14);
    --svc-border: rgba(255, 192, 51, 0.32);
    --svc-shadow: rgba(255, 192, 51, 0.22);
    --svc-glow: rgba(255, 192, 51, 0.35);
    overflow: hidden;
    border: 1px solid var(--neon-border);
    background: linear-gradient(160deg, rgba(20, 24, 36, 0.95) 0%, rgba(15, 17, 24, 0.88) 100%);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

body.is-services .ox-svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-accent-bright);
    box-shadow: 0 0 16px rgba(255, 192, 51, 0.4);
}

body.is-services .ox-svc-card::after {
    content: '';
    position: absolute;
    inset: auto -30% -40% auto;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--svc-glow, rgba(255, 192, 51, 0.15));
    filter: blur(28px);
    pointer-events: none;
    transition: transform 0.35s var(--ease-out), opacity 0.35s;
}

body.is-services .ox-svc-card:hover {
    transform: translateY(-4px);
    border-color: var(--svc-border, rgba(255, 192, 51, 0.45));
    box-shadow: 0 0 0 1px var(--svc-border, rgba(255, 192, 51, 0.2)), 0 20px 48px var(--svc-shadow, rgba(255, 192, 51, 0.18));
}

body.is-services .ox-svc-card:hover::after {
    transform: scale(1.25);
    opacity: 1;
}

body.is-services .ox-svc-card__title a {
    color: var(--neon-text);
}

body.is-services .ox-svc-card__title a:hover {
    color: var(--color-accent-bright);
    text-shadow: 0 0 20px rgba(255, 192, 51, 0.35);
}

body.is-services .ox-svc-card .ox-card__icon {
    background: linear-gradient(135deg, var(--svc-soft, rgba(255, 192, 51, 0.2)), rgba(7, 7, 13, 0.95));
    box-shadow: 0 0 20px var(--svc-glow, rgba(255, 192, 51, 0.15));
    color: var(--svc-accent, var(--color-accent-bright));
}

body.is-services .ox-svc-card .ox-card__icon::after {
    border-color: var(--svc-accent, var(--color-accent-bright));
    box-shadow: 0 0 8px var(--svc-glow, rgba(255, 192, 51, 0.3));
}

body.is-services .ox-svc-card__badge {
    color: var(--color-accent-bright);
    background: rgba(255, 192, 51, 0.12);
    border: 1px solid rgba(255, 192, 51, 0.35);
    box-shadow: 0 0 14px rgba(255, 192, 51, 0.2);
}

body.is-services .ox-svc-card__link {
    color: var(--color-accent-bright);
}

body.is-services .ox-svc-card__link:hover {
    color: #fff;
    text-shadow: 0 0 16px rgba(255, 192, 51, 0.4);
}

/* —— FAQ —— */
body.is-services .ox-svc-faq {
    background:
        radial-gradient(ellipse 55% 45% at 0% 100%, rgba(255, 192, 51, 0.1), transparent 55%),
        radial-gradient(ellipse 50% 40% at 100% 0%, rgba(249, 178, 51, 0.08), transparent 50%),
        linear-gradient(180deg, #0a0c14 0%, var(--neon-bg) 100%);
}

body.is-services .ox-svc-faq__bg {
    background: repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(255, 192, 51, 0.04) 80px, rgba(255, 192, 51, 0.04) 81px);
}

body.is-services .ox-svc-faq__intro-card {
    padding: 32px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 192, 51, 0.22);
    background:
        linear-gradient(145deg, rgba(20, 24, 36, 0.95), rgba(15, 17, 24, 0.9)),
        linear-gradient(135deg, rgba(255, 192, 51, 0.08), rgba(249, 178, 51, 0.08));
    box-shadow: 0 0 40px rgba(255, 192, 51, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

body.is-services .ox-svc-faq__list {
    padding: 8px 24px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--neon-border);
    background: rgba(15, 17, 24, 0.88);
    backdrop-filter: blur(12px);
    box-shadow: 0 0 32px rgba(0, 0, 0, 0.35);
}

body.is-services .ox-svc-faq__item {
    border-bottom-color: var(--neon-border);
}

body.is-services .ox-svc-faq__item:first-child {
    border-top-color: var(--neon-border);
}

body.is-services .ox-svc-faq__item summary {
    color: var(--neon-text);
}

body.is-services .ox-svc-faq__item summary::after {
    color: var(--color-accent-bright);
}

body.is-services .ox-svc-faq__item--1[open] summary,
body.is-services .ox-svc-faq__item--1 summary:hover,
body.is-services .ox-svc-faq__item--2[open] summary,
body.is-services .ox-svc-faq__item--2 summary:hover,
body.is-services .ox-svc-faq__item--3[open] summary,
body.is-services .ox-svc-faq__item--3 summary:hover,
body.is-services .ox-svc-faq__item--4[open] summary,
body.is-services .ox-svc-faq__item--4 summary:hover { color: var(--color-accent-bright); }

/* —— CTA —— */
body.is-services .ox-cta--colorful {
    color: #fff;
    border-top: 1px solid var(--neon-border);
    background:
        radial-gradient(ellipse 70% 80% at 20% 120%, rgba(255, 192, 51, 0.28), transparent 55%),
        radial-gradient(ellipse 60% 70% at 80% -20%, rgba(249, 178, 51, 0.24), transparent 50%),
        radial-gradient(ellipse 50% 50% at 50% 50%, rgba(251, 191, 36, 0.12), transparent 60%),
        linear-gradient(135deg, #07070d 0%, #0a0a0a 50%, #0a0a0a 100%);
}

body.is-services .ox-cta--colorful .ox-cta__mesh {
    background:
        linear-gradient(90deg, transparent, rgba(255, 192, 51, 0.06), transparent),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 3px);
}

body.is-services .ox-cta--colorful .ox-cta__title {
    background: linear-gradient(135deg, #fff 0%, var(--color-accent-bright) 55%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 20px rgba(255, 192, 51, 0.2));
}

body.is-services .ox-cta--colorful .ox-cta__text,
body.is-services .ox-cta--colorful .ox-cta__contacts a {
    color: var(--neon-muted);
}

body.is-services .ox-cta--colorful .ox-cta__contacts a:hover {
    color: var(--color-accent-bright);
}

/* —— Nav mega menu (neon dark) —— */
.nav-mega {
    position: absolute;
    background:
        radial-gradient(ellipse 50% 80% at 0% 0%, rgba(255, 192, 51, 0.12), transparent 55%),
        radial-gradient(ellipse 40% 60% at 100% 100%, rgba(249, 178, 51, 0.1), transparent 50%),
        rgba(10, 11, 18, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55), 0 0 60px rgba(255, 192, 51, 0.06);
}

.site-header--light .nav-mega {
    background:
        radial-gradient(ellipse 50% 80% at 0% 0%, rgba(255, 192, 51, 0.1), transparent 55%),
        radial-gradient(ellipse 40% 60% at 100% 100%, rgba(249, 178, 51, 0.08), transparent 50%),
        rgba(10, 11, 18, 0.98);
}

.nav-mega__rainbow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent-bright), var(--color-accent), var(--color-accent-bright));
    background-size: 200% 100%;
    animation: ox-mega-rainbow 6s linear infinite;
    box-shadow: 0 0 16px rgba(255, 192, 51, 0.45);
}

@keyframes ox-mega-rainbow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.nav-mega__eyebrow {
    color: var(--color-accent-bright);
}

.nav-mega__title-line {
    color: var(--neon-text);
}

.nav-mega__title-line--accent {
    background: linear-gradient(135deg, #fff, var(--color-accent-bright), var(--color-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-mega__text {
    color: var(--neon-muted);
}

.nav-mega__cta {
    padding: 8px 14px;
    border-radius: var(--radius-full);
    color: var(--neon-text);
    background: linear-gradient(135deg, rgba(255, 192, 51, 0.14), rgba(249, 178, 51, 0.12));
    border: 1px solid rgba(255, 192, 51, 0.28);
    box-shadow: 0 0 20px rgba(255, 192, 51, 0.1);
}

.nav-mega__cta:hover {
    color: var(--color-accent-bright);
    box-shadow: 0 0 24px rgba(255, 192, 51, 0.2);
}

.nav-mega__footer {
    border-top-color: var(--neon-border);
}

.nav-mega__stat {
    color: var(--neon-subtle);
}

.nav-mega__stat--highlight {
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    color: var(--neon-text);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.12), rgba(255, 192, 51, 0.1));
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.nav-mega__stat-icon {
    color: var(--color-accent-bright);
    filter: drop-shadow(0 0 6px rgba(255, 192, 51, 0.5));
}

.nav-mega__intro {
    padding: 20px 22px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 192, 51, 0.18);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
        linear-gradient(135deg, rgba(255, 192, 51, 0.08), rgba(249, 178, 51, 0.08));
}

.nav-mega__card {
    position: relative;
    overflow: hidden;
    --svc-accent: var(--color-accent-bright);
    --svc-soft: rgba(255, 192, 51, 0.1);
    --svc-border: rgba(255, 192, 51, 0.28);
    --svc-glow: rgba(255, 192, 51, 0.25);
    border: 1px solid var(--neon-border);
    background: linear-gradient(160deg, rgba(20, 24, 36, 0.92), rgba(15, 17, 24, 0.88));
}

.nav-mega__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-accent-bright);
    box-shadow: 0 0 12px rgba(255, 192, 51, 0.3);
}

.nav-mega__card {
    border-color: var(--svc-border);
    background: linear-gradient(160deg, rgba(20, 24, 36, 0.92), var(--svc-soft));
}

.nav-mega__card:hover {
    border-color: var(--svc-accent);
    box-shadow: 0 0 28px var(--svc-glow);
    transform: translateY(-2px);
}

.nav-mega__card-title {
    color: var(--neon-text);
}

.nav-mega__card-text {
    color: var(--neon-muted);
}

.nav-mega__card .ox-card__icon {
    background: linear-gradient(135deg, var(--svc-soft), rgba(7, 7, 13, 0.95));
    box-shadow: 0 0 16px var(--svc-glow);
    color: var(--color-accent-bright);
}

.nav-mega__card .ox-card__icon::after {
    border-color: var(--svc-accent);
}

/* —— Mobile services panel —— */
body.is-services .nav-mobile-services__panel,
.nav-mobile-services__panel {
    padding: 14px;
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, rgba(20, 24, 36, 0.95), rgba(15, 17, 24, 0.9));
    border: 1px solid var(--neon-border);
}

body.is-services .nav-mobile-services__eyebrow,
.nav-mobile-services__eyebrow {
    color: var(--color-accent-bright);
}

body.is-services .nav-mobile-services__text,
.nav-mobile-services__text {
    color: var(--neon-muted);
}

body.is-services .nav-mobile-services__link,
.nav-mobile-services__link {
    --svc-accent: var(--color-accent-bright);
    --svc-soft: rgba(255, 192, 51, 0.08);
    border: 1px solid var(--neon-border);
    border-left: 3px solid var(--color-accent-bright);
    background: linear-gradient(90deg, rgba(255, 192, 51, 0.08), rgba(15, 17, 24, 0.92));
    color: var(--neon-text);
}

body.is-services .nav-mobile-services__all,
.nav-mobile-services__all {
    color: var(--color-accent-bright);
}

@media (prefers-reduced-motion: reduce) {
    body.is-services .ox-svc-hero__blob,
    .nav-mega__rainbow {
        animation: none;
    }
}

@media (max-width: 768px) {
    body.is-services .ox-svc-hero__overlay {
        background:
            linear-gradient(180deg, rgba(7, 7, 13, 0.94) 0%, rgba(7, 7, 13, 0.88) 100%),
            radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 192, 51, 0.12), transparent 70%);
    }

    body.is-services .ox-svc-hero__stats {
        max-width: 100%;
        gap: 10px;
    }

    body.is-services .ox-svc-hero__stat {
        flex: 1 1 calc(50% - 5px);
        max-width: none;
        min-width: 0;
    }

    body.is-services .ox-svc-hero__stat:last-child:nth-child(odd) {
        flex-basis: 100%;
        max-width: calc(50% - 5px);
    }

    body.is-services .ox-svc-faq__intro-card {
        padding: 24px;
    }

    body.is-services .ox-svc-faq__list {
        padding: 4px 16px;
    }
}

/* Services — light page canvas, black neon boxes only */

body.is-services {
    background: #ffffff;
    color: var(--color-text);
}

body.is-services .ox-section__sub {
    color: var(--color-text-muted);
}

body.is-services .breadcrumb,
body.is-services .breadcrumb span {
    color: var(--color-text-subtle);
}

body.is-services .breadcrumb a:hover {
    color: var(--color-accent-bright);
}

/* Cinematic hero — restore dark-theme text over full-bleed background */
body.is-services .ox-svc-hero--cinematic .breadcrumb,
body.is-services .ox-svc-hero--cinematic .breadcrumb span {
    color: var(--neon-subtle);
}

body.is-services .ox-svc-hero--cinematic .breadcrumb a:hover {
    color: var(--color-accent-bright);
}

body.is-services .ox-svc-hero--cinematic .ox-svc-hero__title,
body.is-services .ox-svc-hero--cinematic .ox-svc-hero__line {
    color: var(--neon-text);
}

body.is-services .ox-svc-hero--cinematic .ox-svc-hero__line--accent {
    background: linear-gradient(135deg, #fff 0%, var(--color-accent-bright) 55%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

body.is-services .ox-svc-hero--cinematic .ox-svc-hero__intro {
    color: var(--neon-muted);
}

body.is-services .ox-svc-grid {
    background:
        radial-gradient(ellipse 70% 50% at 0% 0%, rgba(255, 192, 51, 0.06), transparent 55%),
        radial-gradient(ellipse 60% 45% at 100% 20%, rgba(249, 178, 51, 0.05), transparent 50%),
        #ffffff;
}

body.is-services .ox-svc-grid__bg {
    background:
        linear-gradient(90deg, transparent 0%, rgba(255, 192, 51, 0.03) 50%, transparent 100%),
        repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255, 192, 51, 0.02) 40px, rgba(255, 192, 51, 0.02) 41px);
}

body.is-services .ox-section__title {
    color: var(--color-text);
}

body.is-services .ox-svc-grid__title {
    background: linear-gradient(135deg, #0a0a0a 0%, var(--color-accent-bright) 55%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

body.is-services .ox-svc-card {
    background: linear-gradient(160deg, #0a0a0a 0%, #0a0a0a 100%);
    border-color: rgba(255, 255, 255, 0.12);
}

body.is-services .ox-svc-card__title a {
    color: rgba(255, 255, 255, 0.95);
}

body.is-services .ox-svc-card__text {
    color: rgba(255, 255, 255, 0.72);
}

body.is-services .ox-svc-card__link {
    color: var(--color-accent-bright);
}

body.is-services .ox-svc-faq {
    background:
        radial-gradient(ellipse 55% 45% at 0% 100%, rgba(255, 192, 51, 0.06), transparent 55%),
        radial-gradient(ellipse 50% 40% at 100% 0%, rgba(249, 178, 51, 0.05), transparent 50%),
        #f5f5f4;
}

body.is-services .ox-svc-faq__bg {
    background: repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(255, 192, 51, 0.03) 80px, rgba(255, 192, 51, 0.03) 81px);
}

body.is-services .ox-svc-faq__intro-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(160deg, #0a0a0a 0%, #111118 100%);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.24);
    color: rgba(255, 255, 255, 0.92);
}

body.is-services .ox-svc-faq__intro-card .ox-section__title,
body.is-products .ox-svc-faq__intro-card .ox-section__title,
body.is-industries .ox-svc-faq__intro-card .ox-section__title {
    color: rgba(255, 255, 255, 0.95);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    filter: none;
}

body.is-services .ox-svc-faq__intro-card .ox-section__sub,
body.is-products .ox-svc-faq__intro-card .ox-section__sub,
body.is-industries .ox-svc-faq__intro-card .ox-section__sub {
    color: rgba(255, 255, 255, 0.72);
}

body.is-services .ox-svc-faq__list {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(160deg, #0a0a0a 0%, #111118 100%);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.24);
}

body.is-services .ox-svc-faq__item {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.is-services .ox-svc-faq__item:first-child {
    border-top-color: rgba(255, 255, 255, 0.1);
}

body.is-services .ox-svc-faq__item summary {
    color: rgba(255, 255, 255, 0.92);
}

body.is-services .ox-svc-faq__item summary::after {
    color: rgba(255, 255, 255, 0.55);
}

body.is-services .ox-svc-faq__answer p {
    color: rgba(255, 255, 255, 0.72);
}

body.is-services .ox-svc-faq__item--1[open] summary,
body.is-services .ox-svc-faq__item--1 summary:hover,
body.is-services .ox-svc-faq__item--2[open] summary,
body.is-services .ox-svc-faq__item--2 summary:hover,
body.is-services .ox-svc-faq__item--3[open] summary,
body.is-services .ox-svc-faq__item--3 summary:hover,
body.is-services .ox-svc-faq__item--4[open] summary,
body.is-services .ox-svc-faq__item--4 summary:hover { color: var(--color-accent-bright); }

body.is-services .ox-svc-faq__item[open] {
    border-left: none;
    box-shadow: none;
}

body.is-services .ox-cta--colorful {
    color: var(--color-text);
    border-top: 1px solid var(--color-border);
    background:
        radial-gradient(ellipse 60% 50% at 50% 100%, rgba(255, 192, 51, 0.1), transparent 60%),
        radial-gradient(ellipse 50% 40% at 0% 0%, rgba(249, 178, 51, 0.06), transparent 50%),
        var(--color-surface-soft);
}

body.is-services .ox-cta--colorful .ox-cta__mesh {
    background: linear-gradient(90deg, transparent, rgba(255, 192, 51, 0.04), transparent);
}

body.is-services .ox-cta--colorful .ox-cta__title {
    background: linear-gradient(135deg, #0a0a0a 0%, var(--color-link) 45%, #a16207 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: none;
}

body.is-services .ox-cta--colorful .ox-cta__text,
body.is-services .ox-cta--colorful .ox-cta__contacts a {
    color: var(--color-text-muted);
}

body.is-services .ox-cta--colorful .ox-cta__contacts a:hover {
    color: var(--color-link);
}

body.is-industries .ox-ind-why__card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(160deg, #0a0a0a 0%, #111118 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    backdrop-filter: none;
}

body.is-industries .ox-ind-why__index {
    color: rgba(255, 255, 255, 0.55);
}

body.is-industries .ox-ind-why__icon {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-accent-bright);
}

body.is-industries .ox-ind-why__card-title {
    color: rgba(255, 255, 255, 0.95);
}

body.is-industries .ox-ind-why__card-text {
    color: rgba(255, 255, 255, 0.72);
}

body.is-industries .ox-ind-page-card {
    border-color: rgba(255, 255, 255, 0.12);
    background: linear-gradient(160deg, #0a0a0a 0%, #111118 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

body.is-industries .ox-ind-page-card__title,
body.is-industries .ox-ind-page-card__title a {
    color: rgba(255, 255, 255, 0.95);
}

body.is-industries .ox-ind-page-card__title a:hover {
    color: var(--color-accent-bright);
}

body.is-industries .ox-ind-page-card__tagline {
    color: var(--color-accent-bright);
}

body.is-industries .ox-ind-page-card__text {
    color: rgba(255, 255, 255, 0.72);
}

body.is-industries .ox-ind-page-card__link {
    color: var(--color-accent-bright);
}

/* Industries page */
body.is-industries {
    background: #fafaf9;
    --ind-section-pad: clamp(44px, 5vw, 68px);
}

body.is-industries .ox-section {
    padding-block: var(--ind-section-pad);
}

body.is-industries .ox-ind-why {
    padding-block: var(--ind-section-pad);
    border-top: none;
}

body.is-industries .ox-svc-hero--cinematic {
    padding-bottom: clamp(40px, 5vw, 56px);
}

body.is-industries .ox-section__head {
    margin-bottom: clamp(24px, 3.5vw, 36px);
}

body.is-industries .ox-svc-faq__layout {
    gap: clamp(20px, 3vw, 32px);
}

/* Light section headings */
body.is-industries .ox-section__head .ox-section__title,
body.is-industries .ox-ind-why__title {
    color: #0a0a0a;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    filter: none;
}

body.is-industries .ox-section__head .ox-section__sub,
body.is-industries .ox-ind-why__sub {
    color: rgba(10, 10, 10, 0.72);
}

body.is-industries .ox-section__head .ox-svc-section__eyebrow,
body.is-industries .ox-ind-why__eyebrow {
    color: #a16207;
    border-color: rgba(161, 98, 7, 0.28);
    background: linear-gradient(135deg, rgba(255, 192, 51, 0.1), rgba(161, 98, 7, 0.08));
    box-shadow: none;
}

body.is-industries .ox-section__head .ox-svc-section__eyebrow::before,
body.is-industries .ox-ind-why__eyebrow::before {
    background: linear-gradient(135deg, #a16207, #d97706);
    box-shadow: none;
}

/* FAQ — dark boxes, readable text */
body.is-industries .ox-svc-faq__intro-card .ox-svc-section__eyebrow {
    color: var(--color-accent-bright);
    border-color: rgba(255, 192, 51, 0.35);
    background: linear-gradient(135deg, rgba(255, 192, 51, 0.12), rgba(249, 178, 51, 0.1));
}

body.is-industries .ox-svc-faq__item summary {
    color: rgba(255, 255, 255, 0.92);
}

body.is-industries .ox-svc-faq__item summary::after {
    color: rgba(255, 255, 255, 0.55);
}

body.is-industries .ox-svc-faq__answer p {
    color: rgba(255, 255, 255, 0.72);
}

body.is-industries .ox-svc-faq__item[open] {
    border-left: none;
    box-shadow: none;
}

body.is-industries .ox-svc-faq__item--1[open] summary,
body.is-industries .ox-svc-faq__item--1 summary:hover,
body.is-industries .ox-svc-faq__item--2[open] summary,
body.is-industries .ox-svc-faq__item--2 summary:hover,
body.is-industries .ox-svc-faq__item--3[open] summary,
body.is-industries .ox-svc-faq__item--3 summary:hover,
body.is-industries .ox-svc-faq__item--4[open] summary,
body.is-industries .ox-svc-faq__item--4 summary:hover {
    color: var(--color-accent-bright);
}

/* Products FAQ — dark boxes, readable text, no accent rail */
body.is-products .ox-svc-faq__intro-card {
    padding: 32px;
    border-radius: var(--radius-xl);
}

body.is-products .ox-svc-faq__intro-card .ox-svc-section__eyebrow {
    color: var(--color-accent-bright);
    border-color: rgba(255, 192, 51, 0.35);
    background: linear-gradient(135deg, rgba(255, 192, 51, 0.12), rgba(249, 178, 51, 0.1));
    box-shadow: none;
}

body.is-products .ox-svc-faq__intro-card .ox-svc-section__eyebrow::before {
    background: var(--color-accent-bright);
    box-shadow: 0 0 10px rgba(255, 192, 51, 0.35);
}

body.is-products .ox-svc-faq__intro-card .ox-section__title,
body.is-products .ox-svc-faq__intro-card h2#products-faq-heading {
    color: #fff;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    filter: none;
}

body.is-products .ox-svc-faq__intro-card .ox-section__sub {
    color: rgba(255, 255, 255, 0.78);
}

body.is-products .ox-svc-faq__list {
    padding: 8px 24px;
    border-radius: var(--radius-xl);
}

body.is-products .ox-svc-faq__item {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.is-products .ox-svc-faq__item:first-child {
    border-top-color: rgba(255, 255, 255, 0.1);
}

body.is-products .ox-svc-faq__item summary {
    color: rgba(255, 255, 255, 0.92);
}

body.is-products .ox-svc-faq__item summary::after {
    color: rgba(255, 255, 255, 0.55);
}

body.is-products .ox-svc-faq__answer p {
    color: rgba(255, 255, 255, 0.78);
}

body.is-products .ox-svc-faq__item[open],
body.is-products .ox-svc-faq__item[open] summary,
body.is-products .ox-svc-faq__item[open] .ox-svc-faq__answer {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    box-shadow: none;
}

body.is-products .ox-svc-faq__item--1[open] summary,
body.is-products .ox-svc-faq__item--1 summary:hover,
body.is-products .ox-svc-faq__item--2[open] summary,
body.is-products .ox-svc-faq__item--2 summary:hover,
body.is-products .ox-svc-faq__item--3[open] summary,
body.is-products .ox-svc-faq__item--3 summary:hover,
body.is-products .ox-svc-faq__item--4[open] summary,
body.is-products .ox-svc-faq__item--4 summary:hover {
    color: var(--color-accent-bright);
}

/* CTA band */
body.is-industries .ox-ind-page-cta__inner {
    background: linear-gradient(160deg, #0a0a0a 0%, #111118 100%);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

body.is-industries .ox-ind-page-cta .ox-section__title {
    color: rgba(255, 255, 255, 0.95);
}

body.is-industries .ox-ind-page-cta .ox-section__sub {
    color: rgba(255, 255, 255, 0.72);
}

body.is-industries .ox-ind-page-cta .ox-svc-section__eyebrow {
    color: var(--color-accent-bright);
    border-color: rgba(255, 192, 51, 0.35);
    background: linear-gradient(135deg, rgba(255, 192, 51, 0.12), rgba(249, 178, 51, 0.1));
}

body.is-industries .ox-ind-page-cta .btn-ghost {
    color: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.06);
}

body.is-industries .ox-ind-page-cta .btn-ghost:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.12);
}

body.is-industries .ox-ind-hero {
    background:
        radial-gradient(ellipse 70% 55% at 12% 20%, rgba(255, 192, 51, 0.12), transparent 55%),
        radial-gradient(ellipse 55% 45% at 88% 15%, rgba(255, 192, 51, 0.1), transparent 50%),
        var(--neon-bg);
}

body.is-industries .ox-ind-hero .ox-svc-hero__image {
    object-position: center center;
}

body.is-industries .ox-ind-hero .ox-svc-hero__overlay {
    background:
        linear-gradient(90deg, rgba(7, 7, 13, 0.97) 0%, rgba(7, 7, 13, 0.9) 32%, rgba(7, 7, 13, 0.45) 58%, rgba(7, 7, 13, 0.22) 100%),
        linear-gradient(180deg, rgba(7, 7, 13, 0.7) 0%, transparent 22%, transparent 72%, rgba(7, 7, 13, 0.92) 100%),
        radial-gradient(ellipse 50% 50% at 72% 45%, rgba(255, 192, 51, 0.16), transparent 62%);
}

body.is-industries .ox-svc-hero__actions .btn-ghost {
    color: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.06);
}

body.is-industries .ox-svc-hero__actions .btn-ghost:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.12);
}

/* Why Orixes — open split bento (no boxed panel) */
.ox-ind-why {
    position: relative;
    padding: clamp(72px, 10vw, 112px) 0;
    background:
        radial-gradient(ellipse 70% 55% at 0% 0%, rgba(255, 192, 51, 0.09), transparent 55%),
        radial-gradient(ellipse 55% 50% at 100% 18%, rgba(255, 192, 51, 0.07), transparent 50%),
        radial-gradient(ellipse 50% 45% at 50% 100%, rgba(249, 178, 51, 0.05), transparent 55%),
        var(--color-surface-soft);
    color: var(--color-text);
    overflow: hidden;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.ox-ind-why__ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ox-ind-why__gridlines {
    position: absolute;
    inset: 0;
    opacity: 0.42;
    background-image:
        linear-gradient(rgba(10, 10, 10, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 10, 10, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent);
}

.ox-ind-why__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.5;
}

.ox-ind-why__glow--1 {
    width: 460px;
    height: 460px;
    top: -140px;
    left: -100px;
    background: rgba(255, 192, 51, 0.2);
}

.ox-ind-why__glow--2 {
    width: 380px;
    height: 380px;
    top: 18%;
    right: -120px;
    background: rgba(255, 192, 51, 0.14);
}

.ox-ind-why__glow--3 {
    width: 320px;
    height: 320px;
    bottom: -100px;
    left: 38%;
    background: rgba(249, 178, 51, 0.12);
}

.ox-ind-why__inner {
    position: relative;
    z-index: 1;
}

.ox-ind-why__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}

.ox-ind-why__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #a16207;
}

.ox-ind-why__eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 12px rgba(249, 178, 51, 0.55);
}

.ox-ind-why__title {
    margin: 0 0 18px;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--color-text);
    text-wrap: balance;
}

.ox-ind-why__sub {
    margin: 0;
    max-width: 36rem;
    font-size: clamp(1rem, 1.45vw, 1.0625rem);
    line-height: 1.75;
    color: var(--color-text-muted);
}

.ox-ind-why__bento {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.ox-ind-why__card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 22px 22px 24px;
    border-radius: 18px;
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform 0.25s var(--ease-out), border-color 0.25s, box-shadow 0.25s;
}

.ox-ind-why__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.ox-ind-why__card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.ox-ind-why__index {
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--color-text-subtle);
}

.ox-ind-why__icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.7);
}

.ox-ind-why__icon svg {
    width: 22px;
    height: 22px;
}

.ox-ind-why__card-title {
    margin: 0 0 8px;
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--color-text);
}

.ox-ind-why__card-text {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--color-text-muted);
}

.ox-ind-why__card-glow {
    position: absolute;
    width: 140px;
    height: 140px;
    bottom: -70px;
    right: -40px;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.28;
    pointer-events: none;
    transition: opacity 0.25s var(--ease-out);
}

.ox-ind-why__card:hover .ox-ind-why__card-glow {
    opacity: 0.48;
}

.ox-ind-why__card--cyan {
    border-color: rgba(255, 192, 51, 0.22);
}

.ox-ind-why__card--cyan .ox-ind-why__icon {
    color: var(--color-link);
    border-color: rgba(255, 192, 51, 0.28);
    background: rgba(255, 192, 51, 0.08);
}

.ox-ind-why__card--cyan .ox-ind-why__card-glow {
    background: rgba(255, 192, 51, 0.45);
}

.ox-ind-why__card--cyan:hover {
    border-color: rgba(255, 192, 51, 0.4);
}

.ox-ind-why__card--gold {
    border-color: rgba(249, 178, 51, 0.22);
}

.ox-ind-why__card--gold .ox-ind-why__icon {
    color: #a16207;
    border-color: rgba(249, 178, 51, 0.32);
    background: rgba(249, 178, 51, 0.1);
}

.ox-ind-why__card--gold .ox-ind-why__card-glow {
    background: rgba(249, 178, 51, 0.42);
}

.ox-ind-why__card--gold:hover {
    border-color: rgba(249, 178, 51, 0.42);
}

.ox-ind-why__card--magenta {
    border-color: rgba(249, 178, 51, 0.2);
}

.ox-ind-why__card--magenta .ox-ind-why__icon {
    color: #a16207;
    border-color: rgba(249, 178, 51, 0.28);
    background: rgba(249, 178, 51, 0.08);
}

.ox-ind-why__card--magenta .ox-ind-why__card-glow {
    background: rgba(249, 178, 51, 0.4);
}

.ox-ind-why__card--magenta:hover {
    border-color: rgba(249, 178, 51, 0.38);
}

.ox-ind-why__card--green {
    border-color: rgba(217, 119, 6, 0.2);
}

.ox-ind-why__card--green .ox-ind-why__icon {
    color: #a16207;
    border-color: rgba(217, 119, 6, 0.28);
    background: rgba(217, 119, 6, 0.08);
}

.ox-ind-why__card--green .ox-ind-why__card-glow {
    background: rgba(217, 119, 6, 0.38);
}

.ox-ind-why__card--green:hover {
    border-color: rgba(217, 119, 6, 0.36);
}

.ox-ind-page-featured__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.5vw, 24px);
}

.ox-ind-page-grid {
    position: relative;
    overflow: hidden;
}

.ox-ind-page-grid__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 45% at 0% 0%, rgba(249, 178, 51, 0.06), transparent 55%),
        radial-gradient(ellipse 50% 40% at 100% 100%, rgba(255, 192, 51, 0.05), transparent 50%);
}

.ox-ind-page-grid__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.5vw, 24px);
    position: relative;
    z-index: 1;
}

.ox-ind-page-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    background: #fff;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out), transform 0.22s var(--ease-out);
}

.ox-ind-page-card:hover {
    border-color: rgba(249, 178, 51, 0.4);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.ox-ind-page-card__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--color-surface-muted);
}

.ox-ind-page-card--featured .ox-ind-page-card__media {
    aspect-ratio: 16 / 11;
}

.ox-ind-page-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s var(--ease-out);
}

.ox-ind-page-card:hover .ox-ind-page-card__media img {
    transform: scale(1.04);
}

.ox-ind-page-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    background: rgba(10, 10, 10, 0.78);
    border: 1px solid rgba(249, 178, 51, 0.45);
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffc033;
}

.ox-ind-page-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
    padding: clamp(20px, 2.5vw, 26px);
}

.ox-ind-page-card__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.125rem, 1.8vw, 1.3125rem);
    font-weight: 700;
    line-height: 1.25;
}

.ox-ind-page-card__title a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.2s var(--ease-out);
}

.ox-ind-page-card__title a:hover {
    color: #a16207;
}

.ox-ind-page-card__tagline {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--color-text);
}

.ox-ind-page-card__text {
    margin: 0;
    flex: 1;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--color-text-muted);
}

.ox-ind-page-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: #a16207;
    text-decoration: none;
    transition: gap 0.2s var(--ease-out), color 0.2s var(--ease-out);
}

.ox-ind-page-card__link:hover {
    gap: 12px;
    color: var(--color-text);
}

.ox-ind-page-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(24px, 4vw, 48px);
    padding: clamp(32px, 5vw, 48px);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background:
        radial-gradient(ellipse 60% 80% at 0% 50%, rgba(249, 178, 51, 0.08), transparent 60%),
        #fff;
    box-shadow: var(--shadow-sm);
}

.ox-ind-page-cta__copy {
    max-width: 56ch;
}

.ox-ind-page-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex-shrink: 0;
}

body.is-industries .ox-ind-page-card--pharma .ox-ind-page-card__media {
    background: linear-gradient(135deg, rgba(249, 178, 51, 0.08), rgba(10, 10, 10, 0.04));
}

body.is-industries .ox-ind-page-card--healthcare .ox-ind-page-card__media {
    background: linear-gradient(135deg, rgba(255, 192, 51, 0.08), rgba(10, 10, 10, 0.04));
}

body.is-industries .ox-ind-page-card--fintech .ox-ind-page-card__media {
    background: linear-gradient(135deg, rgba(249, 178, 51, 0.08), rgba(10, 10, 10, 0.04));
}

@media (max-width: 1024px) {
    .ox-ind-why__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ox-ind-page-featured__grid,
    .ox-ind-page-grid__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    body.is-industries {
        --ind-section-pad: 40px;
    }

    body.is-industries .ox-ind-why {
        padding-block: 40px;
    }

    .ox-ind-why {
        padding: 40px 0;
    }

    .ox-ind-why__bento,
    .ox-ind-page-featured__grid,
    .ox-ind-page-grid__list {
        grid-template-columns: 1fr;
    }

    .ox-ind-page-cta__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .ox-ind-page-cta__actions {
        width: 100%;
    }

    .ox-ind-page-cta__actions .btn {
        flex: 1;
        min-width: 0;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ox-ind-page-card,
    .ox-ind-why__card,
    .ox-ind-page-card__media img {
        transition: none;
    }

    .ox-ind-page-card:hover,
    .ox-ind-why__card:hover {
        transform: none;
    }
}

/* ========== Services page — cohesive light theme + dark CTA ========== */

body.is-services:not(.is-products):not(.is-industries) {
    background: #fafaf9;
    color: var(--color-text);
}

/* —— Light hero —— */
body.is-services:not(.is-products):not(.is-industries) .ox-svc-hero--light {
    position: relative;
    min-height: min(78dvh, 720px);
    display: block;
    padding: calc(var(--header-h) + 40px) 0 56px;
    background:
        radial-gradient(ellipse 70% 55% at 0% 20%, rgba(255, 192, 51, 0.08), transparent 55%),
        radial-gradient(ellipse 55% 45% at 100% 10%, rgba(251, 191, 36, 0.1), transparent 50%),
        #fafaf9;
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}

body.is-services:not(.is-products):not(.is-industries) .ox-svc-hero__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(64px);
    z-index: 0;
}

body.is-services:not(.is-products):not(.is-industries) .ox-svc-hero__glow--1 {
    width: min(42vw, 360px);
    height: min(42vw, 360px);
    top: 8%;
    left: -6%;
    background: rgba(255, 192, 51, 0.14);
}

body.is-services:not(.is-products):not(.is-industries) .ox-svc-hero__glow--2 {
    width: min(36vw, 300px);
    height: min(36vw, 300px);
    bottom: 6%;
    right: 18%;
    background: rgba(251, 191, 36, 0.12);
}

body.is-services:not(.is-products):not(.is-industries) .ox-svc-hero--light .ox-svc-hero__inner {
    position: relative;
    z-index: 1;
}

body.is-services:not(.is-products):not(.is-industries) .ox-svc-hero--light .ox-svc-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    gap: clamp(28px, 5vw, 56px);
    align-items: center;
}

body.is-services:not(.is-products):not(.is-industries) .ox-svc-hero--light .ox-svc-hero__visual {
    aspect-ratio: 4 / 3;
    max-height: none;
    min-height: 280px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(10, 10, 10, 0.08);
    background: #fff;
    box-shadow:
        0 24px 64px rgba(10, 10, 10, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.65) inset;
}

body.is-services:not(.is-products):not(.is-industries) .ox-svc-hero--light .ox-svc-hero__visual img {
    filter: none;
    opacity: 1;
    object-fit: cover;
}

body.is-services:not(.is-products):not(.is-industries) .ox-svc-hero--light .ox-svc-hero__title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    max-width: 12ch;
    margin-bottom: 20px;
}

body.is-services:not(.is-products):not(.is-industries) .ox-svc-hero--light .breadcrumb,
body.is-services:not(.is-products):not(.is-industries) .ox-svc-hero--light .breadcrumb span {
    color: var(--color-text-subtle);
}

body.is-services:not(.is-products):not(.is-industries) .ox-svc-hero--light .breadcrumb a:hover {
    color: var(--color-link);
}

body.is-services:not(.is-products):not(.is-industries) .ox-svc-hero--light .ox-svc-hero__title,
body.is-services:not(.is-products):not(.is-industries) .ox-svc-hero--light .ox-svc-hero__line {
    color: var(--color-text);
    filter: none;
}

body.is-services:not(.is-products):not(.is-industries) .ox-svc-hero--light .ox-svc-hero__line--accent {
    background: linear-gradient(135deg, var(--color-link) 0%, #a16207 50%, #a16207 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
    filter: none;
}

body.is-services:not(.is-products):not(.is-industries) .ox-svc-hero--light .ox-svc-hero__intro {
    color: var(--color-text-muted);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.7;
}

body.is-services:not(.is-products):not(.is-industries) .ox-svc-hero--light .ox-svc-hero__eyebrow {
    border-color: rgba(255, 192, 51, 0.28);
    background: linear-gradient(135deg, rgba(255, 192, 51, 0.1), rgba(161, 98, 7, 0.08));
    color: var(--color-link);
    box-shadow: none;
}

body.is-services:not(.is-products):not(.is-industries) .ox-svc-hero--light .ox-svc-hero__eyebrow::before {
    background: linear-gradient(135deg, var(--color-link), #a16207);
    box-shadow: 0 0 8px rgba(255, 192, 51, 0.35);
}

/* —— Light capabilities grid —— */
body.is-services:not(.is-products):not(.is-industries) .ox-svc-grid--light {
    background:
        radial-gradient(ellipse 60% 50% at 100% 0%, rgba(249, 178, 51, 0.05), transparent 55%),
        radial-gradient(ellipse 55% 45% at 0% 100%, rgba(255, 192, 51, 0.06), transparent 50%),
        #f5f5f4;
    border-top: 1px solid var(--color-border);
}

body.is-services:not(.is-products):not(.is-industries) .ox-svc-grid--light .ox-svc-grid__bg {
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 80px,
        rgba(255, 192, 51, 0.025) 80px,
        rgba(255, 192, 51, 0.025) 81px
    );
}

body.is-services:not(.is-products):not(.is-industries) .ox-svc-grid--light .ox-section__title {
    color: var(--color-text);
}

body.is-services:not(.is-products):not(.is-industries) .ox-svc-grid--light .ox-section__sub {
    color: var(--color-text-muted);
}

body.is-services:not(.is-products):not(.is-industries) .ox-svc-grid--light .ox-svc-grid__title {
    background: linear-gradient(135deg, #0a0a0a 0%, var(--color-accent-bright) 55%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: none;
}

body.is-services:not(.is-products):not(.is-industries) .ox-svc-grid--light .ox-svc-section__eyebrow {
    border-color: rgba(255, 192, 51, 0.28);
    background: linear-gradient(135deg, rgba(255, 192, 51, 0.1), rgba(255, 192, 51, 0.06));
    color: var(--color-accent-bright);
    box-shadow: none;
}

body.is-services:not(.is-products):not(.is-industries) .ox-svc-grid--light .ox-svc-section__eyebrow::before {
    background: linear-gradient(135deg, var(--color-accent-bright), var(--color-accent));
    box-shadow: 0 0 8px rgba(255, 192, 51, 0.3);
}

body.is-services:not(.is-products):not(.is-industries) .ox-svc-grid--light .ox-svc-card {
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-left: 3px solid var(--color-accent-bright);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

body.is-services:not(.is-products):not(.is-industries) .ox-svc-grid--light .ox-svc-card::before {
    display: none;
}

body.is-services:not(.is-products):not(.is-industries) .ox-svc-grid--light .ox-svc-card::after {
    display: none;
}

body.is-services:not(.is-products):not(.is-industries) .ox-svc-grid--light .ox-svc-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-border);
    border-left-color: var(--color-accent-bright);
    box-shadow: var(--shadow-md);
}

body.is-services:not(.is-products):not(.is-industries) .ox-svc-grid--light .ox-svc-card__title a {
    color: var(--color-text);
    text-shadow: none;
}

body.is-services:not(.is-products):not(.is-industries) .ox-svc-grid--light .ox-svc-card__title a:hover {
    color: var(--color-accent-bright);
    text-shadow: none;
}

body.is-services:not(.is-products):not(.is-industries) .ox-svc-grid--light .ox-svc-card__text {
    color: var(--color-text-muted);
}

body.is-services:not(.is-products):not(.is-industries) .ox-svc-grid--light .ox-svc-card .ox-card__icon {
    background: rgba(255, 192, 51, 0.1);
    box-shadow: none;
    color: var(--color-accent-bright);
}

body.is-services:not(.is-products):not(.is-industries) .ox-svc-grid--light .ox-svc-card__badge {
    color: var(--color-accent-bright);
    background: rgba(255, 192, 51, 0.12);
    border: 1px solid rgba(255, 192, 51, 0.28);
    box-shadow: none;
}

body.is-services:not(.is-products):not(.is-industries) .ox-svc-grid--light .ox-svc-card__link {
    color: var(--color-accent-bright);
}

body.is-services:not(.is-products):not(.is-industries) .ox-svc-grid--light .ox-svc-card__link:hover {
    color: var(--color-accent);
    filter: brightness(0.92);
}

/* —— Light FAQ —— */
body.is-services:not(.is-products):not(.is-industries) .ox-svc-faq--light {
    background: #fafaf9;
}

body.is-services:not(.is-products):not(.is-industries) .ox-svc-faq--light .ox-section__title {
    color: var(--color-text);
}

body.is-services:not(.is-products):not(.is-industries) .ox-svc-faq--light .ox-section__sub {
    color: var(--color-text-muted);
}

body.is-services:not(.is-products):not(.is-industries) .ox-svc-faq--light .ox-svc-section__eyebrow {
    border-color: rgba(255, 192, 51, 0.28);
    background: linear-gradient(135deg, rgba(255, 192, 51, 0.1), rgba(161, 98, 7, 0.06));
    color: var(--color-link);
    box-shadow: none;
}

body.is-services:not(.is-products):not(.is-industries) .ox-svc-faq--light .ox-svc-section__eyebrow::before {
    background: linear-gradient(135deg, var(--color-link), #a16207);
    box-shadow: 0 0 8px rgba(255, 192, 51, 0.3);
}

body.is-services:not(.is-products):not(.is-industries) .ox-svc-faq--light .ox-svc-faq__intro-card,
body.is-services:not(.is-products):not(.is-industries) .ox-svc-faq--light .ox-svc-faq__list {
    border-color: var(--color-border);
    background: #fff;
}

body.is-services:not(.is-products):not(.is-industries) .ox-svc-faq--light .ox-svc-faq__item summary {
    color: var(--color-text);
}

body.is-services:not(.is-products):not(.is-industries) .ox-svc-faq--light .ox-svc-faq__answer p {
    color: var(--color-text-muted);
}

/* —— Dark CTA (single dark anchor at page end) —— */
body.is-services:not(.is-products):not(.is-industries) .ox-cta--dark {
    color: var(--neon-text);
    border-top: 1px solid var(--neon-border);
    background:
        radial-gradient(ellipse 60% 50% at 50% 100%, rgba(255, 192, 51, 0.14), transparent 60%),
        radial-gradient(ellipse 50% 40% at 0% 0%, rgba(249, 178, 51, 0.1), transparent 50%),
        #07070d;
}

body.is-services:not(.is-products):not(.is-industries) .ox-cta--dark .ox-cta__mesh {
    background: linear-gradient(90deg, transparent, rgba(255, 192, 51, 0.06), transparent);
}

body.is-services:not(.is-products):not(.is-industries) .ox-cta--dark .ox-cta__title {
    background: linear-gradient(135deg, #fff 0%, var(--color-accent-bright) 45%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: none;
}

body.is-services:not(.is-products):not(.is-industries) .ox-cta--dark .ox-cta__text,
body.is-services:not(.is-products):not(.is-industries) .ox-cta--dark .ox-cta__contacts a {
    color: var(--neon-muted);
}

body.is-services:not(.is-products):not(.is-industries) .ox-cta--dark .ox-cta__contacts a:hover {
    color: var(--neon-cyan);
}

@media (max-width: 900px) {
    body.is-services:not(.is-products):not(.is-industries) .ox-svc-hero--light .ox-svc-hero__layout {
        grid-template-columns: 1fr;
    }

    body.is-services:not(.is-products):not(.is-industries) .ox-svc-hero--light .ox-svc-hero__visual {
        order: -1;
        max-height: 320px;
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 768px) {
    body.is-services:not(.is-products):not(.is-industries) .ox-svc-hero--light {
        min-height: auto;
        padding-bottom: 40px;
    }
}

/* ========== Contact page — site theme alignment ========== */

body.is-contact {
    background: #fafaf9;
    color: var(--color-text);
}

/* —— Banner hero —— */
body.is-contact .ox-contact-hero--banner {
    position: relative;
    overflow: hidden;
    padding-top: calc(var(--header-h) + 40px);
    padding-bottom: 56px;
    background:
        radial-gradient(ellipse 70% 55% at 0% 20%, rgba(255, 192, 51, 0.08), transparent 55%),
        radial-gradient(ellipse 55% 45% at 100% 10%, rgba(249, 178, 51, 0.1), transparent 50%),
        #fafaf9;
    border-bottom: 1px solid var(--color-border);
}

body.is-contact .ox-contact-hero__layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(28px, 4vw, 48px);
    align-items: center;
}

body.is-contact .ox-contact-hero__content {
    min-width: 0;
}

body.is-contact .ox-contact-hero__visual {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border: 1px solid var(--color-border);
    background: var(--color-bg-dark);
    box-shadow: var(--shadow-md);
}

body.is-contact .ox-contact-hero__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

body.is-contact .ox-contact-hero__visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.08), transparent 45%, rgba(255, 192, 51, 0.06));
    pointer-events: none;
}

body.is-contact .ox-contact-hero--banner .container {
    position: relative;
    z-index: 1;
}

body.is-contact .ox-contact-hero--banner .breadcrumb,
body.is-contact .ox-contact-hero--banner .breadcrumb span {
    color: var(--color-text-subtle);
}

body.is-contact .ox-contact-hero--banner .breadcrumb a:hover {
    color: var(--color-link);
}

body.is-contact .ox-contact-hero__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(64px);
    z-index: 0;
}

body.is-contact .ox-contact-hero__glow--1 {
    width: min(42vw, 360px);
    height: min(42vw, 360px);
    top: 8%;
    left: -6%;
    background: rgba(255, 192, 51, 0.14);
}

body.is-contact .ox-contact-hero__glow--2 {
    width: min(36vw, 300px);
    height: min(36vw, 300px);
    bottom: 6%;
    right: 12%;
    background: rgba(251, 191, 36, 0.12);
}

body.is-contact .ox-contact-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    margin: 0 0 16px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 192, 51, 0.28);
    background: linear-gradient(135deg, rgba(255, 192, 51, 0.1), rgba(161, 98, 7, 0.08));
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-link);
}

body.is-contact .ox-contact-hero__eyebrow::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-link), #a16207);
    box-shadow: 0 0 8px rgba(255, 192, 51, 0.35);
}

body.is-contact .ox-contact-hero__title {
    display: flex;
    flex-direction: column;
    gap: 0.04em;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    max-width: 12ch;
}

body.is-contact .ox-contact-hero__line {
    color: var(--color-text);
}

body.is-contact .ox-contact-hero__line--accent {
    background: linear-gradient(135deg, #0a0a0a 0%, var(--color-accent-bright) 55%, #a16207 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

body.is-contact .ox-contact-hero__lead a {
    color: var(--color-link);
    text-decoration-color: rgba(255, 192, 51, 0.35);
}

body.is-contact .ox-contact-hero__lead a:hover {
    color: var(--color-link-hover);
}

body.is-contact .ox-contact-hero__trust {
    border-top-color: var(--color-border);
}

body.is-contact .ox-contact-hero__trust-list li {
    background: #fff;
    border-color: var(--color-border);
    color: var(--color-text-muted);
    transition: border-color 0.2s var(--ease-out), color 0.2s var(--ease-out);
}

body.is-contact .ox-contact-hero__trust-list li:hover {
    border-color: rgba(255, 192, 51, 0.28);
    color: var(--color-text);
}

/* —— Form section —— */
body.is-contact .ox-contact-main--light {
    padding-block: 56px 80px;
    background:
        radial-gradient(ellipse 60% 50% at 100% 0%, rgba(249, 178, 51, 0.04), transparent 55%),
        radial-gradient(ellipse 55% 45% at 0% 100%, rgba(255, 192, 51, 0.05), transparent 50%),
        #f5f5f4;
}

body.is-contact .ox-contact-form {
    background: #fff;
    border-color: var(--color-border);
    box-shadow: var(--shadow-sm);
}

body.is-contact .ox-contact-form .form-control {
    background: #fafaf9;
    border-color: var(--color-border);
}

body.is-contact .ox-contact-form .form-control:focus {
    border-color: rgba(255, 192, 51, 0.55);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 192, 51, 0.12);
}

body.is-contact .ox-contact-form__req {
    color: var(--color-link);
}

body.is-contact .ox-contact-person {
    background: #fff;
    border-color: var(--color-border);
}

body.is-contact .ox-contact-person__avatar {
    color: #0a0a0a;
    background: linear-gradient(135deg, var(--color-accent-bright), #f9b233);
    box-shadow: 0 8px 24px rgba(255, 192, 51, 0.22);
}

body.is-contact .ox-contact-person__toggle:hover {
    color: var(--color-link);
}

body.is-contact .ox-contact-person__channels a {
    color: var(--color-link);
}

body.is-contact .ox-contact-person__channels a:hover {
    color: var(--color-link-hover);
}

body.is-contact .ox-contact-aside__card {
    background: #fff;
    border-color: var(--color-border);
}

body.is-contact .ox-contact-aside__card h3 {
    color: var(--color-link);
}

body.is-contact .ox-contact-aside__stat {
    padding: 12px 16px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(160deg, #0a0a0a 0%, #141824 100%);
    box-shadow: var(--shadow-sm);
}

body.is-contact .ox-contact-aside__stat:nth-child(1) {
    border-color: rgba(255, 192, 51, 0.35);
}

body.is-contact .ox-contact-aside__stat:nth-child(2) {
    border-color: rgba(249, 178, 51, 0.35);
}

body.is-contact .ox-contact-aside__stat:nth-child(3) {
    border-color: rgba(251, 191, 36, 0.35);
}

body.is-contact .ox-contact-aside__stat strong {
    background: linear-gradient(135deg, var(--color-accent-bright), #fbbf24);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

body.is-contact .ox-contact-aside__stat span {
    color: rgba(255, 255, 255, 0.55);
}

/* —— Dark info panel (matches services CTA) —— */
body.is-contact .ox-contact-panel--dark {
    background:
        radial-gradient(ellipse 60% 50% at 50% 100%, rgba(255, 192, 51, 0.14), transparent 60%),
        radial-gradient(ellipse 50% 40% at 0% 0%, rgba(249, 178, 51, 0.1), transparent 50%),
        #07070d;
    color: rgba(255, 255, 255, 0.92);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.is-contact .ox-contact-panel--dark .ox-contact-panel__glow {
    background: radial-gradient(circle, rgba(255, 192, 51, 0.14), transparent 70%);
}

body.is-contact .ox-contact-panel--dark .ox-contact-panel__brand {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.is-contact .ox-contact-panel--dark .ox-contact-panel__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(251, 191, 36, 0.35);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.16), rgba(255, 192, 51, 0.14));
    font-size: 0.6875rem;
    letter-spacing: 0.14em;
    color: #fbbf24;
}

body.is-contact .ox-contact-panel--dark .ox-contact-panel__heading {
    background: linear-gradient(135deg, #fff 0%, var(--color-accent-bright) 45%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

body.is-contact .ox-contact-panel--dark .ox-contact-panel__text {
    color: rgba(255, 255, 255, 0.62);
}

body.is-contact .ox-contact-panel--dark .ox-contact-panel__section {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

body.is-contact .ox-contact-panel--dark .ox-contact-panel__title {
    color: var(--color-accent-bright);
}

body.is-contact .ox-contact-panel--dark .ox-contact-panel__links li + li {
    border-top-color: rgba(255, 255, 255, 0.1);
}

body.is-contact .ox-contact-panel--dark .ox-contact-panel__links a {
    color: rgba(255, 255, 255, 0.88);
}

body.is-contact .ox-contact-panel--dark .ox-contact-panel__link-label {
    color: #fff;
}

body.is-contact .ox-contact-panel--dark .ox-contact-panel__link-label svg {
    color: var(--color-accent-bright);
}

body.is-contact .ox-contact-panel--dark .ox-contact-panel__links a:hover .ox-contact-panel__link-label {
    color: var(--color-accent-bright);
}

body.is-contact .ox-contact-panel--dark .ox-contact-panel__links a > span:last-child {
    color: rgba(255, 255, 255, 0.55);
}

body.is-contact .ox-contact-panel--dark .ox-contact-panel__tags li {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.78);
}

body.is-contact .ox-contact-panel--dark .ox-contact-panel__tags li:hover {
    border-color: rgba(255, 192, 51, 0.35);
    color: var(--color-accent-bright);
}

body.is-contact .ox-contact-panel--dark .ox-contact-panel__cases li + li {
    border-top-color: rgba(255, 255, 255, 0.1);
}

body.is-contact .ox-contact-panel--dark .ox-contact-panel__cases strong {
    color: #fff;
}

body.is-contact .ox-contact-panel--dark .ox-contact-panel__cases span {
    color: rgba(255, 255, 255, 0.55);
}

body.is-contact .ox-contact-panel--dark .ox-contact-panel__footer {
    border-top-color: rgba(255, 255, 255, 0.1);
}

body.is-contact .ox-contact-panel--dark .ox-contact-panel__company-name {
    color: #fbbf24 !important;
}

body.is-contact .ox-contact-panel--dark .ox-contact-panel__company a {
    color: var(--color-accent-bright);
}

body.is-contact .ox-contact-panel--dark .ox-contact-panel__company a:hover {
    color: #ffd666;
}

body.is-contact .ox-contact-panel--dark .ox-contact-panel__meta {
    color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 992px) {
    body.is-contact .ox-contact-hero__layout {
        grid-template-columns: 1fr;
    }

    body.is-contact .ox-contact-hero__visual {
        max-width: 640px;
    }

    body.is-contact .ox-contact-hero__title {
        max-width: none;
    }
}

@media (max-width: 768px) {
    body.is-contact .ox-contact-hero--banner {
        padding-bottom: 40px;
    }

    body.is-contact .ox-contact-aside__stats {
        grid-template-columns: 1fr;
    }
}

/* ========== About page — unified section rhythm ========== */

body.is-about {
    background: #fafaf9;
}

.ox-about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    margin-bottom: 16px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(249, 178, 51, 0.35);
    background: linear-gradient(135deg, rgba(255, 251, 235, 0.95), rgba(255, 255, 255, 0.9));
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #a16207;
    box-shadow: 0 0 20px rgba(249, 178, 51, 0.08);
}

.ox-about-eyebrow::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.55);
}

.ox-about-eyebrow--light {
    border-color: rgba(251, 191, 36, 0.35);
    background: rgba(255, 255, 255, 0.06);
    color: #fbbf24;
    box-shadow: none;
}

.ox-about-eyebrow--light::before {
    background: #fbbf24;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.65);
}

.ox-section__head--center {
    margin-inline: auto;
    text-align: center;
}

.ox-section__head--center .ox-section__sub {
    margin-inline: auto;
}

/* Story */
.ox-about-story {
    position: relative;
    overflow: hidden;
}

.ox-about-story__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ox-about-story__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
}

.ox-about-story__glow--1 {
    width: 420px;
    height: 420px;
    top: -120px;
    left: -80px;
    background: rgba(249, 178, 51, 0.12);
}

.ox-about-story__glow--2 {
    width: 360px;
    height: 360px;
    bottom: -60px;
    right: -40px;
    background: rgba(255, 192, 51, 0.08);
}

.ox-about-story__gridlines {
    position: absolute;
    inset: 0;
    opacity: 0.45;
    background-image:
        linear-gradient(rgba(10, 10, 10, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 10, 10, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.ox-about-story__grid {
    position: relative;
    z-index: 1;
}

.ox-about-story__media {
    border: 1px solid rgba(249, 178, 51, 0.22);
    box-shadow:
        0 24px 60px rgba(10, 10, 10, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.ox-about-story__content {
    padding: clamp(24px, 3vw, 36px);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

/* Stats */
.ox-about-stats {
    position: relative;
    overflow: hidden;
}

.ox-about-stats__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ox-about-stats__gridlines {
    position: absolute;
    inset: 0;
    opacity: 0.28;
    background-image:
        linear-gradient(rgba(255, 192, 51, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 192, 51, 0.08) 1px, transparent 1px);
    background-size: 48px 48px;
}

.ox-about-stats__glow {
    position: absolute;
    width: 520px;
    height: 320px;
    top: -80px;
    right: -120px;
    border-radius: 50%;
    background: rgba(251, 191, 36, 0.14);
    filter: blur(80px);
}

body.is-about .ox-about-stats .container {
    position: relative;
    z-index: 1;
}

body.is-about .ox-about-stats .ox-stats {
    gap: clamp(14px, 2vw, 20px);
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

body.is-about .ox-about-stats .ox-stat {
    padding: clamp(24px, 3vw, 32px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: border-color 0.22s var(--ease-out), transform 0.22s var(--ease-out);
}

body.is-about .ox-about-stats .ox-stat:hover {
    border-color: rgba(251, 191, 36, 0.35);
    transform: translateY(-2px);
}

body.is-about .ox-about-stats .ox-stat__value {
    background: linear-gradient(135deg, #fbbf24 0%, var(--color-accent-bright) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

body.is-about .ox-about-stats .ox-stat__label {
    color: rgba(255, 255, 255, 0.58);
}

/* Journey — modern timeline */
.ox-journey {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 55% at 12% 0%, rgba(255, 192, 51, 0.07), transparent 58%),
        radial-gradient(ellipse 55% 45% at 92% 100%, rgba(161, 98, 7, 0.06), transparent 55%),
        #f5f5f4;
    padding-block: clamp(72px, 9vw, 112px);
}

.ox-journey__ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ox-journey__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.65;
}

.ox-journey__glow--cyan {
    width: 420px;
    height: 420px;
    top: -140px;
    right: 6%;
    background: rgba(255, 192, 51, 0.12);
}

.ox-journey__glow--gold {
    width: 360px;
    height: 360px;
    bottom: -120px;
    left: -80px;
    background: rgba(249, 178, 51, 0.1);
}

.ox-journey__gridlines {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(10, 10, 10, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 10, 10, 0.028) 1px, transparent 1px);
    background-size: 56px 56px;
}

body.is-about .ox-journey .container {
    position: relative;
    z-index: 1;
}

.ox-journey__head {
    max-width: 40rem;
    margin-bottom: clamp(36px, 5vw, 56px);
}

.ox-journey__title-accent {
    display: block;
    margin-top: 0.35em;
    font-size: clamp(1.125rem, 2.2vw, 1.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--color-link) 0%, #a16207 48%, #a16207 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ox-journey__rail {
    position: relative;
    margin-bottom: clamp(40px, 5vw, 64px);
}

@media (min-width: 901px) {
    .ox-journey__rail {
        position: sticky;
        top: calc(var(--header-h) + 12px);
        z-index: 5;
        padding: 12px 0 20px;
        margin-bottom: clamp(32px, 4vw, 48px);
        background: color-mix(in srgb, #f5f5f4 90%, transparent);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }
}

.ox-journey__rail-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 22px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-link) 0%, #a16207 45%, #a16207 100%);
    opacity: 0.35;
    border-radius: 2px;
}

.ox-journey__rail-list {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.ox-journey__node {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 8px 6px 0;
    text-align: center;
    color: var(--color-text-subtle);
    transition: color 0.22s var(--ease-out), transform 0.22s var(--ease-out);
}

.ox-journey__node:hover,
.ox-journey__node.is-active {
    color: var(--color-text);
}

.ox-journey__node:focus-visible {
    outline: 2px solid var(--color-link);
    outline-offset: 4px;
    border-radius: var(--radius-md);
}

.ox-journey__node-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(10, 10, 10, 0.14);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.9);
    transition: border-color 0.22s, background 0.22s, box-shadow 0.22s, transform 0.22s;
}

.ox-journey__node.is-active .ox-journey__node-dot {
    background: var(--journey-accent, var(--color-link));
    border-color: var(--journey-accent, var(--color-link));
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--journey-accent, var(--color-link)) 22%, transparent);
    transform: scale(1.15);
}

.ox-journey__node-year {
    font-family: var(--font-display);
    font-size: clamp(0.9375rem, 1.4vw, 1.125rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.ox-journey__node-phase {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-subtle);
    line-height: 1.3;
    max-width: 7rem;
}

.ox-journey__node.is-active .ox-journey__node-phase {
    color: var(--journey-accent, var(--color-link));
}

.ox-journey__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: clamp(28px, 4vw, 40px);
}

.ox-journey__item {
    margin: 0;
}

.ox-journey__card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 0;
    align-items: stretch;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(10, 10, 10, 0.08);
    background: #fff;
    box-shadow:
        0 1px 2px rgba(10, 10, 10, 0.04),
        0 20px 48px rgba(10, 10, 10, 0.07);
    overflow: hidden;
    scroll-margin-top: calc(var(--header-h) + 120px);
    transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.ox-journey__card:hover {
    border-color: color-mix(in srgb, var(--journey-accent, var(--color-link)) 35%, transparent);
    box-shadow:
        0 1px 2px rgba(10, 10, 10, 0.04),
        0 28px 56px rgba(10, 10, 10, 0.1);
    transform: translateY(-3px);
}

.ox-journey__card--flip .ox-journey__visual {
    order: 2;
}

.ox-journey__visual {
    position: relative;
    margin: 0;
    min-height: 280px;
    background: #0a0a0a;
    overflow: hidden;
}

.ox-journey__visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, color-mix(in srgb, var(--journey-accent, var(--color-link)) 18%, transparent) 0%, transparent 55%);
    pointer-events: none;
}

.ox-journey__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 280px;
}

.ox-journey__watermark {
    position: absolute;
    right: -0.05em;
    bottom: -0.12em;
    font-family: var(--font-display);
    font-size: clamp(4.5rem, 11vw, 7.5rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 0.85;
    color: rgba(255, 255, 255, 0.14);
    pointer-events: none;
    user-select: none;
}

.ox-journey__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(28px, 3.5vw, 40px) clamp(28px, 3.5vw, 44px);
    min-width: 0;
}

.ox-journey__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.ox-journey__phase {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--journey-accent, var(--color-link));
    background: color-mix(in srgb, var(--journey-accent, var(--color-link)) 10%, #fff);
    border: 1px solid color-mix(in srgb, var(--journey-accent, var(--color-link)) 22%, transparent);
}

.ox-journey__year {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--color-text);
}

.ox-journey__headline {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.2vw, 1.5rem);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--color-text);
}

.ox-journey__points {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ox-journey__points li {
    position: relative;
    padding-left: 1.35rem;
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.ox-journey__points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--journey-accent, var(--color-link));
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--journey-accent, var(--color-link)) 18%, transparent);
}

@media (max-width: 900px) {
    .ox-journey__rail {
        margin-inline: -8px;
        padding-inline: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .ox-journey__rail-list {
        min-width: max(100%, 520px);
        justify-content: flex-start;
        gap: 4px;
    }

    .ox-journey__node {
        flex: 0 0 auto;
        min-width: 88px;
    }

    .ox-journey__card,
    .ox-journey__card--flip {
        grid-template-columns: 1fr;
    }

    .ox-journey__card--flip .ox-journey__visual {
        order: 0;
    }

    .ox-journey__visual {
        min-height: 220px;
    }

    .ox-journey__visual img {
        min-height: 220px;
    }
}

@media (max-width: 600px) {
    .ox-journey__node-phase {
        display: none;
    }

    .ox-journey__body {
        padding: 24px 20px 28px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ox-journey__card,
    .ox-journey__node {
        transition: none;
    }

    .ox-journey__card:hover {
        transform: none;
    }
}

/* Values — bento grid */
.ox-values {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 65% 50% at 100% 0%, rgba(255, 192, 51, 0.08), transparent 58%),
        radial-gradient(ellipse 50% 40% at 0% 100%, rgba(161, 98, 7, 0.06), transparent 55%),
        #fafaf9;
    padding-block: clamp(72px, 9vw, 112px);
}

.ox-values__ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ox-values__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.55;
}

.ox-values__glow--cyan {
    width: 380px;
    height: 380px;
    top: -120px;
    right: 5%;
    background: rgba(255, 192, 51, 0.14);
}

.ox-values__glow--gold {
    width: 320px;
    height: 320px;
    bottom: -100px;
    left: -60px;
    background: rgba(249, 178, 51, 0.12);
}

.ox-values__glow--violet {
    width: 280px;
    height: 280px;
    top: 40%;
    left: 45%;
    background: rgba(255, 192, 51, 0.08);
}

.ox-values__gridlines {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    background-image:
        linear-gradient(rgba(10, 10, 10, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 10, 10, 0.025) 1px, transparent 1px);
    background-size: 56px 56px;
}

body.is-about .ox-values .container {
    position: relative;
    z-index: 1;
}

.ox-values__head {
    max-width: 42rem;
    margin: 0 auto clamp(40px, 5vw, 56px);
    text-align: center;
}

.ox-values__title-accent {
    display: block;
    margin-top: 0.4em;
    font-size: clamp(1.0625rem, 2vw, 1.375rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--color-link) 0%, #a16207 50%, #a16207 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ox-values-bento {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 22px);
}

.ox-values-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(10, 10, 10, 0.08);
    background: #fff;
    box-shadow:
        0 1px 2px rgba(10, 10, 10, 0.04),
        0 16px 40px rgba(10, 10, 10, 0.06);
    overflow: hidden;
    transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.ox-values-card:hover {
    border-color: color-mix(in srgb, var(--value-accent, var(--color-link)) 40%, transparent);
    box-shadow:
        0 1px 2px rgba(10, 10, 10, 0.04),
        0 24px 52px color-mix(in srgb, var(--value-accent, var(--color-link)) 12%, transparent);
    transform: translateY(-4px);
}

.ox-values-card--hero {
    grid-column: span 7;
    flex-direction: row;
    align-items: stretch;
}

.ox-values-card--side {
    grid-column: span 5;
}

.ox-values-card--tile {
    grid-column: span 4;
}

.ox-values-card__visual {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        145deg,
        color-mix(in srgb, var(--value-accent, var(--color-link)) 16%, #fff) 0%,
        color-mix(in srgb, var(--value-accent, var(--color-link)) 6%, #f8fafc) 100%
    );
}

.ox-values-card--hero .ox-values-card__visual {
    flex: 0 0 46%;
    min-height: 260px;
}

.ox-values-card--side .ox-values-card__visual,
.ox-values-card--tile .ox-values-card__visual {
    aspect-ratio: 16 / 10;
    min-height: 140px;
}

.ox-values-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.92;
    transition: transform 0.35s var(--ease-out), opacity 0.25s;
}

.ox-values-card:hover .ox-values-card__visual img {
    transform: scale(1.04);
    opacity: 1;
}

.ox-values-card__visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 30%,
        color-mix(in srgb, var(--value-accent, var(--color-link)) 22%, transparent) 100%
    );
    pointer-events: none;
}

.ox-values-card__icon {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #fff;
    background: var(--value-accent, var(--color-link));
    box-shadow: 0 8px 20px color-mix(in srgb, var(--value-accent, var(--color-link)) 35%, transparent);
    z-index: 2;
}

.ox-values-card__icon svg {
    width: 24px;
    height: 24px;
}

.ox-values-card__num {
    position: absolute;
    bottom: 12px;
    right: 16px;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1;
    color: rgba(255, 255, 255, 0.35);
    z-index: 2;
    pointer-events: none;
    user-select: none;
}

.ox-values-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(24px, 3vw, 32px);
    min-width: 0;
    flex: 1;
}

.ox-values-card--hero .ox-values-card__body {
    padding: clamp(28px, 3.5vw, 40px);
}

.ox-values-card__title {
    font-family: var(--font-display);
    font-size: clamp(1.125rem, 1.8vw, 1.375rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: var(--color-text);
}

.ox-values-card--hero .ox-values-card__title {
    font-size: clamp(1.375rem, 2.4vw, 1.75rem);
    margin-bottom: 14px;
}

.ox-values-card__title::before {
    content: '';
    display: block;
    width: 32px;
    height: 3px;
    border-radius: 2px;
    background: var(--value-accent, var(--color-link));
    margin-bottom: 14px;
}

.ox-values-card__text {
    color: var(--color-text-muted);
    font-size: 0.9875rem;
    line-height: 1.7;
    margin: 0;
}

.ox-values-card--hero .ox-values-card__text {
    font-size: 1.0625rem;
    max-width: 34rem;
}

@media (max-width: 1024px) {
    .ox-values-card--hero,
    .ox-values-card--side,
    .ox-values-card--tile {
        grid-column: span 6;
    }

    .ox-values-card--hero {
        flex-direction: column;
    }

    .ox-values-card--hero .ox-values-card__visual {
        flex: none;
        width: 100%;
        min-height: 200px;
    }
}

@media (max-width: 700px) {
    .ox-values-bento {
        grid-template-columns: 1fr;
    }

    .ox-values-card--hero,
    .ox-values-card--side,
    .ox-values-card--tile {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ox-values-card,
    .ox-values-card__visual img {
        transition: none;
    }

    .ox-values-card:hover {
        transform: none;
    }

    .ox-values-card:hover .ox-values-card__visual img {
        transform: none;
    }
}

/* Values (legacy — other pages) */
.ox-about-values {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 60% 50% at 100% 0%, rgba(255, 192, 51, 0.06), transparent 55%),
        #ffffff;
}

.ox-about-values__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ox-about-values__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.ox-about-values__glow--1 {
    width: 360px;
    height: 360px;
    top: -100px;
    right: 8%;
    background: rgba(249, 178, 51, 0.1);
}

.ox-about-values__glow--2 {
    width: 280px;
    height: 280px;
    bottom: -80px;
    left: 4%;
    background: rgba(249, 178, 51, 0.08);
}

body.is-about .ox-about-values .container {
    position: relative;
    z-index: 1;
}

body.is-about .ox-about-values__grid {
    gap: clamp(16px, 2vw, 22px);
    background: transparent;
    border: none;
    border-radius: 0;
}

body.is-about .ox-about-value {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out), transform 0.22s var(--ease-out);
}

body.is-about .ox-about-value:hover {
    border-color: rgba(249, 178, 51, 0.4);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

body.is-about .ox-about-values__grid .ox-about-value:last-child:nth-child(odd) {
    grid-column: auto;
}

/* Leaders */
.ox-about-leaders {
    position: relative;
    overflow: hidden;
}

.ox-about-leaders__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ox-about-leaders__gridlines {
    position: absolute;
    inset: 0;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(255, 192, 51, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 192, 51, 0.08) 1px, transparent 1px);
    background-size: 48px 48px;
}

.ox-about-leaders__glow {
    position: absolute;
    width: 420px;
    height: 420px;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(251, 191, 36, 0.12);
    filter: blur(90px);
}

body.is-about .ox-about-leaders .container {
    position: relative;
    z-index: 1;
}

body.is-about .ox-about-leader {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(8px);
}

body.is-about .ox-about-leader__avatar {
    border: 1px solid rgba(251, 191, 36, 0.35);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.12);
}

/* CTA */
body.is-about .ox-cta--dark {
    position: relative;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.92);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(ellipse 60% 50% at 50% 100%, rgba(251, 191, 36, 0.14), transparent 60%),
        radial-gradient(ellipse 50% 40% at 0% 0%, rgba(255, 192, 51, 0.1), transparent 50%),
        #07070d;
}

body.is-about .ox-cta__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(255, 192, 51, 0.05), transparent);
}

body.is-about .ox-about-cta__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

body.is-about .ox-about-cta__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
}

body.is-about .ox-about-cta__glow--1 {
    width: 380px;
    height: 380px;
    top: -120px;
    right: 10%;
    background: rgba(255, 192, 51, 0.16);
}

body.is-about .ox-about-cta__glow--2 {
    width: 320px;
    height: 320px;
    bottom: -100px;
    left: 8%;
    background: rgba(251, 191, 36, 0.14);
}

body.is-about .ox-cta--dark .container {
    position: relative;
    z-index: 1;
}

body.is-about .ox-cta--dark .ox-cta__title {
    background: linear-gradient(135deg, #fff 0%, var(--color-accent-bright) 42%, #fbbf24 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

body.is-about .ox-cta--dark .ox-cta__text,
body.is-about .ox-cta--dark .ox-cta__contacts a {
    color: rgba(255, 255, 255, 0.58);
}

body.is-about .ox-cta--dark .ox-cta__contacts a:hover {
    color: var(--color-accent-bright);
}

@media (max-width: 1024px) {
    body.is-about .ox-about-stats .ox-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    body.is-about .ox-about-story__content {
        padding: 22px 20px;
    }

    body.is-about .ox-about-stats .ox-stats,
    body.is-about .ox-about-leaders__grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.is-about .ox-about-stats .ox-stat,
    body.is-about .ox-about-value {
        transition: none;
    }

    body.is-about .ox-about-stats .ox-stat:hover,
    body.is-about .ox-about-value:hover {
        transform: none;
    }
}
