/*
Theme Name: Empire Media Strategy
Theme URI: https://empiremedia.ro
Author: Empire Media Strategy
Description: Temă premium Dark Electric pentru Empire Media Strategy — agenție boutique de marketing. Logo EMS serif italic, animații cinematografice, paletă obsidian + pink + violet.
Version: 3.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: empire-media
*/

/* =====================================================
   1. CSS VARIABLES
   ===================================================== */
:root {
    --color-obsidian: #08080C;
    --color-obsidian-soft: #0F0F15;
    --color-surface: #15151D;
    --color-surface-hover: #1C1C26;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-hover: rgba(255, 255, 255, 0.16);
    --color-pink: #EC4899;
    --color-violet: #8B5CF6;
    --color-signal: #10B981;
    --color-white: #FFFFFF;
    --color-text-muted: #94A3B8;
    --color-text-dim: #64748B;

    --gradient-accent: linear-gradient(90deg, #EC4899 0%, #8B5CF6 100%);

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Instrument Serif', Georgia, serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;

    --container-width: 1280px;
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =====================================================
   2. RESET & BASE
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-white);
    background: var(--color-obsidian);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Grid pattern overlay */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

body > * { position: relative; z-index: 1; }

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

a { color: var(--color-white); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-pink); }

::selection { background: var(--color-pink); color: var(--color-obsidian); }

/* =====================================================
   2.5. ANIMAȚIA 11: SCROLL PROGRESS BAR
   ===================================================== */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: var(--gradient-accent);
    z-index: 9999;
    transition: width 0.1s ease-out;
}

/* =====================================================
   3. TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-sans);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--color-white);
    margin: 0 0 0.5em;
}

h1 { font-size: clamp(3rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -0.02em; }
h4 { font-size: 1.5rem; letter-spacing: -0.01em; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p { margin: 0 0 1em; }

.text-italic-serif {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.02em;
}

/* ANIMAȚIA 01: GRADIENT TEXT ANIMAT */
.text-gradient-animated {
    background: linear-gradient(90deg, #EC4899, #8B5CF6, #EC4899, #8B5CF6);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-flow 6s ease infinite;
}

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

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

.eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-pink);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.mono-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--color-text-dim);
    text-transform: uppercase;
}

/* =====================================================
   4. LAYOUT
   ===================================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 120px 0; position: relative; }

.section--surface {
    background: var(--color-obsidian-soft);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

@media (max-width: 768px) { .section { padding: 80px 0; } }

/* =====================================================
   5. BUTTONS (cu ANIMAȚIA 02: GLOW PULSANT)
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
}

.btn--primary {
    background: var(--color-white);
    color: var(--color-obsidian);
    border-color: var(--color-white);
    animation: btn-glow-pulse 3s ease-in-out infinite;
}

@keyframes btn-glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(236, 72, 153, 0.25), 0 0 40px rgba(139, 92, 246, 0.15);
    }
    50% {
        box-shadow: 0 0 30px rgba(236, 72, 153, 0.45), 0 0 60px rgba(139, 92, 246, 0.25);
    }
}

.btn--primary:hover {
    background: transparent;
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-border-hover);
}
.btn--outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-white);
}

.btn--outline .btn__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-pink);
    box-shadow: 0 0 10px var(--color-pink);
    display: inline-block;
}

/* =====================================================
   6. HEADER + LOGO EMS
   ===================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8, 8, 12, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

/* LOGO EMS COMPACT (header) */
.site-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    line-height: 1;
}

.site-logo__ems {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 36px;
    letter-spacing: -0.04em;
    color: var(--color-white);
    line-height: 1;
}

.site-logo__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-pink);
    box-shadow: 0 0 12px var(--color-pink);
    display: inline-block;
    margin-bottom: 4px;
    animation: pulse-signal 2.2s ease-in-out infinite;
}

@keyframes pulse-signal {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.9); }
}

.site-logo__full {
    margin-left: 14px;
    padding-left: 14px;
    border-left: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
}

.site-logo__name {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 0.25em;
    line-height: 1;
}

.site-logo__tag {
    font-family: var(--font-sans);
    font-size: 8px;
    font-weight: 500;
    color: var(--color-text-dim);
    letter-spacing: 0.35em;
    line-height: 1;
}

@media (max-width: 600px) {
    .site-logo__full { display: none; }
}

.site-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.site-nav a {
    font-size: 14px;
    color: var(--color-text-muted);
    transition: color var(--transition);
}
.site-nav a:hover { color: var(--color-white); }

.site-nav .btn { padding: 10px 22px; font-size: 13px; }

.mobile-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-white);
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
}

@media (max-width: 900px) {
    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-obsidian);
        border-bottom: 1px solid var(--color-border);
        padding: 20px 24px;
        display: none;
    }
    .site-nav.is-open { display: block; }
    .site-nav ul { flex-direction: column; gap: 20px; align-items: flex-start; }
    .mobile-toggle { display: block; }
}

/* =====================================================
   7. HERO (cu ANIMAȚIA 03: PARALLAX GLOW ORBS)
   ===================================================== */
.hero {
    padding: 140px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero__glow-pink,
.hero__glow-violet {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(60px);
    will-change: transform;
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__glow-pink {
    top: -100px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.35) 0%, transparent 65%);
}

.hero__glow-violet {
    bottom: -200px;
    left: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 65%);
}

.hero__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--color-text-dim);
    text-transform: uppercase;
}

.hero__meta-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero__signal {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-signal);
    box-shadow: 0 0 10px var(--color-signal);
    animation: pulse-signal 2.2s ease-in-out infinite;
}

.hero h1 { max-width: 900px; margin-bottom: 32px; }
.hero h1 .dot { color: var(--color-text-dim); font-weight: 700; }

.hero__subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 48px;
}

.hero__subtitle strong { color: var(--color-white); font-weight: 600; }

.hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.hero__service-index {
    display: flex;
    gap: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.25em;
    color: var(--color-text-dim);
    text-transform: uppercase;
    flex-wrap: wrap;
}

.hero__service-index span {
    transition: color var(--transition);
    cursor: default;
}
.hero__service-index span:hover { color: var(--color-white); }

@media (max-width: 768px) {
    .hero { padding: 80px 0 60px; }
    .hero__meta { margin-bottom: 40px; }
    .hero__service-index { gap: 20px; font-size: 10px; }
}

/* =====================================================
   8. ANIMAȚIA 09: MARQUEE TEXT CONTINUU
   ===================================================== */
.marquee {
    padding: 60px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
    background: var(--color-obsidian-soft);
}

.marquee__track {
    display: flex;
    gap: 60px;
    align-items: center;
    animation: marquee-scroll 30s linear infinite;
    width: max-content;
    white-space: nowrap;
}

.marquee__track > * { flex-shrink: 0; }

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

.marquee__word {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-white);
    letter-spacing: -0.02em;
}

.marquee__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-pink);
    box-shadow: 0 0 15px var(--color-pink);
    flex-shrink: 0;
}

/* =====================================================
   9. PILLARS
   ===================================================== */
.section__header { margin-bottom: 80px; max-width: 700px; }

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

.pillar {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 36px 32px;
    transition: all var(--transition);
    position: relative;
}

.pillar:hover {
    background: var(--color-surface-hover);
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
}

.pillar__number {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--color-pink);
    letter-spacing: 0.3em;
    margin-bottom: 24px;
}

.pillar h3 { font-size: 1.5rem; margin-bottom: 16px; }
.pillar p { color: var(--color-text-muted); font-size: 15px; line-height: 1.7; margin: 0; }

@media (max-width: 900px) { .pillars__grid { grid-template-columns: 1fr; gap: 16px; } }

/* =====================================================
   10. SERVICES GRID (cu ANIMAȚIA 05: CARD TILT 3D)
   ===================================================== */
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    perspective: 1200px;
}

.service-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 32px 28px;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background var(--transition), border-color var(--transition);
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
}

.service-card:hover {
    background: var(--color-surface-hover);
    border-color: var(--color-border-hover);
    color: var(--color-white);
}

.service-card__number {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--color-text-dim);
    letter-spacing: 0.3em;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-card__arrow-icon {
    color: var(--color-text-dim);
    font-size: 14px;
    transition: all var(--transition);
}

.service-card:hover .service-card__arrow-icon {
    color: var(--color-pink);
    transform: translate(4px, -4px);
}

.service-card h4 {
    color: var(--color-white);
    font-size: 1.375rem;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.service-card p {
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 900px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services__grid { grid-template-columns: 1fr; } }

/* Dezactivează tilt pe mobile (nu are sens fără mouse) */
@media (hover: none) { .service-card { transform: none !important; } }

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

.about__text { max-width: 520px; }
.about__text h2 { margin-bottom: 24px; }
.about__text p {
    color: var(--color-text-muted);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 1.25em;
}
.about__text strong { color: var(--color-white); font-weight: 600; }

.about__visual {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    aspect-ratio: 4/5;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(236, 72, 153, 0.15), transparent 60%),
                radial-gradient(circle at 70% 70%, rgba(139, 92, 246, 0.15), transparent 60%);
}

.about__visual-content {
    position: relative;
    text-align: center;
}

.about__visual-ems {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 140px;
    letter-spacing: -0.05em;
    line-height: 1;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about__visual-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--color-text-dim);
    text-transform: uppercase;
    margin-top: 12px;
}

@media (max-width: 900px) {
    .about { grid-template-columns: 1fr; gap: 40px; }
    .about__visual-ems { font-size: 100px; }
}

/* =====================================================
   12. PROCESS
   ===================================================== */
.process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-step {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all var(--transition);
}

.process-step:hover {
    background: var(--color-surface-hover);
    border-color: var(--color-border-hover);
    transform: translateY(-2px);
}

.process-step__number {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--color-pink);
    letter-spacing: 0.3em;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
}

.process-step h4 { font-size: 1.125rem; margin-bottom: 10px; }
.process-step p { color: var(--color-text-muted); font-size: 14px; line-height: 1.6; margin: 0; }

@media (max-width: 900px) { .process__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .process__grid { grid-template-columns: 1fr; } }

/* =====================================================
   13. CLIENTS SLIDER
   ===================================================== */
.clients {
    padding: 80px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}

.clients__header { text-align: center; margin-bottom: 48px; }
.clients__header .mono-label { margin-bottom: 12px; display: block; }
.clients__header h3 { font-size: 1.75rem; }

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

.clients__slider::before,
.clients__slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.clients__slider::before { left: 0; background: linear-gradient(90deg, var(--color-obsidian), transparent); }
.clients__slider::after { right: 0; background: linear-gradient(-90deg, var(--color-obsidian), transparent); }

.clients__track {
    display: flex;
    gap: 60px;
    align-items: center;
    animation: marquee-scroll 30s linear infinite;
    width: max-content;
}

.clients__logo {
    flex-shrink: 0;
    height: 40px;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    opacity: 0.5;
    transition: opacity var(--transition);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 18px;
}

.clients__logo:hover { opacity: 1; }

.clients__and-more {
    flex-shrink: 0;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--color-text-muted);
    white-space: nowrap;
}

/* =====================================================
   14. FAQ
   ===================================================== */
.faq { max-width: 820px; margin: 0 auto; }

.faq-item {
    border-bottom: 1px solid var(--color-border);
    padding: 28px 0;
    transition: all var(--transition);
}

.faq-item__question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 0;
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: color var(--transition);
}

.faq-item__question:hover { color: var(--color-pink); }

.faq-item__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border: 1px solid var(--color-border-hover);
    border-radius: 50%;
    position: relative;
    transition: all var(--transition);
}

.faq-item__icon::before, .faq-item__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--color-white);
    transform: translate(-50%, -50%);
    transition: all var(--transition);
}

.faq-item__icon::before { width: 10px; height: 1.5px; }
.faq-item__icon::after { width: 1.5px; height: 10px; }

.faq-item.is-open .faq-item__icon { background: var(--color-pink); border-color: var(--color-pink); }
.faq-item.is-open .faq-item__icon::after { transform: translate(-50%, -50%) scaleY(0); }

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.is-open .faq-item__answer { max-height: 500px; padding-top: 20px; }

.faq-item__answer p {
    color: var(--color-text-muted);
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
    max-width: 700px;
}

/* =====================================================
   15. CTA FINAL
   ===================================================== */
.cta-final {
    text-align: center;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.cta-final__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(236, 72, 153, 0.18) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(60px);
    animation: cta-glow-pulse 4s ease-in-out infinite;
}

@keyframes cta-glow-pulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.cta-final__content { position: relative; }

.cta-final h2 { max-width: 800px; margin: 0 auto 24px; }

.cta-final p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 560px;
    margin: 0 auto 40px;
}

/* =====================================================
   16. SERVICES PAGE
   ===================================================== */
.services-nav {
    background: rgba(15, 15, 21, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 20px 0;
    position: sticky;
    top: 72px;
    z-index: 50;
    border-bottom: 1px solid var(--color-border);
}

.services-nav__list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.services-nav__list a {
    padding: 8px 18px;
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
    text-transform: uppercase;
    transition: all var(--transition);
}

.services-nav__list a:hover {
    background: var(--color-white);
    color: var(--color-obsidian);
    border-color: var(--color-white);
}

.service-detail {
    padding: 120px 0;
    border-bottom: 1px solid var(--color-border);
    position: relative;
}

.service-detail:nth-child(even) { background: var(--color-obsidian-soft); }

.service-detail__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.service-detail:nth-child(odd) .service-detail__grid { direction: rtl; }
.service-detail:nth-child(odd) .service-detail__grid > * { direction: ltr; }

.service-detail__number {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--color-pink);
    letter-spacing: 0.3em;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.service-detail h2 { margin-bottom: 24px; font-size: clamp(2rem, 4vw, 3rem); }

.service-detail__desc {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
}

.service-detail__includes-title {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--color-text-dim);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.service-detail__list { list-style: none; padding: 0; margin: 0 0 40px; }

.service-detail__list li {
    padding: 14px 0 14px 32px;
    position: relative;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-border);
    font-size: 15px;
    transition: color var(--transition);
}

.service-detail__list li:hover { color: var(--color-white); }

.service-detail__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 22px;
    width: 20px;
    height: 1px;
    background: var(--color-pink);
}

.service-detail__visual {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    aspect-ratio: 4/5;
    position: sticky;
    top: 140px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail__visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(236, 72, 153, 0.12), transparent 60%),
                radial-gradient(circle at 70% 70%, rgba(139, 92, 246, 0.12), transparent 60%);
}

.service-detail__big-number {
    position: relative;
    font-family: var(--font-sans);
    font-size: 200px;
    font-weight: 700;
    letter-spacing: -0.05em;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0.9;
}

@media (max-width: 900px) {
    .service-detail { padding: 80px 0; }
    .service-detail__grid { grid-template-columns: 1fr; gap: 40px; }
    .service-detail:nth-child(odd) .service-detail__grid { direction: ltr; }
    .service-detail__visual { aspect-ratio: 3/2; position: relative; top: 0; }
    .service-detail__big-number { font-size: 140px; }
}

/* =====================================================
   17. FOOTER
   ===================================================== */
.site-footer {
    background: var(--color-obsidian);
    padding: 100px 0 40px;
    border-top: 1px solid var(--color-border);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.site-footer__brand { max-width: 360px; }
.site-footer__brand p {
    color: var(--color-text-muted);
    font-size: 15px;
    margin-top: 24px;
    line-height: 1.7;
}

.site-footer__col h6 {
    font-family: var(--font-mono);
    color: var(--color-text-dim);
    margin-bottom: 24px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

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

.site-footer__col li {
    color: var(--color-text-muted);
    font-size: 14px;
    margin-bottom: 12px;
}

.site-footer__col a { color: var(--color-text-muted); transition: color var(--transition); }
.site-footer__col a:hover { color: var(--color-white); }

.site-footer__bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--color-text-dim);
    text-transform: uppercase;
}

.site-footer__bottom a { color: var(--color-text-dim); }
.site-footer__bottom a:hover { color: var(--color-white); }

@media (max-width: 768px) {
    .site-footer__grid { grid-template-columns: 1fr; gap: 40px; }
    .site-footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* =====================================================
   18. FADE-IN ANIMATIONS
   ===================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* =====================================================
   19. UTILS
   ===================================================== */
.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* Reduced motion - respectăm preferințele userului */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .hero__glow-pink, .hero__glow-violet { transition: none; }
}
