﻿:root {
    /* --- 1. BRAND CORE (GREEN) --- */
    --brand-primary: #43A047;
    --brand-dark: #2E7D32;
    --brand-light: #66BB6A;

    /* --- 2. ACCENT (RED) --- */
    --accent-red: #FF0033;
    --accent-red-dark: #CC0029;
    --accent-red-soft: #FF3355;

    /* --- 3. NEUTRALS UI (LIGHT MODE / SWISS STYLE) --- */
    --bg-main: #FFFFFF;      
    --bg-card: #F4F4F5;      
    --bg-surface: #E4E4E7;   
    --border-color: #E0E0E0; 
    --border-strong: #000000;

    /* --- 4. TEXT (INVERSAT) --- */
    --text-primary: #050505; 
    --text-secondary: #52525B; 
    --text-muted: #71717A;   
    --text-inverse: #FFFFFF; 

    /* --- FONTS & LAYOUT --- */
    --font-display: 'Oswald', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    --font-mono: 'Space Mono', monospace;
    --container-width: 1440px;
}

/* --- RESET & BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body { 
    background-color: var(--bg-main); 
    color: var(--text-primary); 
    font-family: var(--font-body); 
    overflow-x: hidden; 
    line-height: 1.6; 
    -webkit-font-smoothing: antialiased;
    cursor: none; /* Custom cursor active */
    width: 100%;
}

a { text-decoration: none; color: inherit; transition: 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* Selection Style */
::selection { background: var(--brand-primary); color: #000; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: var(--border-color); }
::-webkit-scrollbar-thumb:hover { background: var(--brand-primary); }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 { 
    font-family: var(--font-display); 
    text-transform: uppercase; 
    line-height: 1; 
    letter-spacing: -0.5px; 
    color: var(--text-primary); 
}

.text-outline { 
    color: transparent; 
    -webkit-text-stroke: 1px var(--text-primary); 
    opacity: 1; 
}

.text-brand { color: var(--brand-primary); }
.text-highlight { color: var(--accent-red); }
.text-muted { color: var(--text-muted); }

/* Reveal Animation */
.reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}
.js .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}
.js .reveal.active { opacity: 1; transform: translateY(0); }

/* --- BUTTONS --- */
.btn-main {
    display: inline-block;
    background-color: var(--accent-red);
    color: #FFFFFF;
    padding: 16px 40px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 0, 51, 0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.btn-main:hover { 
    background-color: var(--accent-red-dark); 
    transform: translateY(-2px); 
    box-shadow: 0 8px 30px rgba(255, 0, 51, 0.4); 
}

.pill-btn {
    display: inline-flex; align-items: center; gap: 15px;
    border: 1px solid var(--text-primary); 
    background: rgba(0,0,0,0.02);
    border-radius: 50px;
    padding: 10px 10px 10px 25px;
    font-family: var(--font-display); text-transform: uppercase; font-size: 0.9rem;
    color: var(--text-primary);
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); width: fit-content; margin-top: 30px;
}
.pill-btn:hover { 
    background-color: var(--text-primary); 
    border-color: var(--text-primary); 
    color: #fff;
}

.filter-pills {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-pills .pill-btn {
    margin: 0;
    padding: 10px 24px;
    line-height: 1;
}

.filter-pills .pill-btn.is-active {
    background: var(--text-primary);
    color: #fff;
}

/* --- NAVIGATION --- */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 40px; border-bottom: 1px solid var(--border-color);
    position: fixed; top: 0; width: 100%; 
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999 !important;
}
.logo { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; letter-spacing: 1px; }
.logo a { display: inline-flex; align-items: center; gap: 10px; }
.logo-img { height: 44px; width: auto; display: block; }
.logo-text { display: inline-block; }
.nav-links { display: flex; align-items: center; gap: 30px; font-family: var(--font-display); text-transform: uppercase; font-size: 0.9rem; color: var(--text-secondary); }
.nav-links a { line-height: 1; }
.nav-links a:not(.pill-btn):hover { color: var(--text-primary); }
.nav-links .pill-btn:hover { color: #fff; }
.nav-links a.is-active { color: var(--brand-primary); text-decoration: underline; text-underline-offset: 4px; }
.nav-links .pill-btn.is-active { background-color: var(--brand-primary); color: #fff; border-color: var(--brand-primary); }
.nav-links .nav-contact { margin: 0; padding: 5px 20px; font-size: 0.8rem; }

.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 6px; z-index: 10001; }
.bar { display: block; width: 30px; height: 2px; background-color: var(--text-primary); transition: 0.3s; }
.hamburger.active .bar { background-color: var(--accent-red) !important; }
.hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu-overlay { 
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background-color: var(--bg-main); 
    display: flex; flex-direction: column; justify-content: center; align-items: center; 
    transform: translateY(-100%); transition: 0.4s ease-in-out; z-index: 9998; 
}
.mobile-menu-overlay.active { transform: translateY(0); }
.mobile-link { font-family: var(--font-display); font-size: 2.5rem; color: var(--text-primary); margin: 15px 0; text-transform: uppercase; }
.mobile-link.is-active { color: var(--brand-primary); }
.mobile-link.mobile-contact { color: var(--accent-red); }

/* =========================================
   HERO SECTION: SOPHISTICATED TECH (NEW)
   ========================================= */
.hero-sophisticated {
    position: relative;
    min-height: 100vh;
    background-color: var(--bg-main);
    display: flex;
    flex-direction: column;
    padding-top: 100px; /* Space for navbar */
    overflow: hidden;
    color: var(--text-primary);
}

/* 1. Background Grid Effect (Blueprint) */
.bg-grid-layer {
    mask-image: none !important;
    -webkit-mask-image: none !important;
    opacity: 0.05;
}

/* 2. Top Tech Header */
.hero-tech-header {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    z-index: 2;
    position: relative;
}

.pulsing-dot {
    display: inline-block;
    width: 6px; height: 6px;
    background-color: var(--brand-primary);
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 8px var(--brand-primary);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

/* 3. Layout Principal */
.hero-main-layout {
    flex-grow: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Coloana Text */
.hero-text-col {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sophisticated-headline {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 7vw, 7rem);
    line-height: 0.85;
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    animation: none !important;
}

.sophisticated-headline .line-1 { margin-left: 0; }
.sophisticated-headline .line-2 {
    margin-left: 40px;
    color: var(--brand-primary);
    text-shadow: none !important;
    -webkit-text-stroke: 0 !important;
    animation: none !important;
}
.sophisticated-headline .line-3 { margin-left: 0; }

.sophisticated-headline .line-1,
.sophisticated-headline .line-3 {
    color: var(--text-primary);
    text-shadow: none !important;
}

.hero-description-block {
    max-width: 500px;
    margin-left: 40px; 
}

.hero-description-block p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

.link-minimal {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: 0.3s;
}
.link-minimal:hover { color: var(--text-primary); letter-spacing: 1px; }

/* Coloana Visual (Card Plutitor) */
.hero-visual-col {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.floating-card {
    width: 350px;
    height: 480px;
    background: #000;
    position: relative;
    box-shadow: 20px 20px 50px rgba(0,0,0,0.1) !important;
    transform: rotate(-3deg);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.floating-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.card-media {
    width: 100%;
    height: 85%;
    overflow: hidden;
    position: relative;
    filter: grayscale(100%);
    transition: 0.5s;
}

.floating-card:hover .card-media { filter: grayscale(0%); }

.card-data {
    height: 15%;
    background: #000 !important;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: #fff !important;
    position: relative;
    border-top: 2px solid var(--brand-primary);
}

.data-row { display: flex; flex-direction: column; }
.data-row span:last-child { font-size: 1.2rem; font-weight: bold; }

/* Efect de scanare peste imagine */
.scan-line {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 15px;
    background: linear-gradient(to bottom, rgba(67, 160, 71, 0) 0%, rgba(67, 160, 71, 0.8) 50%, rgba(67, 160, 71, 0) 100%);
    box-shadow: 0 0 15px var(--brand-primary);
    animation: scan 4s ease-in-out infinite;
    will-change: top, opacity;
    z-index: 10;
    pointer-events: none;
}

@keyframes scan {
    0% { top: -10%; opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { top: 110%; opacity: 0; }
}

/* 4. Ticker Bottom (ALB) */
.hero-ticker-bottom {
    border-top: 1px solid var(--border-color);
    padding: 15px 0;
    background: var(--bg-main);
    z-index: 2;
    overflow: hidden;
}

.ticker-track {
    white-space: nowrap;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: ticker-move 30s linear infinite;
    will-change: transform;
    transform: translate3d(0, 0, 0); 
}

@keyframes ticker-move {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- INLINE BRANDS (Social Proof) --- */
.inline-clients-wrapper {
    background-color: var(--bg-main); padding: 120px 20px; border-bottom: 1px solid var(--border-color);
    text-align: center; display: flex; flex-direction: column; align-items: center;
}
.inline-top-text { font-family: 'Times New Roman', serif; font-style: italic; color: var(--text-secondary); margin-bottom: 40px; letter-spacing: 1px;}
.inline-sentence { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 4.5rem); line-height: 1.3; text-transform: uppercase; max-width: 1200px; }
.brand-slot { display: inline-flex; align-items: center; justify-content: center; margin: 0 10px; padding: 5px 25px; position: relative; height: 1.2em; vertical-align: middle; }
.brand-slot::before, .brand-slot::after { content: ''; position: absolute; width: 15px; height: 15px; border: 2px solid var(--brand-primary); transition: 0.3s; }
.brand-slot::before { top: 0; left: 0; border-right: none; border-bottom: none; }
.brand-slot::after { bottom: 0; right: 0; border-left: none; border-top: none; }
.brand-slot:hover::before, .brand-slot:hover::after { width: 100%; height: 100%; border-color: var(--accent-red); }
.brand-slot:hover .brand-text { color: var(--accent-red); }
.brand-text { font-family: var(--font-body); font-size: 0.5em; font-weight: 700; letter-spacing: 2px; color: var(--text-primary); transition: 0.3s; }

.hero-bullets { margin: 20px 0; padding-left: 20px; color: var(--text-secondary); }
.hero-bullets li { margin-bottom: 8px; }
.hero-anchor { font-family: var(--font-mono); font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; }

.social-proof-strip { border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); background: var(--bg-surface); }
.social-proof-inner { max-width: var(--container-width); margin: 0 auto; padding: 20px 40px; display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: center; text-transform: uppercase; font-family: var(--font-display); font-size: 0.9rem; }
.social-proof-label { color: var(--text-muted); }
.social-proof-brands { color: var(--text-primary); }
.social-proof-metric { color: var(--brand-primary); }

.mini-feed { background: #111; color: #fff; }
.mini-feed-title { font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 1px; }
.mini-feed-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin: 20px 0; }
.mini-feed-grid div { background: #222; height: 40px; border-radius: 4px; }
.mini-feed-caption { font-size: 0.75rem; color: #bbb; }

.mini-ad { background: #fff; color: #000; }
.mini-ad-title { font-family: var(--font-display); font-size: 0.8rem; color: var(--accent-red); }
.mini-ad-card { border: 1px solid var(--border-color); padding: 10px; margin: 20px 0; }
.mini-ad-line { height: 8px; background: #eee; margin-bottom: 6px; }
.mini-ad-line.short { width: 60%; }
.mini-ad-cta { margin-top: 8px; font-size: 0.7rem; text-transform: uppercase; color: #000; border: 1px solid #000; padding: 4px 6px; display: inline-block; }
.mini-ad-caption { font-size: 0.75rem; color: var(--text-muted); }

.mini-site { background: #000; color: #fff; }
.mini-site-title { font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 1px; }
.mini-site-screen { background: #111; height: 120px; border: 1px solid #222; margin: 20px 0; }
.mini-site-metric { font-size: 0.75rem; color: var(--brand-primary); }

.result-line { color: var(--text-secondary); margin-bottom: 8px; }
.whatsapp-cta {
    display: inline-block;
    background-color: var(--brand-primary);
    color: #FFFFFF !important;
    padding: 25px 60px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    text-decoration: none !important;
    transition: background-color 0.2s ease;
}

.whatsapp-cta:hover {
    background-color: var(--brand-dark);
    color: #FFFFFF;
}

/* --- STICKY STACK SERVICES --- */
.stack-scroll-wrapper { background-color: var(--bg-main); padding: 100px 0 200px 0; border-bottom: 1px solid var(--border-color); }
.stack-section-title { text-align: center; margin-bottom: 80px; font-size: 1.5rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 2px; }
.sticky-container { width: 100%; max-width: 95%; margin: 0 auto; position: relative; }
.sticky-card {
    position: sticky; top: 0; width: 100%; min-height: 80vh; border-radius: 20px 20px 0 0; overflow: hidden;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; margin-bottom: 40px;
}
.sticky-header { padding: 30px 50px; display: flex; align-items: center; gap: 30px; border-bottom: 1px solid rgba(0,0,0,0.1); }
.sticky-num { border: 1px solid rgba(0,0,0,0.3); border-radius: 50%; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.2rem; }
.sticky-title { font-family: var(--font-display); font-size: 2.5rem; text-transform: uppercase; line-height: 1; }
.sticky-body { flex-grow: 1; padding: 60px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; position: relative; }
.sticky-desc { font-size: 1.3rem; line-height: 1.6; max-width: 600px; margin-bottom: 60px; color: rgba(0,0,0,0.8); }
.sticky-big-type { font-family: var(--font-display); font-size: 10vw; line-height: 0.8; text-transform: uppercase; color: #000; margin-top: auto; display: block; }
.sticky-link { font-family: var(--font-body); font-weight: bold; text-transform: uppercase; border-bottom: 2px solid #000; padding-bottom: 5px; color: #000; font-size: 1.1rem; display: inline-block; margin-top: 20px; }
.sticky-poster { background: #fff; transform: rotate(3deg); box-shadow: 0 30px 60px rgba(0,0,0,0.3); display: flex; flex-direction: column; justify-content: space-between; padding: 40px; height: 100%; max-height: 600px; width: 100%; }
.card-audit { background-color: #111111; color: #fff; }
.card-audit .sticky-desc, .card-audit .sticky-big-type, .card-audit .sticky-link { color: #fff; }
.card-audit .sticky-link { border-color: #fff; }
.card-audit .sticky-num { border-color: rgba(255,255,255,0.3); }
.card-web { background-color: var(--brand-primary); color: #000; }
.card-ads { background-color: var(--accent-red); color: #fff; }
.card-ads .sticky-big-type, .card-ads .sticky-link { color: #fff; }
.card-ads .sticky-link { border-color: #fff; }
.poster-visual { cursor: pointer; display: block; }
.poster-visual:hover .sticky-poster { transform: rotate(0deg) scale(1.05); box-shadow: 0 30px 60px rgba(0,0,0,0.2); }

/* --- PORTFOLIO EDITORIAL STYLE --- */
.portfolio-editorial-wrapper {
    display: grid; grid-template-columns: 30% 65%; gap: 5%; padding: 120px 20px;
    background-color: var(--bg-main); border-bottom: 1px solid var(--border-color);
    position: relative; max-width: var(--container-width); margin: 0 auto;
}
.portfolio-sidebar {
    position: sticky; top: 120px; height: fit-content; display: flex; flex-direction: column;
    justify-content: space-between; min-height: 300px;
}
.portfolio-sidebar-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.5rem); line-height: 0.9; margin-bottom: 20px; text-transform: uppercase; }
.portfolio-sidebar-desc { font-family: var(--font-body); font-size: 1rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 40px; border-left: 2px solid var(--brand-primary); padding-left: 20px; }
.mini-newsletter { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--border-color); }
.mini-newsletter label { font-family: 'Times New Roman', serif; font-style: italic; font-size: 0.9rem; color: var(--text-muted); display: block; margin-bottom: 10px; }
.newsletter-inline-form { display: flex; border-bottom: 1px solid var(--text-primary); }
.newsletter-inline-input { background: transparent; border: none; width: 100%; color: #fff; padding: 5px 0; outline: none; }
.newsletter-inline-btn { background: transparent; border: none; color: var(--text-primary); font-weight: bold; cursor: pointer; text-transform: uppercase; font-size: 0.8rem; }
.newsletter-inline-btn:hover { color: var(--accent-red); }

.portfolio-feed { display: flex; flex-direction: column; gap: 100px; }
.editorial-card { text-decoration: none; display: block; transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
.editorial-img-container { width: 100%; aspect-ratio: 16/9; background-color: var(--bg-card); margin-bottom: 25px; overflow: hidden; position: relative; border: 1px solid var(--border-color); }
.editorial-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1); filter: grayscale(20%); }
.editorial-card:hover .editorial-img { transform: scale(1.05); filter: grayscale(0%); }
.editorial-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 15px; border-bottom: 1px solid transparent; padding-bottom: 15px; transition: border-color 0.3s; }
.editorial-card:hover .editorial-header { border-bottom-color: var(--border-color); }
.editorial-title { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.5rem); text-transform: uppercase; line-height: 1; max-width: 85%; transition: color 0.3s; }
.editorial-card:hover .editorial-title { color: var(--brand-primary); }
.read-link { font-family: var(--font-display); font-size: 0.9rem; text-transform: uppercase; color: var(--text-primary); display: flex; align-items: center; gap: 5px; white-space: nowrap; }
.read-arrow { transition: transform 0.3s; color: var(--text-muted); }
.editorial-card:hover .read-link { color: var(--accent-red); }
.editorial-card:hover .read-arrow { transform: translateX(5px); color: var(--accent-red); }
.editorial-desc { font-family: var(--font-body); font-size: 1rem; color: var(--text-muted); max-width: 600px; line-height: 1.5; }

/* --- MANIFESTO SECTION --- */
.manifesto-wrapper { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--border-color); }
.manifesto-img { border-right: 1px solid var(--border-color); min-height: 500px; position: relative; overflow: hidden; }
.noise-img { width: 100%; height: 100%; background-size: cover; background-position: center; filter: grayscale(100%) contrast(1.2); transition: transform 10s ease; }
.manifesto-wrapper:hover .noise-img { transform: scale(1.1); }
.manifesto-content { padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; }

/* --- FAQ SECTION --- */
.faq-section { padding: 100px 20px; border-bottom: 1px solid var(--border-color); background: var(--bg-main); }
.faq-header { text-align: center; margin-bottom: 60px; }
.faq-container { max-width: 900px; margin: 0 auto; border-top: 1px solid var(--border-color); }
.faq-item { border-bottom: 1px solid var(--border-color); transition: 0.3s; }
.faq-item[open] { background-color: var(--bg-surface); }
summary { list-style: none; display: flex; align-items: center; justify-content: space-between; padding: 30px 20px; cursor: pointer; position: relative; }
summary::-webkit-details-marker { display: none; }
.faq-q { font-family: var(--font-body); color: var(--brand-primary); margin-right: 20px; font-size: 0.9rem; }
.faq-title { font-family: var(--font-display); font-size: 1.2rem; flex-grow: 1; text-align: left; transition: 0.3s; }
.faq-item[open] .faq-title { color: var(--accent-red); }
.faq-icon { font-size: 1.5rem; font-weight: bold; transition: 0.3s; }
.faq-item[open] .faq-icon { transform: rotate(45deg); color: var(--accent-red); }
.faq-answer { padding: 0 20px 30px 60px; color: var(--text-secondary); line-height: 1.6; max-width: 90%; }

/* --- NEWSLETTER MARQUEE (VERDE) --- */
.marquee-wrapper { 
    background: var(--brand-primary); 
    color: #000; 
    padding: 15px 0; 
    overflow: hidden; 
    white-space: nowrap; 
    font-family: var(--font-display); 
    font-weight: bold; 
    font-size: 1.2rem; 
}

.marquee-content { 
    display: inline-block; 
    white-space: nowrap; /* CRITIC: Ține textul pe un singur rând */
    will-change: transform;
    animation: scroll 30s linear infinite; /* Animație standard */
    transform: translate3d(0, 0, 0); 
}

/* Animație standard pentru ambele tickere */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.newsletter-section {
    padding: 120px 20px;
    background-color: var(--bg-main);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

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

.newsletter-container h3 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.9;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-transform: uppercase;
}

.newsletter-container p {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .newsletter-container h3 {
        font-size: 3rem;
    }
    .whatsapp-cta {
        width: 100%;
        padding: 20px 10px;
        font-size: 1.2rem;
    }
}

/* --- FOOTER --- */
.footer-brutalist { background: #050505; color: #fff; padding: 80px 20px 20px 20px; border-top: 1px solid var(--border-color); overflow: hidden; }
.footer-giant-text { font-family: var(--font-display); font-size: 13.5vw; font-weight: 700; line-height: 0.8; text-align: center; color: #fff; transition: 0.5s; cursor: default; }
.footer-giant-text:hover { color: var(--brand-primary); }
.footer-giant-text sup { font-size: 20%; vertical-align: top; opacity: 0.5; }
.footer-nav-row { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border-color); padding-bottom: 40px; margin: 40px 0; }
.footer-link { color: #888; text-transform: capitalize; transition: 0.3s; }
.footer-link:hover { color: #fff; text-decoration: underline; }
.footer-legal-row { display: flex; justify-content: flex-start; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; }
.footer-legal-links { display: flex; gap: 20px; align-items: center; }
.footer-social { display: flex; gap: 12px; align-items: center; }
.footer-rights { margin-left: auto; }
.social-links { display: flex; gap: 12px; align-items: center; }
.social-link {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: 0.3s;
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { color: #fff; background: var(--brand-primary); border-color: var(--brand-primary); }

/* --- INTERIOR PAGES --- */
.page-header-wrapper { padding: 140px 20px 60px 20px; border-bottom: 1px solid var(--border-color); background: var(--bg-main); }
.page-title { font-size: clamp(3rem, 8vw, 6rem); line-height: 0.9; margin-bottom: 20px; }
.page-desc { max-width: 600px; color: var(--text-secondary); font-size: 1.1rem; }
.split-layout { display: grid; grid-template-columns: 1fr 2fr; min-height: 100vh; border-bottom: 1px solid var(--border-color); }
.split-sidebar { border-right: 1px solid var(--border-color); padding: 60px 40px; position: sticky; top: 80px; height: calc(100vh - 80px); display: flex; flex-direction: column; justify-content: space-between; }
.split-content { padding: 80px 60px; }
.detail-block { margin-bottom: 80px; }
.detail-block h3 { color: var(--brand-primary); margin-bottom: 20px; font-size: 1.8rem; }
.check-list li { margin-bottom: 15px; display: flex; align-items: flex-start; gap: 10px; color: var(--text-secondary); }
.check-list li::before { content: '✓'; color: var(--accent-red); font-weight: bold; }

.contact-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; min-height: 80vh; padding-top: 120px; }
.contact-info .social-links { margin: 24px 0 32px; }
.contact-info { padding: 60px 40px; border-right: 1px solid var(--border-color); }
.contact-form-area { padding: 60px 80px; }
.contact-wrapper.contact-only { grid-template-columns: 1fr; }
.contact-wrapper.contact-only .contact-info { border-right: none; max-width: var(--container-width); margin: 0 auto; }
.form-group { margin-bottom: 40px; position: relative; }
.form-label { display: block; font-family: var(--font-display); margin-bottom: 10px; color: var(--brand-primary); text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; }
.form-input, .form-select { width: 100%; background: transparent; border: none; border-bottom: 1px solid #ccc; color: var(--text-primary); padding: 15px 0; font-family: var(--font-body); font-size: 1.5rem; border-radius: 0; transition: 0.3s; }
.form-input:focus, .form-select:focus { outline: none; border-bottom-color: var(--accent-red); }
.form-select { cursor: pointer; color: var(--text-secondary); }
.form-select option { background: var(--bg-main); }

.project-hero { padding: 160px 20px 80px 20px; text-align: center; border-bottom: 1px solid var(--border-color); background: var(--bg-main); }
.project-client { font-family: var(--font-body); font-size: 1rem; color: var(--text-secondary); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; display: block; }
.project-title { font-size: clamp(3rem, 8vw, 7rem); line-height: 0.9; margin-bottom: 60px; max-width: 1200px; margin-left: auto; margin-right: auto; }
.project-stats-bar { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--border-color); }
.stat-box { padding: 40px; border-right: 1px solid var(--border-color); text-align: center; }
.stat-box:last-child { border-right: none; }
.stat-value { font-family: var(--font-display); font-size: 3rem; color: var(--brand-primary); line-height: 1; display: block; }
.stat-label { font-family: var(--font-body); font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; margin-top: 10px; display: block; }
.project-content-grid { display: grid; grid-template-columns: 1fr 2fr; max-width: var(--container-width); margin: 0 auto; border-bottom: 1px solid var(--border-color); }
.content-sidebar { padding: 80px 40px; border-right: 1px solid var(--border-color); }
.content-body { padding: 80px 60px; }
.project-text { font-size: 1.2rem; line-height: 1.7; color: var(--text-secondary); margin-bottom: 40px; }
.project-text p { margin-bottom: 20px; }
.project-gallery { display: grid; grid-template-columns: 1fr 1fr; }
.gallery-item { border-right: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); overflow: hidden; position: relative; }
.gallery-item.full-width { grid-column: span 2; }
.gallery-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.gallery-item:hover .gallery-img { transform: scale(1.05); }
.result-impact-section { background-color: var(--brand-primary); color: #fff; padding: 100px 20px; text-align: center; }
.next-project-nav { padding: 100px 20px; text-align: center; border-bottom: 1px solid var(--border-color); cursor: pointer; transition: 0.3s; display: block; }
.next-project-nav:hover { background: var(--bg-surface); }
.next-label { color: var(--text-muted); letter-spacing: 2px; font-size: 0.9rem; text-transform: uppercase; }

.testimonials-section { border-bottom: 1px solid var(--border-color); padding: 120px 20px; background-color: var(--bg-main); text-align: center; }
.big-quote { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.2; margin-bottom: 40px; color: var(--text-primary); max-width: 1100px; margin: 0 auto 50px auto; }
.author-avatar { width: 60px; height: 60px; background: var(--bg-surface); border-radius: 50%; border: 2px solid var(--brand-primary); }

/* Stack badges (Servicii Web) */
.stack-badge {
    border: 1px solid var(--border-color);
    padding: 5px 12px;
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: var(--text-secondary);
}

/* --- PROCESS SECTION (SERVICII ADS) --- */
.process-section {
    padding: 100px 20px;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-main);
}

.section-title-center {
    text-align: center;
    margin-bottom: 60px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    border-top: 2px solid var(--text-muted);
    padding-top: 20px;
}

.process-step.step-1 { border-color: var(--brand-primary); }
.process-step.step-4 { border-color: var(--accent-red); }

.step-num {
    font-family: var(--font-display);
    font-size: 3rem;
    opacity: 0.3;
}

/* --- CUSTOM CURSOR --- */
.cursor-dot, .cursor-outline { position: fixed; top: 0; left: 0; transform: translate(-50%, -50%); border-radius: 50%; z-index: 10005; pointer-events: none; }
.cursor-dot { width: 8px; height: 8px; background-color: var(--accent-red); }
.cursor-outline { width: 40px; height: 40px; border: 1px solid rgba(255, 255, 255, 0.5); transition: width 0.2s, height 0.2s, background-color 0.2s; }
body.hovering .cursor-outline { width: 60px; height: 60px; background-color: rgba(67, 160, 71, 0.2); border-color: var(--brand-primary); }
body {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* --- ABOUT PAGE FIXES --- */
.about-hero-wrapper {
    display: flex;
    min-height: 100vh;
    padding-top: 80px;
}

.about-image-side {
    flex: 0 0 45%;
    background: #000;
    position: relative;
    overflow: hidden;
}

.full-view-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(1) contrast(1.1);
}

.about-text-side {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    background: var(--bg-main);
}

.about-content {
    max-width: 650px;
}

.desc-lead {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.5;
    color: var(--text-primary);
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- CASE STUDY SPECIFIC --- */
.hero-subtext {
    max-width: 800px;
    margin: 30px auto 50px;
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.hero-visual-container {
    width: 100%;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.hero-mockup-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.1));
}

.section-h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.check-list-branded {
    list-style: none;
    padding: 0;
}

.check-list-branded li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
    color: var(--text-secondary);
}

.check-list-branded li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-primary);
    font-weight: bold;
}

.cta-inner {
    max-width: 800px;
    margin: 0 auto;
}

.result-impact-section h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 20px;
    line-height: 1;
}

/* --- CONTACT PAGE SPECIFIC --- */
.contact-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
}

.whatsapp-btn-large {
    background-color: #25D366;
    color: #fff !important;
    text-decoration: none;
    padding: 18px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-weight: bold;
    text-align: center;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: 0.3s;
    display: block;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.whatsapp-btn-large:hover {
    background-color: #1ebd59;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-float { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background-color: var(--brand-primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(67, 160, 71, 0.4); z-index: 1000; transition: 0.3s; cursor: none; }
.whatsapp-float:hover { transform: scale(1.1) rotate(10deg); background-color: #fff; color: var(--brand-primary); }
.wa-tooltip { position: absolute; right: 70px; top: 50%; transform: translateY(-50%); background: #fff; color: #000; padding: 5px 10px; border-radius: 4px; font-size: 0.8rem; font-weight: bold; opacity: 0; transition: 0.3s; pointer-events: none; white-space: nowrap; }
.whatsapp-float:hover .wa-tooltip { opacity: 1; right: 80px; }

.noise-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 9000; opacity: 0.03; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E"); filter: invert(1); }

/* --- COOKIE BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 920px;
    margin: 0 auto;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    z-index: 10002;
}
.cookie-banner p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.cookie-banner a { text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner__btn {
    border: 1px solid var(--text-primary);
    background: transparent;
    color: var(--text-primary);
    padding: 10px 16px;
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.2s ease;
}
.cookie-banner__btn.primary {
    background: var(--text-primary);
    color: #fff;
}
.cookie-banner__btn:hover { transform: translateY(-1px); }

/* =========================================
   🌍 LANGUAGE SWITCHER (BUTOANE LIMBĂ)
   ========================================= */
.lang-switcher { display: flex; align-items: center; gap: 8px; margin: 0 20px; }
.lang-btn {
    background: transparent; border: none; color: var(--text-secondary);
    font-family: var(--font-mono); font-size: 0.85rem; font-weight: 500;
    cursor: pointer; padding: 2px 0; transition: all 0.3s ease; opacity: 0.7; line-height: 1;
}
.lang-btn:hover { color: var(--text-primary); opacity: 1; transform: translateY(-1px); }
.lang-btn.active { color: var(--brand-primary); font-weight: bold; opacity: 1; text-decoration: underline; text-underline-offset: 4px; }
.lang-switcher span { font-family: var(--font-mono); color: var(--border-color); font-size: 0.8rem; }

/* --- RESPONSIVE FIXES --- */
@media (max-width: 900px) {
    /* Meniu Burger Fix */
    .hamburger { display: flex !important; z-index: 10001; }
    .hamburger.active .bar { background-color: var(--accent-red) !important; }
    .hamburger .bar { background-color: var(--text-primary); }
    .nav-links { display: none; } /* Ascundem meniul desktop */
    
    /* Hero Fixes */
    .hero-main-layout { display: flex !important; flex-direction: column; }
    .hero-text-col { order: 1; padding: 20px !important; text-align: left; padding-bottom: 0 !important; }
    .hero-visual-col { display: flex !important; justify-content: center; align-items: center; width: 100%; margin-top: 20px; margin-bottom: 40px; order: 2; }
    
    /* Card Fix for Mobile - FĂRĂ DISPARIȚIE */
    .floating-card { width: 85vw !important; max-width: 320px !important; height: 400px !important; transform: rotate(0deg) !important; box-shadow: 0 15px 40px rgba(0,0,0,0.1) !important; margin: 0 auto; }
    .card-media { height: 80% !important; }
    .card-data { height: 20% !important; }
    .desktop-only { display: none !important; }
    
    /* Text Overflow Fix */
    .sophisticated-headline { font-size: 11vw !important; margin-bottom: 30px; letter-spacing: -1px; word-wrap: break-word; }
    .hero-description-block, .sophisticated-headline .line-2 { margin-left: 0 !important; }
    .hero-ticker-bottom { font-size: 0.8rem; }
    .hero-sophisticated { padding-left: 0 !important; padding-right: 0 !important; }
    
    /* CTA Fix */
    .cta-wrapper { flex-direction: column; align-items: flex-start; gap: 20px; width: 100%; padding-right: 10px; }
    .btn-main { width: 100%; text-align: center; font-size: 0.9rem; padding: 15px 10px; }
    .link-minimal { font-size: 0.8rem; margin-top: 5px; }
    
    /* Language Switcher Mobile */
    nav .lang-switcher { display: none; }
    .mobile-lang-switcher { display: flex !important; justify-content: center; gap: 20px; margin-top: 40px; border-top: 1px solid var(--border-color); padding-top: 30px; width: 100%; max-width: 200px; }
    .mobile-lang-switcher .lang-btn { font-size: 1.2rem !important; padding: 10px; }
    .mobile-lang-switcher span { font-size: 1.2rem; opacity: 0.2; }
    
    /* Restul responsive */
    .footer-nav-row { flex-direction: column; align-items: flex-start; gap: 20px; }
    .footer-giant-text { font-size: 18vw; text-align: left; }
    .split-layout, .contact-wrapper { grid-template-columns: 1fr; }
    .split-sidebar { position: relative; height: auto; border-right: none; border-bottom: 1px solid var(--border-color); }
    .split-content, .contact-form-area, .contact-info { padding: 40px 20px; }
    .contact-info { border-right: none; border-bottom: 1px solid var(--border-color); }
    .faq-answer { padding: 0 20px 20px 20px; }
    .faq-title { font-size: 1rem; }
    .manifesto-wrapper { grid-template-columns: 1fr; }
    .manifesto-img { height: 300px; border-right: none; border-bottom: 1px solid var(--border-color); }
    .manifesto-content { padding: 40px 20px; }
    .portfolio-editorial-wrapper { grid-template-columns: 1fr; gap: 60px; }
    .portfolio-sidebar { position: relative; top: 0; min-height: auto; border-bottom: 1px solid var(--border-color); padding-bottom: 40px; }
    .editorial-img-container { aspect-ratio: 4/3; }
    .project-stats-bar { grid-template-columns: 1fr; }
    .stat-box { border-right: none; border-bottom: 1px solid var(--border-color); }
    .project-content-grid { grid-template-columns: 1fr; }
    .content-sidebar { border-right: none; border-bottom: 1px solid var(--border-color); padding: 40px 20px; }
    .content-body { padding: 40px 20px; }
    .project-gallery { grid-template-columns: 1fr; }
    .gallery-item.full-width { grid-column: span 1; }

    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-banner__actions { width: 100%; }
    .cookie-banner__btn { width: 100%; text-align: center; }

    /* FIX PENTRU SECTIUNEA "NOI CONSTRUIM SISTEME PENTRU BRANDURI" PE MOBIL */
    .inline-sentence {
        font-size: clamp(1.8rem, 8vw, 2.5rem) !important;
        line-height: 1.4 !important;
    }

    .brand-slot {
        padding: 2px 12px !important;
        margin: 0 5px !important;
        height: 1.1em !important;
    }

    .brand-text {
        font-size: 0.45em !important;
        letter-spacing: 1px !important;
        white-space: nowrap;
    }

    .brand-slot::before,
    .brand-slot::after {
        width: 10px !important;
        height: 10px !important;
        border-width: 1.5px !important;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-step {
        padding-top: 15px;
    }

    .about-hero-wrapper {
        flex-direction: column;
    }

    .about-image-side {
        width: 100%;
        height: 500px;
        flex: none;
    }

    .about-text-side {
        padding: 40px 20px;
        width: 100%;
    }

    .desc-lead {
        font-size: 1.2rem;
    }

    .about-hero-wrapper .btn-main {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 1024px) {
    .sticky-body {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
    .sticky-poster {
        display: flex;
        transform: rotate(0deg);
        width: 100%;
        max-height: 350px;
        padding: 30px;
    }
    .poster-visual { order: 2; }
    .sticky-big-type {
        font-size: 15vw;
        line-height: 1;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .sticky-header { padding: 20px; }
    .sticky-title { font-size: 1.5rem; }
    .sticky-desc { font-size: 1rem; }
    .hero-tech-header { font-size: 0.6rem; padding: 15px 20px; }
    .contact-wrapper { padding-top: 100px; }
    .page-title { font-size: 3.5rem !important; }
    .contact-info { padding: 40px 20px; }
    .sophisticated-headline {
        font-size: clamp(2.5rem, 10vw, 4rem) !important;
        line-height: 1 !important;
        margin-bottom: 20px;
    }
    .inline-sentence {
        font-size: 1.8rem !important;
        line-height: 1.4 !important;
    }
    .brand-slot {
        padding: 2px 10px !important;
        height: 1.1em !important;
    }
    .faq-title {
        font-size: 1rem !important;
        padding-right: 30px;
    }
    .footer-giant-text {
        font-size: 12vw !important;
    }
    .project-hero {
        padding-top: 120px;
    }
    .project-title {
        font-size: 2.8rem !important;
    }
    .project-stats-bar {
        grid-template-columns: 1fr !important;
    }
    .stat-box {
        border-right: none !important;
        border-bottom: 1px solid var(--border-color);
        padding: 40px 20px !important;
    }
    .project-content-grid {
        grid-template-columns: 1fr !important;
    }
    .content-sidebar {
        border-right: none !important;
        border-bottom: 1px solid var(--border-color);
    }
}

@media (max-width: 480px) {
    .sticky-poster {
        max-height: 280px;
        padding: 20px;
    }
    .sticky-poster div[style*="font-size:5rem"],
    .sticky-poster div[style*="font-size:3rem"] {
        font-size: 3.5rem !important;
    }
}

@media (max-width: 380px) {
    html { font-size: 14px; }
    .inline-sentence { font-size: 1.6rem !important; }
    .brand-slot { padding: 2px 8px !important; }
    .sophisticated-headline {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 7vw, 7rem);
    line-height: 0.85;
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    animation: none !important;
}
    .hero-ticker-bottom { display: block; font-size: 0.75rem; }
}

/* CURSOR HOVER FIX */
a, button, .btn-main, .poster-visual { cursor: none; }

@media (max-width: 768px) {
    .hero-description-block p { font-size: 1rem; }
    .hero-bullets { font-size: 0.95rem; }
    .footer-giant-text { font-size: clamp(2rem, 10vw, 6rem); }
}
a:hover ~ .cursor-outline, button:hover ~ .cursor-outline { transform: scale(1.5); }

@media (pointer: coarse) {
    .cursor-dot, .cursor-outline { display: none !important; }
    body, a, button, .btn-main { cursor: auto !important; }
}

\r\n/* Focus States pentru navigare din tastatură */\r\n:focus-visible {\r\n    outline: 2px solid var(--accent-red);\r\n    outline-offset: 4px;\r\n}\r\n\r\nbody:has(:focus-visible) .cursor-dot,\r\nbody:has(:focus-visible) .cursor-outline {\r\n    display: none;\r\n}\r\n/* --- SPOTLIGHT EFFECT PE GRILĂ --- */
.hero-sophisticated {
    /* Setăm variabile default ca să nu crape până se încarcă JS */
    --x: 50%;
    --y: 50%;
}

.bg-grid-layer {
    mask-image: none !important;
    -webkit-mask-image: none !important;
    opacity: 0.05;
}

/* Pe mobil dezactivăm spotlight-ul și lăsăm grila vizibilă peste tot, dar mai ștearsă */
@media (max-width: 900px) {
    .bg-grid-layer {
    mask-image: none !important;
    -webkit-mask-image: none !important;
    opacity: 0.05;
}
}

/* =========================================
   ✨ NEW EFFECTS (SPOTLIGHT & MAGNETIC)
   ========================================= */

/* 1. SPOTLIGHT GRID (Lanterna) */
.hero-sophisticated {
    /* Variabile default */
    --x: 50%;
    --y: 50%;
}

.bg-grid-layer {
    mask-image: none !important;
    -webkit-mask-image: none !important;
    opacity: 0.05;
}

/* Pe mobil dezactivăm spotlight-ul și lăsăm grila ștearsă */
@media (max-width: 900px) {
    .bg-grid-layer {
    mask-image: none !important;
    -webkit-mask-image: none !important;
    opacity: 0.05;
}
}

/* 2. OPTIMIZARE BUTOANE MAGNETICE */
.btn-main, .pill-btn, .sticky-link {
    /* Asigurăm că tranziția e fluidă dar rapidă pentru efectul magnetic */
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                background-color 0.3s, 
                color 0.3s, 
                box-shadow 0.3s;
    will-change: transform; /* Optimizare GPU */
    display: inline-block; /* Necesar pentru transform */
}\r\n@media (prefers-reduced-motion: reduce) {\r\n    *, ::before, ::after {\r\n        animation-delay: -1ms !important;\r\n        animation-duration: 1ms !important;\r\n        animation-iteration-count: 1 !important;\r\n        background-attachment: scroll !important;\r\n        scroll-behavior: auto !important;\r\n        transition-duration: 0s !important;\r\n        transition-delay: 0s !important;\r\n    }\r\n    .scan-line, .marquee-content {\r\n        display: none !important;\r\n    }\r\n    .ticker-track {\r\n        animation: none !important;\r\n        transform: none !important;\r\n    }\r\n}\r\n

/* Stil pentru logourile obligatorii ANPC/SOL */
.footer-legal-logos {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-legal-logos a {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.footer-legal-logos a:hover {
    opacity: 0.8;
}

.footer-legal-logos img {
    height: 45px;
    width: auto;
    border-radius: 4px;
    background: white;
    padding: 2px;
}

@media (max-width: 600px) {
    .footer-legal-logos {
        justify-content: center;
        gap: 10px;
    }
    .footer-legal-logos img {
        height: 35px;
    }
}


.cursor-dot, .cursor-outline {
    z-index: 10005 !important;
}

:focus-visible {
    outline: 2px solid var(--accent-red) !important;
    outline-offset: 4px;
}

body:has(:focus-visible) .cursor-dot,
body:has(:focus-visible) .cursor-outline {
    display: none;
}

.faq-section {
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: 'GP';
    position: absolute;
    bottom: -50px;
    right: -20px;
    font-family: var(--font-display);
    font-size: 30vw;
    color: var(--text-primary);
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.sophisticated-headline {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 7vw, 7rem);
    line-height: 0.85;
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    animation: none !important;
}

/* COOKIE BANNER PREMIUM STYLE */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 800px;
    background: var(--text-primary);
    color: var(--bg-main);
    padding: 25px;
    border: 1px solid var(--brand-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    z-index: 11000;
    box-shadow: 15px 15px 0px rgba(67, 160, 71, 0.2);
}

.cookie-banner p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.cookie-banner a {
    color: var(--brand-primary);
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-banner button {
    padding: 10px 25px;
    font-family: var(--font-display);
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    border: 1px solid var(--bg-main);
    background: transparent;
    color: var(--bg-main);
    transition: 0.3s;
}

.cookie-banner button.primary {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: white;
}

.cookie-banner button:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: white;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        bottom: 10px;
        padding: 20px;
    }
    .cookie-banner__actions {
        width: 100%;
    }
    .cookie-banner button {
        flex: 1;
    }
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-legal-logos {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-legal-logos img {
    height: 35px;
    width: auto;
    filter: grayscale(1) brightness(1.5);
    transition: 0.3s;
}

.footer-legal-logos img:hover {
    filter: grayscale(0) brightness(1);
}

.footer-cta-link {
    color: var(--text-primary);
    text-decoration: underline;
}

.footer-privacy-link {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    text-decoration: none;
}

.footer-rights {
    font-size: 0.7rem;
    color: #444;
    text-transform: uppercase;
}

/* COOKIE BANNER - PREMIUM BRUTALIST */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: #050505;
    color: #fff;
    padding: 25px;
    border: 1px solid var(--brand-primary);
    z-index: 11000;
    box-shadow: 20px 20px 0px rgba(67, 160, 71, 0.15);
}

.cookie-banner__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-banner p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.cookie-banner a {
    color: var(--brand-primary);
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn-accept, .cookie-btn-refuse {
    padding: 10px 20px;
    font-family: var(--font-display);
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid transparent;
}

.cookie-btn-accept {
    background: var(--brand-primary);
    color: #fff;
}

.cookie-btn-accept:hover {
    background: #fff;
    color: #000;
}

.cookie-btn-refuse {
    background: transparent;
    border-color: #333;
    color: #888;
}

.cookie-btn-refuse:hover {
    border-color: var(--accent-red);
    color: var(--accent-red);
}

/* Butonul de Politică din Banner */
.cookie-btn-link {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
    padding: 10px 15px;
    transition: 0.3s;
    border-bottom: 1px solid transparent;
}

.cookie-btn-link:hover {
    color: var(--brand-primary);
    border-bottom-color: var(--brand-primary);
}

@media (max-width: 768px) {
    .cookie-banner__content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-banner__actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .cookie-banner__actions button {
        flex: 1;
    }
    .cookie-btn-accept {
        grid-column: span 2;
    }
}

/* --- CUSTOM CURSOR STYLES (Override) --- */
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 12000;
    pointer-events: none;
    transition: width 0.3s, height 0.3s, background-color 0.3s, opacity 0.3s;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--brand-primary);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--brand-primary);
    opacity: 0.5;
}

body.hovering .cursor-outline {
    width: 65px;
    height: 65px;
    background-color: rgba(67, 160, 71, 0.1);
    border-color: var(--accent-red);
    opacity: 1;
}

body.hovering .cursor-dot {
    background-color: var(--accent-red);
}

/* --- REVEAL ANIMATIONS (Override) --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (pointer: coarse) {
    .cursor-dot, .cursor-outline { display: none !important; }
    body { cursor: auto !important; }
}

/* COOKIE OVERLAY POP-OUT */
.cookie-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 19999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-banner {
    background: #050505;
    color: #fff;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    border: 1px solid var(--brand-primary);
    box-shadow: 0 0 50px rgba(67, 160, 71, 0.3);
    text-align: center;
    z-index: 20000;
    position: relative;
}

.cookie-banner h3 {
    font-size: 1.5rem;
    color: var(--brand-primary);
    margin-bottom: 20px;
}

.cookie-banner p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ccc;
}

.cookie-banner__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cookie-btn-accept {
    padding: 15px;
    background: var(--brand-primary);
    color: #000;
    font-weight: bold;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-family: var(--font-display);
    transition: 0.3s;
}

.cookie-btn-accept:hover {
    background: #fff;
}

.cookie-btn-refuse {
    padding: 12px;
    background: transparent;
    color: #666;
    border: 1px solid #333;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: 0.3s;
}

.cookie-btn-refuse:hover {
    border-color: var(--accent-red);
    color: var(--accent-red);
}

.cookie-btn-link {
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: underline;
}

/* Cursor visibility on cookie modal */
body.cookie-modal-open { cursor: auto !important; }
body.cookie-modal-open .cursor-dot,
body.cookie-modal-open .cursor-outline { display: none !important; }
.cookie-overlay, .cookie-banner, .cookie-banner * { cursor: auto !important; }
