:root {
    --bg-dark: #010204;
    --bg-darker: #000103;
    --accent: #ff7a18;
    --accent-alt: #ffb347;
    --text-light: #f5f5f5;
    --muted: #a7abc1;
    --card: rgba(255, 255, 255, 0.04);
    --hero-belt-gap: clamp(2.5rem, 5vw, 4rem);
}

* {
    box-sizing: border-box;
}

body {
    background: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    min-height: 100vh;
    position: relative;
}

main {
    position: relative;
    z-index: 2;
}

.neural-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: lighten;
}

.neural-canvas-static {
    opacity: 0.45;
    background: radial-gradient(circle at 25% 25%, rgba(255, 122, 24, 0.12), transparent 55%),
        radial-gradient(circle at 70% 35%, rgba(255, 179, 71, 0.08), transparent 60%),
        #010204;
    overflow: hidden;
}

.neural-canvas-static::before,
.neural-canvas-static::after {
    content: '';
    position: absolute;
    inset: -25%;
    background: conic-gradient(rgba(255, 122, 24, 0.18), rgba(255, 179, 71, 0.04), rgba(255, 122, 24, 0.18));
    opacity: 0.25;
    filter: blur(80px);
    animation: neuralDrift 32s linear infinite;
}

.neural-canvas-static::after {
    animation-duration: 48s;
    animation-direction: reverse;
    opacity: 0.18;
    mix-blend-mode: screen;
}

.neural-canvas-dynamic {
    opacity: 0.8;
    background: transparent;
}

a {
    color: var(--text-light);
    text-decoration: none;
}

a:hover {
    color: var(--accent);
}

.brand-type {
    font-family: 'Orbitron', 'Inter', sans-serif;
    letter-spacing: 0.1em;
    font-size: 1rem;
}

.navbar-brand img {
    max-height: 36px;
}

.site-header {
    background: transparent;
    z-index: 5;
}

.navbar {
    background: rgba(1, 2, 4, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    margin-top: 1rem;
}

.navbar .nav-link {
    color: var(--muted);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
}

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

.btn-gradient {
    background: linear-gradient(120deg, var(--accent), var(--accent-alt));
    color: #000;
    border: none;
    border-radius: 999px;
    padding: 0.65rem 1.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-gradient:hover {
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255, 122, 24, 0.45);
}

.hero {
    padding: 6rem 0 var(--hero-belt-gap);
    background: radial-gradient(circle at top right, rgba(255, 122, 24, 0.18), transparent 45%),
        radial-gradient(circle at 20% 20%, rgba(255, 179, 71, 0.15), transparent 55%),
        linear-gradient(145deg, #010204, #050914);
    position: relative;
}

.hero-video {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 122, 24, 0.32), transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(255, 179, 71, 0.2), transparent 55%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.15), rgba(1, 2, 4, 0.85));
    filter: blur(24px);
    opacity: 0.78;
    animation: glow 10s ease-in-out infinite;
}

.floating-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-shapes span {
    position: absolute;
    width: 160px;
    height: 160px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 32% 68% 45% 55% / 50% 30% 70% 50%;
    box-shadow: 0 0 35px rgba(255, 122, 24, 0.35);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 60%);
    animation: float 10s ease-in-out infinite;
}

.floating-shapes span:nth-child(1) {
    top: 10%;
    left: 5%;
}

.floating-shapes span:nth-child(2) {
    top: 60%;
    left: 15%;
    animation-delay: 2s;
}

.floating-shapes span:nth-child(3) {
    top: 20%;
    right: 15%;
    animation-delay: 4s;
}

.floating-shapes span:nth-child(4) {
    bottom: 10%;
    right: 5%;
    animation-delay: 6s;
}


.neon-orb {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 122, 24, 0.35), transparent 60%);
    filter: blur(10px);
    z-index: 0;
}

.orb-left {
    top: -60px;
    left: -80px;
}

.orb-right {
    bottom: -80px;
    right: -120px;
}

.page-loader {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(255, 122, 24, 0.16), transparent 55%),
        radial-gradient(circle at 85% 70%, rgba(255, 179, 71, 0.12), transparent 60%),
        linear-gradient(145deg, #020204, #050301 55%, #0b0500);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(2rem, 5vw, 4rem);
    z-index: 999;
    overflow: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    color: var(--text-light);
}

.page-loader::before {
    content: '';
    position: absolute;
    inset: -30% -15%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 122, 24, 0.3), transparent 55%),
        radial-gradient(circle at 75% 40%, rgba(255, 179, 71, 0.22), transparent 60%);
    filter: blur(70px);
    opacity: 0.5;
    animation: loaderAurora 18s ease-in-out infinite alternate;
    z-index: 1;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 25% 35%, rgba(255, 122, 24, 0.08), transparent 60%);
    z-index: 2;
    overflow: hidden;
}

.loader-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(255, 122, 24, 0.06) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 122, 24, 0.06) 1px, transparent 1px);
    background-size: 140px 140px;
    opacity: 0.12;
}

.loader-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 80%, rgba(255, 122, 24, 0.12), transparent 55%);
    mix-blend-mode: screen;
}

.loader-core {
    position: relative;
    z-index: 3;
    width: min(480px, 92vw);
    padding: clamp(2.2rem, 4vw, 3rem);
    border-radius: 36px;
    background: radial-gradient(circle at 50% 20%, rgba(255, 122, 24, 0.15), rgba(5, 3, 2, 0.95));
    border: 1px solid rgba(255, 122, 24, 0.28);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.75), inset 0 0 35px rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(18px);
    text-align: center;
    animation: loaderCoreReveal 0.8s ease forwards;
}

.loader-core::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 34px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 122, 24, 0.45)) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.loader-logo-shell {
    position: relative;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    margin: 0 auto 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px;
    background: #030303;
    border: 1px solid rgba(255, 122, 24, 0.45);
    box-shadow: 0 0 35px rgba(255, 122, 24, 0.4), 0 0 80px rgba(255, 122, 24, 0.2);
    overflow: visible;
}

.loader-logo-shell img {
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.75));
    animation: loaderLogoGlow 3.2s ease-in-out infinite;
}

.loader-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.ring-outer {
    inset: -18px;
    border: 1px solid rgba(255, 122, 24, 0.35);
    box-shadow: 0 0 30px rgba(255, 122, 24, 0.35);
    animation: loaderRingPulse 6s ease-in-out infinite;
}

.ring-inner {
    inset: 8px;
    border: 1px solid rgba(255, 122, 24, 0.18);
    box-shadow: inset 0 0 15px rgba(255, 122, 24, 0.2);
    opacity: 0.5;
}

.loader-orbit-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffd8a0, #ff9a36);
    box-shadow: 0 0 18px rgba(255, 170, 82, 0.8), 0 0 35px rgba(255, 122, 24, 0.35);
    animation: loaderOrbitDot 4.5s linear infinite;
    z-index: 2;
}

.loader-tag {
    text-transform: uppercase;
    letter-spacing: 0.45em;
    font-size: 0.72rem;
    color: rgba(255, 186, 97, 0.75);
    margin-bottom: 0.55rem;
}

.loader-minimal-status {
    font-family: 'Orbitron', 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.45em;
    font-size: 0.78rem;
    color: rgba(255, 186, 97, 0.8);
    margin-bottom: 1.25rem;
}

.loader-status-line {
    font-family: 'Orbitron', 'Inter', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #f6f8ff;
    margin-bottom: 1.5rem;
}

.loader-progress {
    position: relative;
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 122, 24, 0.18);
    overflow: hidden;
    margin-top: 0.5rem;
}

.loader-progress-bar {
    position: absolute;
    inset: 0;
    width: 100%;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(120deg, rgba(255, 122, 24, 0.35), rgba(255, 186, 97, 0.95));
    transition: transform 0.35s ease;
}


.hero-visual {
    height: 100%;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.hero-webgl-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    margin-bottom: 1.75rem;
    border-radius: 20px;
    overflow: hidden;
}

.hero-webgl-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../img/sm2care_logo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60% auto;
    pointer-events: none;
    z-index: 1;
}

#heroWebgl {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    z-index: 2;
    cursor: grab;
    touch-action: none;
    user-select: none;
}

#heroWebgl.is-interacting {
    cursor: grabbing;
}

.hero-panel-content ul li {
    color: var(--muted);
}

.blueprint-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
}

.blueprint-item:last-child {
    border-bottom: none;
}

.blueprint-item p {
    color: var(--muted);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.typed-highlight {
    font-family: 'Orbitron', 'Inter', sans-serif;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-alt);
    margin-top: 1rem;
    display: block;
    min-height: 48px;
    line-height: 1.2;
}

.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.12);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ripple:hover::after {
    opacity: 1;
}

.ripple span {
    position: absolute;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border-radius: 50%;
    background: rgba(255, 122, 24, 0.35);
    animation: ripple 0.6s linear;
}

.hero .badge {
    background: rgba(255, 122, 24, 0.15);
    color: var(--accent-alt);
    border-radius: 999px;
    padding: 0.45rem 1rem;
    letter-spacing: 0.1em;
    font-size: 0.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 32px;
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.hero-meta div {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: border-color 0.3s ease;
}

.hero-meta div:hover {
    border-color: rgba(255, 122, 24, 0.4);
}

.hero-meta small {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    color: var(--accent);
}

.hero-meta p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.typed-inline {
    color: var(--accent);
    font-weight: 600;
}

.noise-layer {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"%3E%3Crect width="200" height="200" fill="%23010103"/%3E%3Cpath d="M0 0h200v200H0z" fill="none" opacity="0.05" stroke="%23fff" stroke-width="1"/%3E%3C/svg%3E');
    opacity: 0.4;
    mix-blend-mode: screen;
}

.hero-ticker {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.35);
}

.ticker-track {
    display: inline-flex;
    gap: 2rem;
    white-space: nowrap;
    animation: ticker 22s linear infinite;
}

.ticker-item {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    color: var(--muted);
    padding: 0.75rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.stat-chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    padding: 1rem 1.2rem;
    min-height: 120px;
}

.stat-chip span {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-alt);
}

.glass-card {
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.hero-panel ul {
    list-style: none;
    padding-left: 0;
}

.icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent);
    font-size: 1.2rem;
}

.pulse {
    animation: pulse 2.2s ease-in-out infinite;
}

.orbitron-label {
    font-family: 'Orbitron', 'Inter', sans-serif;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    color: var(--accent-alt);
}

.service-card,
.blog-card,
.metric-card,
.side-card,
.impact-card,
.contact-form,
.contact-info {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 1.7rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card ul,
.side-card ul,
.case-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.service-card ul li,
.side-card ul li,
.case-card ul li {
    color: var(--muted);
    font-size: 0.9rem;
}

.neon-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 122, 24, 0.05));
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.neon-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 122, 24, 0.6);
    box-shadow: 0 20px 60px rgba(255, 122, 24, 0.25);
}

.neon-card-static {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 122, 24, 0.08));
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.neon-card-static:hover {
    border-color: rgba(255, 122, 24, 0.55);
    box-shadow: 0 18px 50px rgba(255, 122, 24, 0.2);
}

.case-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 1.7rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(130deg, rgba(5, 5, 7, 0.95), rgba(20, 8, 2, 0.9));
    background-size: 180% 180%;
    text-align: left;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background-position 0.8s ease;
}

.case-card::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 22px;
    background: radial-gradient(circle at 20% 20%, rgba(255, 122, 24, 0.18), transparent 55%),
        radial-gradient(circle at 75% 65%, rgba(255, 179, 71, 0.22), transparent 45%);
    opacity: 0.5;
    transition: opacity 0.35s ease;
    pointer-events: none;
    mix-blend-mode: screen;
}

.case-card::after {
    content: '';
    position: absolute;
    inset: -30%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 122, 24, 0.25), transparent 60%);
    opacity: 0;
    filter: blur(55px);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
    z-index: -1;
}

.case-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 122, 24, 0.6);
    box-shadow: 0 24px 70px rgba(255, 122, 24, 0.28), 0 0 30px rgba(0, 0, 0, 0.65);
    background-position: 60% 20%;
}

.case-card:hover::before {
    opacity: 0.9;
}

.case-card:hover::after {
    opacity: 0.6;
    transform: scale(1.1);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.service-tag {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.7rem;
    color: var(--muted);
}

.service-index {
    font-family: 'Orbitron', 'Inter', sans-serif;
    color: var(--accent);
    font-size: 0.85rem;
}

.service-card ul li::before {
    content: '•';
    color: var(--accent-alt);
    margin-right: 0.5rem;
}

.text-muted {
    color: var(--muted) !important;
}

.section-heading .eyebrow,
.page-hero .eyebrow,
.case-detail .eyebrow,
.partners-highlight .eyebrow,
.service-card .eyebrow,
.about-card .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.75rem;
    color: var(--accent-alt);
    font-family: 'Orbitron', 'Inter', sans-serif;
}

.split-text .split-word {
    display: inline-block;
}

.split-text .split-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
}

.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ripple:hover::after {
    opacity: 1;
}

.ripple span {
    position: absolute;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border-radius: 50%;
    background: rgba(255, 122, 24, 0.4);
    animation: ripple 0.6s linear;
}

.partner-belt {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 0;
    margin-bottom: 0;
    padding: 1.2rem 0;
    background: linear-gradient(180deg, rgba(1, 2, 4, 0.98) 0%, rgba(1, 2, 4, 0.9) 60%, rgba(1, 2, 4, 0.82) 100%);
    overflow: hidden;
    position: relative;
    z-index: 3;
    box-shadow: 0 -30px 60px rgba(0, 0, 0, 0.45);
    will-change: transform;
}

.partner-belt::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -5%;
    right: -5%;
    height: 40px;
    background: linear-gradient(180deg, rgba(1, 2, 4, 0) 0%, rgba(1, 2, 4, 0.9) 90%);
    pointer-events: none;
    z-index: -1;
}

.belt-track {
    display: flex;
    width: max-content;
    animation: marquee 60s linear infinite;
    will-change: transform;
}

.belt-sequence {
    display: flex;
    gap: 4rem;
    flex-shrink: 0;
    white-space: nowrap;
    padding: 0.9rem 0;
}

.belt-sequence span {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-family: 'Orbitron', 'Inter', sans-serif;
    color: var(--muted);
}

.partners-highlight {
    background: radial-gradient(circle at 18% 25%, rgba(255, 122, 24, 0.15), transparent 55%),
        radial-gradient(circle at 80% 0%, rgba(255, 179, 71, 0.12), transparent 65%),
        linear-gradient(140deg, #05070e, #080912 65%, #040507 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.partners-highlight::before,
.partners-highlight::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 122, 24, 0.12), transparent 65%);
    filter: blur(18px);
    opacity: 0.4;
    pointer-events: none;
}

.partners-highlight::before {
    top: -160px;
    right: -120px;
}

.partners-highlight::after {
    bottom: -180px;
    left: -90px;
    opacity: 0.25;
}

.partner-slider {
    padding: clamp(1.5rem, 3vw, 2.6rem);
    border-radius: 28px;
    background: linear-gradient(160deg, rgba(11, 13, 21, 0.95), rgba(6, 7, 13, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.55);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(22px);
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
}

.partner-slider.is-dragging {
    cursor: grabbing;
}

.partner-track {
    display: flex;
    width: max-content;
    gap: clamp(2.8rem, 5vw, 4rem);
    will-change: transform;
}

.partner-loop {
    display: flex;
    gap: clamp(1.8rem, 3vw, 2.4rem);
    padding-right: clamp(2rem, 4vw, 4rem);
}

.partner-card {
    position: relative;
    isolation: isolate;
    width: clamp(170px, 16vw, 200px);
    height: 120px;
    border-radius: 26px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    filter: saturate(1.05);
    border: 1px solid rgba(255, 122, 24, 0.25);
    box-shadow: 0 0 18px rgba(255, 122, 24, 0.25), 0 18px 50px rgba(5, 6, 9, 0.25);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
    overflow: hidden;
    backdrop-filter: blur(6px);
}

.partner-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.9), transparent 60%),
        radial-gradient(circle at 10% 15%, rgba(255, 122, 24, 0.18), transparent 55%),
        radial-gradient(circle at 90% 85%, rgba(5, 7, 18, 0.12), transparent 60%);
    opacity: 0.85;
}

.partner-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.65), transparent 55%);
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.partner-card img {
    max-width: 100%;
    max-height: 64px;
    object-fit: contain;
    filter: none;
    opacity: 0.95;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 0 35px rgba(255, 122, 24, 0.45), 0 28px 70px rgba(5, 6, 9, 0.35);
    border-color: var(--accent);
}

.partner-card:hover::after {
    opacity: 0.6;
}

.partner-card:hover img,
.partner-card:focus-visible img {
    opacity: 1;
    transform: scale(1.02);
}

.partner-card:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

.partner-slider::before,
.partner-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 160px;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.partner-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}

.partner-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

.partner-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5) !important;
}

.partner-hint i {
    color: var(--accent);
    font-size: 0.85rem;
}

@media (prefers-reduced-motion: reduce) {
    .belt-track {
        animation: none;
        transform: none !important;
    }

    .partner-track {
        animation: none;
    }
}

.about-card,
.step-card,
.strength-card,
.blueprint-card {
    height: 100%;
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(130deg, rgba(5, 5, 7, 0.95), rgba(20, 8, 2, 0.9));
    background-size: 180% 180%;
    text-align: left;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background-position 0.8s ease;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.blueprint-card {
    display: block;
    position: relative;
    overflow: visible;
    padding: 1.4rem 1.5rem 1.4rem 4.8rem;
    border-bottom: none;
    margin-bottom: 0;
}

.blueprint-card.ripple {
    overflow: visible;
}

.blueprint-card .blueprint-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.blueprint-card .icon-circle {
    margin: 0;
    box-shadow: 0 0 0 0 rgba(255, 122, 24, 0.45);
    animation: pulse 2.2s ease-in-out infinite;
}

.blueprint-card .blueprint-copy {
    margin: 0;
}


.step-card {
    padding: 1.8rem;
}

.strength-card {
    padding: 2rem;
}

.about-card::before,
.step-card::before,
.strength-card::before,
.blueprint-card::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 18px;
    background: radial-gradient(circle at 20% 20%, rgba(255, 122, 24, 0.18), transparent 55%), radial-gradient(circle at 75% 65%, rgba(255, 179, 71, 0.22), transparent 45%);
    opacity: 0.5;
    transition: opacity 0.35s ease;
    pointer-events: none;
    mix-blend-mode: screen;
}

.about-card::after,
.step-card::after,
.strength-card::after,
.blueprint-card::after {
    content: '';
    position: absolute;
    inset: -30%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 122, 24, 0.25), transparent 60%);
    opacity: 0;
    filter: blur(45px);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
    z-index: -1;
}

.about-card i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 0.8rem;
}

.about-card:hover,
.step-card:hover,
.strength-card:hover,
.blueprint-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 122, 24, 0.6);
    box-shadow: 0 24px 70px rgba(255, 122, 24, 0.28), 0 0 30px rgba(0, 0, 0, 0.65);
    background-position: 60% 20%;
}

.about-card:hover::before,
.step-card:hover::before,
.strength-card:hover::before,
.blueprint-card:hover::before {
    opacity: 0.9;
}

.about-card:hover::after,
.step-card:hover::after,
.strength-card:hover::after,
.blueprint-card:hover::after {
    opacity: 0.6;
    transform: scale(1.1);
}

.workflow {
    position: relative;
}


.step-card i {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 0.6rem;
}

.step-number {
    font-family: 'Orbitron', 'Inter', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.strength-card {
    padding: 2rem;
}

.strength-card h5 {
    color: var(--accent-alt);
}

.testimonials .carousel-item {
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.testimonial-card {
    padding: 2.5rem;
}

.testimonial-card p {
    font-size: 1.2rem;
    color: var(--muted);
}

.faq-section .accordion-button {
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
}

.faq-section .accordion-button:not(.collapsed) {
    color: var(--accent);
    box-shadow: none;
}

.faq-section .accordion-body {
    background: rgba(255, 255, 255, 0.02);
    color: var(--muted);
}

.case-preview {
    background: var(--bg-darker);
}

.experience-panel {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 122, 24, 0.12));
    border-radius: 32px;
    margin: 0 1rem;
    border: 1px solid rgba(255, 122, 24, 0.15);
}

.experience-pill {
    background: rgba(1, 2, 4, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 1.5rem;
    height: 100%;
}

.pill-tag {
    font-family: 'Orbitron', 'Inter', sans-serif;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: var(--accent-alt);
    margin-bottom: 0.5rem;
}

.stack-marquee {
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.01);
}

.marquee-track {
    display: inline-flex;
    gap: 3rem;
    white-space: nowrap;
    animation: marquee 18s linear infinite;
    font-family: 'Orbitron', 'Inter', sans-serif;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
}

.stack-item {
    padding: 0.5rem 0;
}

.case-card .badge {
    background: rgba(255, 122, 24, 0.15);
    color: var(--accent-alt);
    border-radius: 999px;
    font-weight: 500;
}

.case-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.case-kpi {
    display: flex;
    gap: 1rem;
    font-family: 'Orbitron', 'Inter', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-alt);
}

.final-cta {
    position: relative;
    margin: 0;
    padding: 4rem 0 0;
    background: var(--bg-darker);
}

.final-cta-background {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(255, 122, 24, 0.15), transparent 45%),
        radial-gradient(circle at bottom, rgba(0, 150, 255, 0.12), transparent 55%);
    opacity: 0.9;
    pointer-events: none;
    z-index: 0;
}

.final-cta-shell {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0;
    padding: clamp(2.5rem, 5vw, 4.5rem);
    border-radius: 40px 40px 0 0;
    background: linear-gradient(145deg, rgba(255, 122, 24, 0.12), rgba(5, 7, 15, 0.92));
    border: 1px solid rgba(255, 186, 97, 0.38);
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.35), inset 0 0 60px rgba(255, 122, 24, 0.15);
}

.final-cta-copy h2 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    margin-top: 1rem;
}

.final-cta-copy p {
    max-width: 720px;
    margin: 1rem auto 0;
}

.site-footer {
    background: #000103;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 2;
}

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

.footer-links li+li {
    margin-top: 0.4rem;
}

.footer-links a,
.site-footer a {
    color: var(--muted);
}

.footer-links a:hover {
    color: #fff;
}

.inner-page .page-hero {
    padding: 4rem 0 2rem;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    margin-bottom: 1rem;
}

.alt-bg {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 28px;
    margin: 0 1rem;
    padding: 3rem 2rem;
}

.work-steps .step {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.work-steps .step:last-child {
    border-bottom: 0;
}

.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    font-family: 'Orbitron', 'Inter', sans-serif;
}

.metric-card {
    text-align: center;
}

.case-detail {
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    background: var(--card);
}

.blog-card .badge {
    background: rgba(255, 122, 24, 0.1);
    color: var(--accent);
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
}

.blog-card h3 {
    font-size: 1.2rem;
    margin-top: 1rem;
}

.contact-info ul li {
    margin-bottom: 0.8rem;
}

.form-control,
.form-select,
textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    border-radius: 14px;
}

.form-control:focus,
.form-select:focus,
textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(255, 122, 24, 0.4);
}

.form-check-input {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.form-check-input:checked {
    background-color: var(--accent);
    border-color: var(--accent);
}

.legal p {
    color: var(--muted);
    line-height: 1.8;
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 999px;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

@media (max-width: 992px) {
    .navbar {
        border-radius: 24px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 4rem;
    }

    .hero .badge {
        width: 100%;
        font-size: 0.65rem;
        letter-spacing: 0.08em;
        padding: 0.4rem 0.8rem;
        white-space: normal;
    }

    .hero-webgl-wrapper {
        height: 220px;
        margin-bottom: 1rem;
    }

    .final-cta {
        margin: 0;
    }

    .case-detail {
        padding: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .final-cta {
        padding: 3rem 0 0;
    }

    .final-cta-shell {
        padding: 2rem;
        border-radius: 32px 32px 0 0;
    }
}

@keyframes loaderAurora {
    from {
        transform: translate3d(-5%, -5%, 0) rotate(0deg);
    }

    to {
        transform: translate3d(5%, 5%, 0) rotate(6deg);
    }
}

@keyframes loaderCoreReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes loaderLogoGlow {
    0% {
        filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6));
    }

    50% {
        filter: drop-shadow(0 0 20px rgba(255, 179, 71, 0.9));
    }

    100% {
        filter: drop-shadow(0 0 10px rgba(255, 122, 24, 0.7));
    }
}

@keyframes loaderRingPulse {
    0% {
        opacity: 0.5;
        transform: scale(0.96);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0.5;
        transform: scale(0.96);
    }
}

@keyframes loaderOrbitDot {
    from {
        transform: translate(-50%, -50%) rotate(0deg) translateX(86px);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg) translateX(86px);
    }
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

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

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

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

@keyframes ripple {
    0% {
        width: 0;
        height: 0;
        opacity: 0.6;
    }

    100% {
        width: 400px;
        height: 400px;
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 122, 24, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 122, 24, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 122, 24, 0);
    }
}

@keyframes glow {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0);
    }

    50% {
        transform: translate(20px, -40px) rotate(8deg);
    }

    100% {
        transform: translate(0, 0) rotate(0);
    }
}

@keyframes neuralDrift {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.05);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}
