/* ══════════════════════════════════════════════════════════
   MATANGA AGENCY V2 — Full Design System
   Multi-page site: Home, Projets, Projet-Detail, Agence, Contact
   ══════════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ─── */
:root {
    --void: #0a0820;
    --void-deep: #060514;
    --void-light: #12102a;
    --void-mid: #1a1740;
    --surface: #1e1b3a;
    --text: #eee8f5;
    --text-muted: #9a93b5;
    --text-dim: #5a5478;
    --neon-orange: #FF4D00;
    --neon-violet: #7B61FF;
    --neon-blue: #00D4FF;
    --neon-cyan: #00FFD1;
    --neon-pink: #FF2DAA;
    --accent: var(--neon-orange);
    --gradient-primary: linear-gradient(135deg, var(--neon-orange), var(--neon-violet), var(--neon-blue));
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Inter', system-ui, -apple-system, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ─── Reset ─── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ─── Curseur standard ─── */
html,
body {
    cursor: default;
}

a,
button,
[data-hover],
.btn,
input[type="submit"],
select,
label {
    cursor: pointer;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background: var(--void);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.my-auto {
    margin-bottom: auto;
    margin-top: auto;
}

.mb-0 {
    margin-bottom: 0 !important;
}

/* ─── PAGE TRANSITION ─── */
.page-transition {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--void-deep);
    pointer-events: none;
    transform: translateY(0);
    transition: transform 0.6s var(--ease-out);
}

.page-transition.entered {
    transform: translateY(-100%);
}

.page-transition.exiting {
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}

.page-transition__inner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    background-size: 200% 100%;
    animation: gradient-shift 2s ease infinite;
}

/* ─── LOADER ─── */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--void-deep);
    gap: var(--space-sm);
    transition: clip-path 0.8s var(--ease-out), opacity 0.6s;
    clip-path: circle(150% at 50% 50%);
}

.loader.loaded {
    clip-path: circle(0% at 50% 50%);
    opacity: 0;
    pointer-events: none;
}

.loader__logo {
    width: 60px;
    height: 60px;
    animation: spin 3s linear infinite;
}

.loader__logo svg {
    width: 100%;
    height: 100%;
}

.loader__percent {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
}

.loader__text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--text-muted);
}

.loader__bar-container {
    width: 120px;
    height: 2px;
    background: var(--void-mid);
    border-radius: 2px;
    overflow: hidden;
}

.loader__bar {
    height: 100%;
    width: 0%;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.3s;
}

.loader__line {
    font-family: monospace;
    font-size: 0.7rem;
    color: var(--text-dim);
    margin-top: var(--space-xs);
}

/* ─── SCROLL PROGRESS ─── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 9998;
    background: transparent;
}

.scroll-progress__bar {
    height: 100%;
    width: 0%;
    background: var(--gradient-primary);
    transition: width 0.05s linear;
}

/* ─── GRAIN OVERLAY ─── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9990;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.4;
}

/* ─── CURSOR (désactivé — pointeur par défaut) ─── */
.cursor,
.cursor-dot,
.cursor-trail,
.cursor__label {
    display: none !important;
}

/* ─── HEADER ─── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--space-md) 0;
    transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}

.header.scrolled {
    background: rgba(10, 8, 32, 0.85);
    backdrop-filter: blur(24px);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.header__logo img {
    height: 38px;
    width: auto;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav__link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.nav__link:hover,
.nav__link.active {
    color: var(--text);
}

.nav__link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--neon-orange);
    border-radius: 2px;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: transform 0.3s, opacity 0.3s;
}

.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--neon-orange);
    color: #fff;
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s var(--ease-out);
}

.btn--primary:hover::before {
    left: 150%;
}

.btn--primary:hover {
    background: #ff6a2c;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 77, 0, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
}

.btn--outline:hover {
    border-color: var(--neon-orange);
    color: var(--neon-orange);
    transform: translateY(-2px);
}

.btn--sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.75rem;
}

.btn--lg {
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
}

.btn i {
    font-size: 0.8em;
    transition: transform 0.3s;
}

.btn:hover i {
    transform: translateX(4px);
}

/* ─── SECTIONS ─── */
.section {
    padding: var(--space-xl) 0;
}

.section__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--neon-orange);
    font-weight: 600;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    max-width: 700px;
    letter-spacing: -0.02em;
}

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

.section__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 5s ease infinite;
}

.glitch {
    position: relative;
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: var(--space-3xl) 0;
}

#hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero__content {
    max-width: 900px;
    position: relative;
}

.hero__label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    animation: revealUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero__label-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--neon-orange);
    animation: pulse-dot 2s ease-in-out infinite;
}

.hero__title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-lg);
}

.hero__title .line {
    display: block;
    overflow: hidden;
}

.hero-title-img {
    position: absolute;
    right: 10%;
    top: 10%;
    transform: translateY(-50%);
    height: clamp(180px, 25vw, 350px);
    width: auto;
    opacity: 0;
    animation: revealUp 0.8s var(--ease-out) 0.9s forwards;
    pointer-events: none;
}

@media (max-width: 768px) {
    .hero-title-img {
        display: none;
    }
}

.hero__title .line span {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: slideUp 0.8s var(--ease-out) forwards;
}

.hero__title .line:nth-child(1) span {
    animation-delay: 0.4s;
}

.hero__title .line:nth-child(2) span {
    animation-delay: 0.55s;
}

.hero__title .line:nth-child(3) span {
    animation-delay: 0.7s;
}

.hero__subtitle {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 0.8s var(--ease-out) 0.9s forwards;
}

.hero__actions {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 0.8s var(--ease-out) 1.1s forwards;
}

.hero__clients {
    margin-top: var(--space-2xl);
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 0.8s var(--ease-out) 1.3s forwards;
}

.hero__clients-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--text-dim);
    display: block;
    margin-bottom: var(--space-sm);
}

.hero__clients-logos {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.hero__clients-logos span {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dim);
    transition: color 0.3s;
    cursor: default;
}

.hero__clients-logos span:hover {
    color: var(--neon-orange);
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: revealUp 0.8s var(--ease-out) 1.5s forwards;
}

.hero__scroll-text {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--text-dim);
}

.hero__scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, var(--neon-orange), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
    padding: calc(var(--space-3xl) + 80px) 0 var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.page-hero>.container {
    position: relative;
    z-index: 2;
}

.page-hero--tall {
    padding-bottom: var(--space-3xl);
}

.page-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--neon-orange);
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

.page-hero__title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-lg);
    max-width: 850px;
}

.page-hero__subtitle {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 640px;
}

/* ─── MARQUEE ─── */
.marquee {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--space-md) 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee__track {
    display: flex;
    gap: var(--space-xl);
    animation: marquee 25s linear infinite;
    width: max-content;
}

.marquee__item {
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.marquee__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--neon-orange);
    flex-shrink: 0;
}

/* ─── MANIFESTO ─── */
.manifesto {
    padding: var(--space-2xl) 0;
}

.manifesto__content {
    max-width: 1000px;
    margin: 0 auto;
}

.manifesto__text {
    font-size: clamp(1.6rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.manifesto__text .word {
    color: var(--text-dim);
    transition: color 0.5s var(--ease-out);
    display: inline-block;
}

.manifesto__text .word.lit {
    color: var(--text);
}

.manifesto__text .word.accent.lit {
    color: var(--neon-orange);
}

/* ─── FEATURED PROJECTS ─── */
.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.featured-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: block;
    min-height: 450px;
    cursor: pointer;
    transition: transform 0.6s var(--ease-out);
}

.featured-card--wide {
    grid-column: 1 / -1;
    min-height: 500px;
}

.featured-card:hover {
    transform: scale(1.02);
}

.featured-card__bg {
    position: absolute;
    inset: 0;
    background: var(--card-bg);
    background-size: 200% 200%;
    animation: gradient-shift 8s ease infinite;
    transition: transform 0.6s var(--ease-out);
}

.featured-card:hover .featured-card__bg {
    transform: scale(1.08);
}

.featured-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl);
    z-index: 2;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

.featured-card__cat {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-xl);
    background: rgba(255, 77, 0, 0.2);
    border: 1px solid rgba(255, 77, 0, 0.3);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: var(--neon-orange);
    margin-bottom: var(--space-sm);
}

.featured-card__title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: var(--space-xs);
}

.featured-card__desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 500px;
}

/* ─── SERVICES ─── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-md);
}

@property --card-angle {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0deg;
}

.service-card {
    position: relative;
    padding: var(--space-xl) var(--space-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
    backdrop-filter: blur(12px);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: conic-gradient(from var(--card-angle), transparent 60%, var(--neon-orange) 80%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
    animation: rotate-border 4s linear infinite;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(255, 77, 0, 0.08);
}

.service-card__number {
    font-family: monospace;
    font-size: 0.7rem;
    color: var(--text-dim);
}

.service-card__icon {
    font-size: 2rem;
    margin: var(--space-md) 0;
}

.service-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.service-card__text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ─── GALLERY PAGE ─── */
.filter-bar {
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: var(--space-lg);
    position: sticky;
    top: 65px;
    z-index: 50;
    background: rgba(10, 8, 32, 0.9);
    backdrop-filter: blur(20px);
}

.filter-bar__inner {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.filter-btn:hover {
    border-color: var(--neon-orange);
    color: var(--text);
}

.filter-btn.active {
    background: var(--neon-orange);
    border-color: var(--neon-orange);
    color: #fff;
}

.filter-btn__count {
    font-size: 0.65rem;
    opacity: 0.7;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.gallery-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: block;
    min-height: 400px;
    cursor: pointer;
    transition: transform 0.5s var(--ease-out), opacity 0.4s;
}

.gallery-card--full {
    grid-column: 1 / -1;
    min-height: 550px;
}

.gallery-card.hidden {
    display: none;
}

.gallery-card:hover {
    transform: scale(1.015);
}

.gallery-card__bg {
    position: absolute;
    inset: 0;
    background: var(--card-bg);
    background-size: 200% 200%;
    animation: gradient-shift 8s ease infinite;
    transition: transform 0.6s var(--ease-out);
}

.gallery-card:hover .gallery-card__bg {
    transform: scale(1.06);
}

.gallery-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: var(--space-xl);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
    transform: translateY(10px);
    opacity: 0.8;
    transition: transform 0.5s var(--ease-out), opacity 0.4s;
}

.gallery-card:hover .gallery-card__overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-card__meta {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.gallery-card__cat {
    display: inline-flex;
    align-self: flex-start;
    font-size: .55rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    background: rgba(255, 77, 0, .12);
    color: var(--neon-orange);
    padding: .25rem .6rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 77, 0, .25);
}

.gallery-card__year {
    display: inline-flex;
    font-size: .55rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    background: rgba(10, 8, 30, .5);
    padding: .22rem .5rem;
    border-radius: 10px;
    backdrop-filter: blur(6px);
}

.gallery-card__title {
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.gallery-card__desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: var(--space-xs);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

/* ─── PROJECT DETAIL (pjt-*) ─── */

/* Hero */
.pjt-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.pjt-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10, 8, 32, .95) 0%, rgba(10, 8, 32, .6) 40%, rgba(10, 8, 32, .3) 100%);
    z-index: 1;
}

.pjt-hero__content {
    position: relative;
    z-index: 2;
    padding-bottom: var(--space-3xl);
}

.pjt-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: var(--space-lg);
}

.pjt-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: .3rem .7rem;
    border-radius: 20px;
    backdrop-filter: blur(8px);
}

.pjt-hero__badge--cat {
    background: rgba(255, 77, 0, .15);
    color: var(--neon-orange);
    border: 1px solid rgba(255, 77, 0, .3);
}

.pjt-hero__badge--year {
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .7);
    border: 1px solid rgba(255, 255, 255, .12);
}

.pjt-hero__title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-md);
    text-shadow: 0 4px 20px rgba(0, 0, 0, .5);
}

.pjt-hero__client {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .6);
    margin-bottom: var(--space-lg);
}

.pjt-hero__client span {
    color: var(--neon-orange);
    font-weight: 600;
}

.pjt-hero__scroll {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    color: rgba(255, 255, 255, .4);
    font-size: .7rem;
    animation: pjt-bounce 2s ease infinite;
}

@keyframes pjt-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

/* Content layout */
.pjt-content__wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

/* Meta sidebar */
.pjt-meta {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    position: sticky;
    top: 120px;
}

.pjt-meta__card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius-md, 12px);
    transition: border-color .3s, transform .3s;
}

.pjt-meta__card:hover {
    border-color: rgba(255, 77, 0, .2);
    transform: translateX(4px);
}

.pjt-meta__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 77, 0, .1), rgba(123, 97, 255, .1));
    color: var(--neon-orange);
    font-size: .85rem;
}

.pjt-meta__label {
    font-size: .6rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: rgba(255, 255, 255, .35);
    margin-bottom: .15rem;
}

.pjt-meta__value {
    font-size: .9rem;
    font-weight: 600;
    color: #fff;
}

/* Main content */
.pjt-main__desc {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, .7);
    margin-bottom: var(--space-2xl);
}

.pjt-main__image {
    border-radius: var(--radius-lg, 16px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .06);
    margin-bottom: var(--space-2xl);
}

.pjt-main__image img {
    width: 100%;
    display: block;
    transition: transform .6s cubic-bezier(.25, .46, .45, .94);
}

.pjt-main__image:hover img {
    transform: scale(1.03);
}

/* Related projects */
.pjt-related__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.pjt-related__card {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 320px;
    border-radius: var(--radius-lg, 16px);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    transition: transform .4s var(--ease-out);
}

.pjt-related__card:hover {
    transform: translateY(-6px);
}

.pjt-related__card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10, 8, 32, .9) 0%, transparent 60%);
    transition: background .3s;
}

.pjt-related__card:hover .pjt-related__card-overlay {
    background: linear-gradient(0deg, rgba(10, 8, 32, .95) 0%, rgba(10, 8, 32, .2) 70%);
}

.pjt-related__card-content {
    position: relative;
    z-index: 2;
    padding: var(--space-lg);
}

.pjt-related__card-cat {
    display: inline-flex;
    font-size: .5rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    background: rgba(255, 77, 0, .12);
    color: var(--neon-orange);
    padding: .22rem .55rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 77, 0, .25);
    margin-bottom: var(--space-sm);
}

.pjt-related__card-title {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
}

/* Gallery */
.pjt-gallery {
    margin-top: var(--space-xl);
}

.pjt-gallery__heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: .5rem;
    color: rgba(255, 255, 255, .8);
}

.pjt-gallery__heading i {
    color: var(--neon-orange);
}

.pjt-gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: var(--space-sm);
}

.pjt-gallery__thumb {
    position: relative;
    border-radius: var(--radius-md, 12px);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.pjt-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.pjt-gallery__thumb:hover img {
    transform: scale(1.08);
}

.pjt-gallery__thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 8, 32, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity .3s;
}

.pjt-gallery__thumb:hover .pjt-gallery__thumb-overlay {
    opacity: 1;
}

/* Lightbox */
.pjt-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, .92);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}

.pjt-lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.pjt-lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    font-size: 1.2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s, transform .3s;
    z-index: 2;
}

.pjt-lightbox__close:hover {
    background: rgba(255, 77, 0, .3);
    transform: rotate(90deg);
}

.pjt-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 1rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s;
    z-index: 2;
}

.pjt-lightbox__nav:hover {
    background: rgba(255, 77, 0, .25);
}

.pjt-lightbox__nav--prev {
    left: 1.5rem;
}

.pjt-lightbox__nav--next {
    right: 1.5rem;
}

.pjt-lightbox__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90vw;
    max-height: 85vh;
}

.pjt-lightbox__content img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-md, 12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

.pjt-lightbox__counter {
    margin-top: 1rem;
    font-size: .8rem;
    color: rgba(255, 255, 255, .5);
    letter-spacing: .15em;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .pjt-content__wrapper {
        grid-template-columns: 1fr;
    }

    .pjt-meta {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .pjt-meta__card {
        flex: 1 1 calc(50% - var(--space-md));
        min-width: 160px;
    }

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

    .pjt-lightbox__nav {
        display: none;
    }

    .pjt-related__grid {
        grid-template-columns: 1fr;
    }
}

/* Next project */
.next-project {
    position: relative;
    overflow: hidden;
}

.next-project__link {
    display: block;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    transition: transform 0.5s var(--ease-out);
}

.next-project__link:hover {
    transform: scale(1.015);
}

.next-project__bg {
    position: absolute;
    inset: 0;
    background: var(--card-bg);
    background-size: 200% 200%;
    animation: gradient-shift 8s ease infinite;
    opacity: 0.5;
    transition: opacity 0.5s;
}

.next-project__link:hover .next-project__bg {
    opacity: 0.8;
}

.next-project .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.next-project__label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    display: block;
    margin-bottom: var(--space-md);
}

.next-project__title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.next-project__arrow {
    display: inline-flex;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.4s var(--ease-out);
}

.next-project__link:hover .next-project__arrow {
    background: var(--neon-orange);
    border-color: var(--neon-orange);
    transform: translateX(10px);
}

/* ─── TIMELINE ─── */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-xl) 0;
}

.timeline__line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--neon-orange), var(--neon-violet), transparent);
    transform: translateX(-50%);
}

.timeline__item {
    position: relative;
    width: 50%;
    padding-right: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.timeline__item--right {
    margin-left: 50%;
    padding-right: 0;
    padding-left: var(--space-2xl);
}

.timeline__dot {
    position: absolute;
    top: var(--space-md);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--neon-orange);
    border: 3px solid var(--void);
    z-index: 2;
    box-shadow: 0 0 15px rgba(255, 77, 0, 0.4);
}

.timeline__item .timeline__dot {
    right: -8px;
}

.timeline__item--right .timeline__dot {
    left: -8px;
}

.timeline__card {
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    transition: border-color 0.4s, box-shadow 0.4s;
}

.timeline__card:hover {
    border-color: rgba(255, 77, 0, 0.2);
    box-shadow: 0 10px 40px rgba(255, 77, 0, 0.06);
}

.timeline__year {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 77, 0, 0.15);
    color: var(--neon-orange);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.timeline__title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: var(--space-sm);
}

.timeline__text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ─── VALUES ─── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--space-md);
}

.value-card {
    padding: var(--space-xl) var(--space-lg);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    transition: transform 0.4s var(--ease-out), border-color 0.4s;
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 77, 0, 0.2);
}

.value-card__icon {
    font-size: 1.4rem;
    margin-bottom: var(--space-md);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 77, 0, .15), rgba(123, 97, 255, .15));
    color: var(--neon-orange);
    transition: transform .3s, background .3s;
    margin-left: auto;
    margin-right: auto;
}

.value-card:hover .value-card__icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(255, 77, 0, .25), rgba(123, 97, 255, .25));
}

.value-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.value-card__text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ─── TEAM ─── */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
}

.team-card {
    text-align: center;
    width: 250px;
    padding: var(--space-xl) var(--space-lg);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.4s var(--ease-out), border-color 0.4s;
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 77, 0, 0.2);
}

.team-card__avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto var(--space-md);
    background: var(--avatar-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s var(--ease-spring);
    overflow: hidden;
}

.team-card:hover .team-card__avatar {
    transform: scale(1.1);
}

.team-card__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card__initials {
    font-size: 1.5rem;
}

.team-card__name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.team-card__role {
    font-size: 0.8rem;
    color: var(--neon-orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* ─── STATS ─── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    text-align: center;
}

.stat__ring {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-md);
}

.stat__ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.stat__ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 4;
}

.stat__ring-fill {
    fill: none;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 339.292;
    transition: stroke-dashoffset 1.5s var(--ease-out);
}

.stat[data-neon="orange"] .stat__ring-fill {
    stroke: var(--neon-orange);
    filter: drop-shadow(0 0 6px rgba(255, 77, 0, 0.4));
}

.stat[data-neon="violet"] .stat__ring-fill {
    stroke: var(--neon-violet);
    filter: drop-shadow(0 0 6px rgba(123, 97, 255, 0.4));
}

.stat[data-neon="blue"] .stat__ring-fill {
    stroke: var(--neon-blue);
    filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.4));
}

.stat[data-neon="cyan"] .stat__ring-fill {
    stroke: var(--neon-cyan);
    filter: drop-shadow(0 0 6px rgba(0, 255, 209, 0.4));
}

.stat__number {
    font-size: 2rem;
    font-weight: 900;
}

.stat__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

.neon {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── TESTIMONIALS ─── */
.testimonial-carousel {
    position: relative;
    max-width: 750px;
    margin: 0 auto;
}

.testimonial-carousel__track {
    position: relative;
    min-height: 280px;
}

.testimonial {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl);
    opacity: 0;
    transform: scale(0.95) translateY(20px);
    transition: opacity 0.6s, transform 0.6s var(--ease-out);
    pointer-events: none;
}

.testimonial.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: all;
}

.testimonial__icon {
    font-size: 4rem;
    font-weight: 900;
    color: var(--neon-orange);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.testimonial__quote {
    font-size: 1.15rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--text);
    margin-bottom: var(--space-lg);
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    justify-content: center;
}

.testimonial__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
    flex-shrink: 0;
}

.testimonial__name {
    font-weight: 600;
    font-size: 0.95rem;
}

.testimonial__role {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.testimonial-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: var(--space-lg);
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-dot.active {
    background: var(--neon-orange);
    border-color: var(--neon-orange);
}

.testimonial-carousel__progress {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    margin: var(--space-md) auto 0;
    overflow: hidden;
}

.testimonial-carousel__progress-bar {
    height: 100%;
    width: 0;
    background: var(--neon-orange);
    transition: width 0.1s linear;
}

/* ─── CTA ─── */
.cta-section {
    position: relative;
    padding: var(--space-3xl) 0;
    text-align: center;
    overflow: hidden;
}

.cta-section__aurora {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.cta-section__aurora span {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    animation: float 15s ease-in-out infinite;
}

.cta-section__aurora span:nth-child(1) {
    background: var(--neon-orange);
    top: -10%;
    left: 20%;
}

.cta-section__aurora span:nth-child(2) {
    background: var(--neon-violet);
    bottom: -20%;
    right: 10%;
    animation-delay: -5s;
}

.cta-section__aurora span:nth-child(3) {
    background: var(--neon-blue);
    top: 30%;
    right: 30%;
    animation-delay: -10s;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.cta-section__text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
}

/* ─── CONTACT ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group--full {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text);
    font-size: 0.95rem;
    font-family: var(--font-main);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.form-input:focus {
    border-color: var(--neon-orange);
    box-shadow: 0 0 20px rgba(255, 77, 0, 0.1);
}

.form-input::placeholder {
    color: var(--text-dim);
}

.form-select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239a93b5' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    color: var(--neon-orange);
}

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

.contact-form .btn {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: var(--space-sm);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-info__block {
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.3s;
}

.contact-info__block:hover {
    border-color: rgba(255, 77, 0, 0.2);
}

.contact-info__icon {
    font-size: 1.2rem;
    color: var(--neon-orange);
    margin-bottom: var(--space-sm);
}

.contact-info__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.contact-info__text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-info__link {
    transition: color 0.3s;
}

.contact-info__link:hover {
    color: var(--neon-orange);
}

.contact-info__socials {
    margin-top: var(--space-md);
}

.contact-info__socials-title {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--text-muted);
}

/* Map visual */
.map-section {
    padding: 0 clamp(1.5rem, 4vw, 4rem) var(--space-3xl);
}

.map-visual {
    position: relative;
    height: 350px;
    border-radius: var(--radius-lg);
    background: var(--void-light);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.map-visual__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
}

.map-visual__pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.map-visual__pin span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

.map-visual__pin-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--neon-orange);
    box-shadow: 0 0 20px rgba(255, 77, 0, 0.4);
    animation: pulse-dot 2s ease-in-out infinite;
}

/* ─── FOOTER ─── */
.footer {
    padding: var(--space-3xl) 0 var(--space-lg);
    position: relative;
}

.footer__gradient-line {
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--neon-orange), var(--neon-violet), var(--neon-blue), var(--neon-orange));
    background-size: 200% 100%;
    animation: gradient-shift 4s linear infinite;
    margin-bottom: var(--space-2xl);
}

.footer__cta {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.footer__cta-text {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-xl);
}

.footer__logo {
    margin-bottom: var(--space-md);
}

.footer__logo img {
    height: 32px;
}

.footer__desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.footer__socials {
    display: flex;
    gap: var(--space-sm);
}

.footer__social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: all 0.3s;
    position: relative;
}

.footer__social-link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--neon-orange);
    opacity: 0;
    transform: scale(1.5);
    transition: opacity 0.3s, transform 0.3s;
}

.footer__social-link:hover {
    color: var(--neon-orange);
    border-color: var(--neon-orange);
}

.footer__social-link:hover::before {
    opacity: 0.3;
    transform: scale(2);
    animation: pulse-ring 1s ease-out infinite;
}

.footer__title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-dim);
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer__link {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

a.footer__link:hover {
    color: var(--neon-orange);
    /*font-weight: 600;
    transform: translateX(4px);*/
}

.footer__link--product {
    display: inline-flex !important;
    align-items: center;
    gap: .5rem;
}

.footer__product-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    opacity: .6;
    transition: opacity .3s;
}

.footer__link--product:hover .footer__product-icon {
    opacity: 1;
}

.footer__bottom {
    margin-top: var(--space-2xl);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    font-size: 0.8rem;
    color: var(--text-dim);
}

.footer__legal {
    display: flex;
    gap: var(--space-lg);
}

.footer__legal a {
    transition: color 0.3s;
}

.footer__legal a:hover {
    color: var(--neon-orange);
}

/* ─── SCROLL REVEAL ANIMATIONS ─── */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.stagger>* {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.stagger.visible>*:nth-child(1) {
    transition-delay: 0s;
}

.stagger.visible>*:nth-child(2) {
    transition-delay: 0.1s;
}

.stagger.visible>*:nth-child(3) {
    transition-delay: 0.2s;
}

.stagger.visible>*:nth-child(4) {
    transition-delay: 0.3s;
}

.stagger.visible>*:nth-child(5) {
    transition-delay: 0.4s;
}

.stagger.visible>*:nth-child(6) {
    transition-delay: 0.5s;
}

.stagger.visible>* {
    opacity: 1;
    transform: translateY(0);
}

/* ─── KEYFRAMES ─── */
@keyframes gradient-shift {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

@keyframes marquee {
    to {
        transform: translateX(-50%)
    }
}

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

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

@keyframes float {

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

    25% {
        transform: translate(30px, -40px)
    }

    50% {
        transform: translate(-20px, 20px)
    }

    75% {
        transform: translate(40px, 30px)
    }
}

@keyframes pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 77, 0, 0.4)
    }

    50% {
        box-shadow: 0 0 0 8px rgba(255, 77, 0, 0)
    }
}

@keyframes pulse-ring {
    to {
        opacity: 0;
        transform: scale(2.5)
    }
}

@keyframes scroll-pulse {

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

    50% {
        opacity: 0.4;
        transform: scaleY(0.6)
    }
}

@keyframes rotate-border {
    to {
        --card-angle: 360deg
    }
}

/* ─── RESPONSIVE ─── */
@media (max-width:1024px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }

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

    .project-info__grid {
        grid-template-columns: 1fr;
    }

    .project-gallery__row {
        grid-template-columns: 1fr;
    }

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

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

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

    .timeline__line {
        left: 30px;
    }

    .timeline__item {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
    }

    .timeline__item--right {
        margin-left: 0;
        padding-left: 60px;
    }

    .timeline__item .timeline__dot,
    .timeline__item--right .timeline__dot {
        left: 22px;
        right: auto;
    }
}

@media (max-width:768px) {
    .header__nav {
        position: fixed;
        inset: 0;
        background: rgba(10, 8, 32, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-lg);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s;
    }

    .header__nav.active {
        opacity: 1;
        pointer-events: all;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__link {
        font-size: 1.5rem;
    }

    .featured-card {
        min-height: 300px;
    }

    .featured-card--wide {
        min-height: 350px;
    }

    .gallery-card {
        min-height: 280px;
    }

    .gallery-card--full {
        min-height: 380px;
    }

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

    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

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

@media (max-width:480px) {
    .hero__title {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }

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

    .page-hero__title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
}

/* ═══════════════════════════════════════════════════════════
   LANGUAGE TOGGLE
   ═══════════════════════════════════════════════════════════ */
.lang-toggle {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 6px;
    color: var(--text-secondary);
    padding: .35rem .65rem;
    font-family: var(--font-mono);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
    cursor: pointer;
    transition: all .3s ease;
    margin-left: .5rem;
}

.lang-toggle:hover {
    background: var(--neon-orange);
    color: var(--bg-dark);
    border-color: var(--neon-orange);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   BLOG PAGE
   ═══════════════════════════════════════════════════════════ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.blog-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: transform .5s cubic-bezier(.16, 1, .3, 1), border-color .4s, box-shadow .4s;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 77, 0, .35);
    box-shadow:
        0 8px 30px rgba(255, 77, 0, .08),
        0 20px 60px rgba(0, 0, 0, .25);
}

/* Image area */
.blog-card__img {
    position: relative;
    width: 100%;
    height: 220px;
    background: var(--card-bg);
    background-size: cover;
    background-position: center;
    transition: transform .6s cubic-bezier(.16, 1, .3, 1);
    overflow: hidden;
}

.blog-card__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 8, 32, .6) 100%);
    transition: opacity .3s;
}

.blog-card:hover .blog-card__img-overlay {
    opacity: .7;
}

/* Content */
.blog-card__content {
    padding: var(--space-lg) var(--space-lg) var(--space-md);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: .4rem;
    margin-bottom: var(--space-sm);
    flex-wrap: wrap;
}

.blog-card__cat {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 77, 0, .12);
    color: var(--neon-orange);
    padding: .2rem .6rem;
    border-radius: 20px;
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    border: 1px solid rgba(255, 77, 0, .2);
}

.blog-card__dot {
    color: rgba(255, 255, 255, .2);
    font-size: .75rem;
}

.blog-card__date {
    color: rgba(255, 255, 255, .4);
    font-size: .7rem;
    font-weight: 500;
}

.blog-card__read {
    color: rgba(255, 255, 255, .35);
    font-size: .65rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: .25rem;
}

.blog-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: var(--space-xs, .5rem);
    transition: color .3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card:hover .blog-card__title {
    color: var(--neon-orange);
}

.blog-card__excerpt {
    color: rgba(255, 255, 255, .45);
    font-size: .85rem;
    line-height: 1.6;
    margin-bottom: var(--space-sm);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.blog-card__readmore {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--neon-orange);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-top: auto;
    padding-top: var(--space-sm);
    transition: gap .3s, opacity .3s;
    opacity: .7;
}

.blog-card:hover .blog-card__readmore {
    gap: .7rem;
    opacity: 1;
}

/* Shine effect */
.blog-card__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, .03) 45%, rgba(255, 255, 255, .06) 50%, rgba(255, 255, 255, .03) 55%, transparent 60%);
    transform: translateX(-100%);
    transition: transform .7s ease;
    pointer-events: none;
}

.blog-card:hover .blog-card__shine {
    transform: translateX(100%);
}

/* Featured card — full width, side-by-side */
.blog-card--featured {
    grid-column: 1 / -1;
    flex-direction: row;
}

.blog-card--featured .blog-card__img {
    width: 50%;
    height: auto;
    min-height: 360px;
    flex-shrink: 0;
}

.blog-card--featured .blog-card__content {
    padding: var(--space-xl) var(--space-2xl);
    justify-content: center;
}

.blog-card--featured .blog-card__title {
    font-size: 1.5rem;
    -webkit-line-clamp: 3;
}

.blog-card--featured .blog-card__excerpt {
    -webkit-line-clamp: 3;
    font-size: .9rem;
}

/* Empty state */
.blog-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
    color: rgba(255, 255, 255, .35);
}

.blog-empty i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    opacity: .4;
}

/* Loader */
.blog-loader {
    display: flex;
    justify-content: center;
    padding: var(--space-xl) 0;
}

.blog-loader__spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(255, 255, 255, .08);
    border-top-color: var(--neon-orange);
    border-radius: 50%;
    animation: blogSpin .8s linear infinite;
}

@keyframes blogSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes blogFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

/* ═══════════════════════════════════════════════════════════
   SERVICES PAGE
   ═══════════════════════════════════════════════════════════ */

/* Services Grid */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

/* Service Card */
.svc-card {
    position: relative;
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform .5s cubic-bezier(.16, 1, .3, 1), border-color .4s, box-shadow .4s;
}

.svc-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3), 0 0 40px color-mix(in srgb, var(--accent) 15%, transparent);
}

/* Number badge */
.svc-card__number {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, .03);
    line-height: 1;
    pointer-events: none;
    transition: color .4s;
}

.svc-card:hover .svc-card__number {
    color: color-mix(in srgb, var(--accent) 12%, transparent);
}

/* Icon — same design as "Des solutions créatives" on index */
.svc-card .s3d-card__icon-wrap {
    position: relative;
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
}

.svc-card .s3d-card__icon-bg {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent), transparent);
    opacity: .15;
    transform: rotate(-6deg);
    transition: transform .5s, opacity .5s;
}

.svc-card:hover .s3d-card__icon-bg {
    transform: rotate(6deg) scale(1.1);
    opacity: .25;
}

.svc-card .s3d-card__icon {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent);
    filter: drop-shadow(0 0 10px var(--accent));
    z-index: 1;
    transition: transform .4s, filter .4s;
}

.svc-card .s3d-card__icon i {
    font-size: inherit;
    line-height: 1;
}

.svc-card:hover .s3d-card__icon {
    transform: translateY(-4px) scale(1.15);
    filter: drop-shadow(0 0 16px var(--accent));
}

/* Text */
.svc-card__title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: #fff;
}

.svc-card__excerpt {
    color: rgba(255, 255, 255, .55);
    font-size: .95rem;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

/* Sub-service tags */
.svc-card__list {
    list-style: none;
    padding: 0;
    margin: .8rem 0 0;
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.svc-card__list li {
    position: relative;
    padding-left: 1.1rem;
    font-size: .8rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.4;
    transition: color .3s;
}

.svc-card__list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--accent, var(--neon-orange));
    font-weight: 700;
}

.svc-card:hover .svc-card__list li {
    color: rgba(255, 255, 255, .75);
}

/* Glow effect */
.svc-card__glow {
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0;
    filter: blur(60px);
    transition: opacity .5s;
    pointer-events: none;
}

.svc-card:hover .svc-card__glow {
    opacity: .15;
}

/* ── Process Section ── */
.svc-process {
    text-align: center;
}

.svc-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
    text-align: left;
}

.svc-step {
    position: relative;
    padding: var(--space-xl);
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius-xl);
    transition: border-color .3s, background .3s;
}

.svc-step:hover {
    border-color: rgba(255, 77, 0, .3);
    background: rgba(255, 255, 255, .04);
}

.svc-step__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: linear-gradient(135deg, rgba(255, 77, 0, .15), rgba(123, 97, 255, .15));
    border: 1px solid rgba(255, 77, 0, .2);
    color: var(--accent-primary);
    margin-bottom: var(--space-md);
    transition: transform .4s, background .4s;
}

.svc-step:hover .svc-step__icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(255, 77, 0, .25), rgba(123, 97, 255, .25));
}

.svc-step__num {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FF4D00, #7B61FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-md);
}

.svc-step__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: #fff;
}

.svc-step__text {
    font-size: .88rem;
    color: rgba(255, 255, 255, .45);
    line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .svc-grid {
        gap: var(--space-lg);
    }

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

@media (max-width: 768px) {
    .svc-grid {
        grid-template-columns: 1fr;
    }

    .svc-card {
        padding: var(--space-xl);
    }

    .svc-steps {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════
   BLOG DETAIL PAGE
   ═══════════════════════════════════════════════════════════ */

/* Transparent header on blog detail */
.page-blog-detail .header {
    background: rgba(10, 8, 32, .4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

/* Hero */
.bdt-hero__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    filter: blur(6px);
    transform: scale(1.05);
}

.bdt-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 8, 32, .75) 0%, rgba(10, 8, 32, .93) 60%, var(--bg-dark) 100%);
    z-index: 1;
}

/* Text readability over hero image */
.page-hero--tall .page-hero__title {
    text-shadow: 0 2px 20px rgba(0, 0, 0, .7), 0 1px 4px rgba(0, 0, 0, .5);
}

.page-hero--tall .page-hero__subtitle {
    text-shadow: 0 1px 12px rgba(0, 0, 0, .6), 0 1px 3px rgba(0, 0, 0, .4);
    color: #fff;
}

.bdt-hero__meta {
    text-shadow: 0 1px 8px rgba(0, 0, 0, .5);
}


.bdt-hero__meta {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

.bdt-hero__back {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--neon-orange);
    font-size: .8rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap .3s;
}

.bdt-hero__back:hover {
    gap: .6rem;
}

.bdt-hero__dot {
    color: rgba(255, 255, 255, .2);
}

.bdt-hero__cat {
    background: rgba(255, 77, 0, .12);
    color: var(--neon-orange);
    padding: .2rem .6rem;
    border-radius: 20px;
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    border: 1px solid rgba(255, 77, 0, .2);
}

.bdt-hero__date,
.bdt-hero__read {
    color: rgba(255, 255, 255, .45);
    font-size: .75rem;
    font-weight: 500;
}

.bdt-hero__title {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.bdt-hero__excerpt {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.7;
    max-width: 650px;
}

/* Content wrapper */
.bdt-content__wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--space-2xl);
    align-items: start;
}

/* Article image */
.bdt-article__image {
    margin-bottom: var(--space-xl);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.bdt-article__image img {
    width: 100%;
    display: block;
}

/* Article body */
.bdt-article__body {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, .75);
}

.bdt-article__body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: #fff;
}

.bdt-article__body h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.8rem 0 .8rem;
    color: #fff;
}

.bdt-article__body p {
    margin-bottom: 1.3rem;
}

.bdt-article__body img {
    width: 100%;
    border-radius: var(--radius-lg);
    margin: 1.5rem 0;
}

.bdt-article__body blockquote {
    border-left: 3px solid var(--neon-orange);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: rgba(255, 77, 0, .04);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: rgba(255, 255, 255, .7);
    font-style: italic;
}

.bdt-article__body ul,
.bdt-article__body ol {
    padding-left: 1.5rem;
    margin-bottom: 1.3rem;
}

.bdt-article__body li {
    margin-bottom: .5rem;
}

.bdt-article__body a {
    color: var(--neon-orange);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity .2s;
}

.bdt-article__body a:hover {
    opacity: .8;
}

/* Share */
.bdt-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: var(--space-xl);
    margin-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.bdt-share__label {
    color: rgba(255, 255, 255, .5);
    font-size: .85rem;
    font-weight: 600;
}

.bdt-share__btns {
    display: flex;
    gap: .5rem;
}

.bdt-share__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .6);
    font-size: .85rem;
    text-decoration: none;
    transition: all .3s;
}

.bdt-share__btn:hover {
    background: var(--neon-orange);
    border-color: var(--neon-orange);
    color: #fff;
    transform: translateY(-2px);
}

.bdt-share__btn--wa:hover {
    background: #25D366;
    border-color: #25D366;
}

/* Comments */
.bdt-comments {
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.bdt-comments__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.bdt-comments__title i {
    color: #1877F2;
}

/* Sidebar */
.bdt-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.bdt-sidebar__card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.bdt-sidebar__heading {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--neon-orange);
    margin-bottom: var(--space-sm);
}

.bdt-sidebar__text {
    font-size: .85rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.bdt-sidebar__tag {
    display: inline-flex;
    padding: .3rem .8rem;
    background: rgba(255, 77, 0, .1);
    color: var(--neon-orange);
    border: 1px solid rgba(255, 77, 0, .2);
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .3s;
}

.bdt-sidebar__tag:hover {
    background: rgba(255, 77, 0, .2);
}

/* Related */
.bdt-related__heading {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: var(--space-xl);
}

.bdt-related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .bdt-content__wrapper {
        grid-template-columns: 1fr;
    }

    .bdt-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .bdt-sidebar__card {
        flex: 1 1 calc(50% - var(--space-sm));
        min-width: 200px;
    }

    .bdt-related__grid {
        grid-template-columns: 1fr;
    }

    .bdt-hero__meta {
        gap: .35rem;
    }

    .bdt-share {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ─── Newsletter ─── */
.newsletter-section {
    padding-bottom: 0;
}

.newsletter-card {
    background: linear-gradient(135deg, rgba(255, 77, 0, .08), rgba(123, 97, 255, .08));
    border: 1px solid rgba(255, 77, 0, .2);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
}

.newsletter-card__title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: var(--space-xs);
}

.newsletter-card__text {
    color: var(--text-secondary);
    font-size: .95rem;
}

.newsletter-card__form {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.newsletter-card__form .form-input {
    width: 260px;
}

/* ═══════════════════════════════════════════════════════════
   CLIENT LOGOS MARQUEE
   ═══════════════════════════════════════════════════════════ */
.clients-section {
    padding-bottom: var(--space-xl);
    overflow: hidden;
}

.clients-marquee {
    overflow: hidden;
    padding: var(--space-lg) 0;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.clients-marquee__track {
    display: flex;
    gap: var(--space-2xl);
    animation: clients-scroll 30s linear infinite;
    width: max-content;
}

.client-logo {
    flex-shrink: 0;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-md);
    transition: all .4s ease;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
}

.client-logo img {
    height: 60px;
    min-width: 120px;
    object-fit: contain;
    filter: grayscale(1) brightness(1.5);
    opacity: .35;
    transition: all .4s ease;
}

.client-logo:hover {
    border-color: var(--neon-orange);
    background: rgba(255, 77, 0, .06);
    transform: scale(1.08);
}

.client-logo:hover img {
    filter: grayscale(0) brightness(1);
    opacity: 1;
}

@keyframes clients-scroll {
    0% {
        transform: translateX(0);
    }

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

/* ═══════════════════════════════════════════════════════════
   TEAM SOCIAL LINKS
   ═══════════════════════════════════════════════════════════ */
.team-card__socials {
    display: flex;
    gap: .6rem;
    margin-top: var(--space-sm);
    justify-content: center;
}

.team-card__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    color: var(--text-muted);
    font-size: .8rem;
    transition: all .3s ease;
}

.team-card__socials a:hover {
    background: var(--neon-orange);
    border-color: var(--neon-orange);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

/* ═══════════════════════════════════════════════════════════
   CHATBOT WIDGET
   ═══════════════════════════════════════════════════════════ */
.chatbot {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 10000;
    font-family: var(--font-body);
}

/* FAB */
.chatbot__fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-orange), #FF2DAA);
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(255, 77, 0, .35);
    transition: transform .3s, box-shadow .3s;
}

.chatbot__fab:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(255, 77, 0, .5);
}

.chatbot__fab-close {
    display: none;
    opacity: 0;
    position: absolute;
}

.chatbot.open .chatbot__fab-icon {
    display: none;
}

.chatbot.open .chatbot__fab-close {
    display: block;
    opacity: 1;
    position: static;
}

.chatbot__fab-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--neon-orange);
    animation: chatbot-pulse 2s ease-out infinite;
}

@keyframes chatbot-pulse {
    0% {
        transform: scale(1);
        opacity: .6;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Window */
.chatbot__window {
    background: rgb(10, 8, 32);
    position: absolute;
    bottom: 76px;
    right: 0;
    width: 380px;
    max-width: calc(100vw - 48px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(.95);
    transition: all .35s cubic-bezier(.16, 1, .3, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
    display: flex;
    flex-direction: column;
    max-height: 480px;
}

.chatbot.open .chatbot__window {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Header */
.chatbot__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.2rem;
    background: rgba(255, 77, 0, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.chatbot__header-info {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.chatbot__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-orange), var(--neon-violet));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
}

.chatbot__name {
    font-weight: 700;
    font-size: .9rem;
}

.chatbot__status {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .7rem;
    color: var(--text-muted);
}

.chatbot__status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00FF88;
}

.chatbot__close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    padding: .3rem;
    transition: color .3s;
}

.chatbot__close:hover {
    color: var(--text-primary);
}

/* Messages */
.chatbot__messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: .7rem;
    min-height: 200px;
    max-height: 300px;
}

.chatbot__msg {
    display: flex;
}

.chatbot__msg--user {
    justify-content: flex-end;
}

.chatbot__msg-bubble {
    max-width: 80%;
    padding: .7rem 1rem;
    border-radius: 16px;
    font-size: .85rem;
    line-height: 1.5;
}

.chatbot__msg--bot .chatbot__msg-bubble {
    background: rgba(255, 255, 255, .06);
    border-bottom-left-radius: 4px;
    color: var(--text-secondary);
}

.chatbot__msg--user .chatbot__msg-bubble {
    background: linear-gradient(135deg, var(--neon-orange), #FF2DAA);
    border-bottom-right-radius: 4px;
    color: #fff;
}

/* Typing dots */
.chatbot__dots {
    display: flex;
    gap: 4px;
    align-items: center;
    height: 20px;
}

.chatbot__dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-muted);
    display: block;
    animation: chatbot-dot .8s ease-in-out infinite;
}

.chatbot__dots span:nth-child(2) {
    animation-delay: .15s;
}

.chatbot__dots span:nth-child(3) {
    animation-delay: .3s;
}

@keyframes chatbot-dot {

    0%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-6px);
    }
}

/* WhatsApp bar */
.chatbot__whatsapp {
    padding: .6rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.chatbot__whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    width: 100%;
    padding: .6rem;
    background: #25D366;
    color: #fff;
    border-radius: 10px;
    font-size: .8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s;
}

.chatbot__whatsapp-btn:hover {
    background: #1EBE57;
    transform: translateY(-2px);
}

.chatbot__whatsapp-btn i {
    font-size: 1.1rem;
}

/* Input */
.chatbot__input {
    display: flex;
    gap: .5rem;
    padding: .8rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.chatbot__input-field {
    flex: 1;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    padding: .6rem 1rem;
    color: var(--text-primary);
    font-size: .85rem;
    outline: none;
    transition: border-color .3s;
    font-family: var(--font-body);
}

.chatbot__input-field:focus {
    border-color: var(--neon-orange);
}

.chatbot__send {
    width: 40px;
    height: 40px;
    background: var(--neon-orange);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: .85rem;
    cursor: pointer;
    transition: background .3s, transform .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot__send:hover {
    background: #ff6520;
    transform: scale(1.05);
}

/* ─── BLOG RESPONSIVE ─── */
@media(max-width:768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card--featured {
        flex-direction: column;
    }

    .blog-card--featured .blog-card__img {
        width: 100%;
        min-height: 200px;
    }

    .newsletter-card {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-card__form {
        flex-direction: column;
    }

    .newsletter-card__form .form-input {
        width: 100%;
    }

    .chatbot__window {
        width: calc(100vw - 32px);
        right: -8px;
    }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal-up,
    .stagger>* {
        opacity: 1;
        transform: none;
    }
}