:root {
    --white: #FFFFFF;
    --black: #090909;
    --gray-light: #EAEAEA;
    --gray-surface: #EFEFEF;
    --off-white: #F5F4F3;
    --text-secondary: #6B6B6B;
    --text-on-dark: #B0B0B0;
    --accent: #FF8742;
    --accent-rgb: 255, 135, 66;
    --radius-pill: 999px;
    --radius-card: 12px;
    --max-width: 1280px;
    --font-display: 'Inter Tight', -apple-system, sans-serif;
    --transition-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
    --section-padding: clamp(60px, 8vw, 120px);
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
    font-family: var(--font-display);
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width:100%; height:auto; display:block; }
a { color:inherit; text-decoration:none; }
ul { list-style:none; }
button { font-family:inherit; cursor:pointer; border:none; background:none; }

.container { width:90%; max-width:var(--max-width); margin:0 auto; padding:0 24px; }
.section { padding:var(--section-padding) 0; position:relative; }
.section-light { background:var(--white); }
.section-gray { background:var(--gray-light); }
.section-off-white { background:var(--off-white); }

/* Butoane */
.btn {
    display:inline-flex; align-items:center; gap:12px; padding:16px 28px;
    border-radius:var(--radius-pill); font-weight:600; font-size:15px;
    transition: all 0.3s var(--transition-smooth); letter-spacing:-0.2px; white-space:nowrap;
}
.btn-dark { background:var(--black); color:var(--white); }
.btn-light { background:var(--gray-light); color:var(--black); }
.btn .btn-arrow {
    width:24px; height:24px; border-radius:50%; border:1.5px solid currentColor;
    display:flex; align-items:center; justify-content:center; font-size:14px; transition: transform 0.3s;
}
.btn:hover { transform:scale(1.04); }
.btn:hover .btn-arrow { transform:translateX(3px); }
.btn-dark:hover { box-shadow:0 8px 30px rgba(0,0,0,0.2); }
.btn-light:hover { box-shadow:0 8px 25px rgba(0,0,0,0.08); }
.btn-outline { background:transparent; color:var(--black); border:2px solid var(--black); }
.btn-outline:hover { background:var(--black); color:var(--white); }

/* Header */
.header {
    position:fixed; top:0; left:0; width:100%; background:rgba(255,255,255,0.95);
    backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px); z-index:1000;
    border-bottom:1px solid rgba(0,0,0,0.06); transition:box-shadow 0.3s;
}
.header.scrolled { box-shadow:0 2px 20px rgba(0,0,0,0.06); }
.header .container { display:flex; align-items:center; justify-content:space-between; height:80px; }
.logo { font-size:32px; font-weight:900; letter-spacing:-2px; color:var(--black); text-transform:uppercase; }
.nav-desktop { display:flex; gap:36px; align-items:center; }
.nav-desktop a { font-size:14px; font-weight:500; color:var(--black); transition:color 0.3s; letter-spacing:-0.2px; }
.nav-desktop a:hover { color:var(--accent); }
.header .btn { padding:10px 22px; font-size:13px; }
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; z-index:1001; }
.hamburger span { display:block; width:26px; height:2.5px; background:var(--black); transition:all 0.3s; }
.hamburger.active span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity:0; }
.hamburger.active span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }
.mobile-nav {
    position:fixed; top:0; left:0; width:100%; height:100vh; background:var(--white);
    display:flex; flex-direction:column; align-items:center; justify-content:center; gap:40px;
    z-index:999; transform:translateY(-100%); transition:transform 0.4s var(--transition-smooth);
}
.mobile-nav.active { transform:translateY(0); }
.mobile-nav a { font-size:24px; font-weight:600; color:var(--black); }

/* Watermark */
.watermark {
    position:absolute; font-size:28vw; font-weight:900; color:rgba(0,0,0,0.025);
    white-space:nowrap; pointer-events:none; user-select:none; z-index:0; letter-spacing:-10px; line-height:1;
}
.watermark-top { top:5%; left:-5%; }
.watermark-bottom { bottom:-10%; right:-5%; }

/* Hero */
.hero {
    min-height:100vh; display:flex; align-items:center; justify-content:center;
    text-align:center; padding-top:120px; position:relative; overflow:hidden;
}
.hero-content { position:relative; z-index:1; max-width:800px; }
.hero-title {
    font-size:clamp(42px, 7vw, 88px); font-weight:900; text-transform:uppercase;
    line-height:0.95; letter-spacing:-3px; margin-bottom:40px;
}
.hero-text-block { max-width:620px; margin:0 auto 50px; color:var(--text-secondary); font-size:16px; line-height:1.7; text-align:center; }
.hero-text-block .highlight { font-weight:700; color:var(--black); }
.hero-text-block .accent-line { color:var(--accent); font-weight:700; }
.hero-text-block p { margin-bottom:16px; }
.hero-cta { display:flex; justify-content:center; gap:16px; flex-wrap:wrap; margin-top:50px; }

/* Spotlight */
.spotlight-section { background:var(--black); position:relative; overflow:hidden; text-align:center; padding:160px 0; }
.spotlight-glow {
    position:absolute; top:-30%; left:50%; transform:translateX(-50%);
    width:800px; height:600px; background:radial-gradient(ellipse at center, rgba(255,255,255,0.07) 0%, transparent 70%);
    pointer-events:none; z-index:0;
}
.spotlight-content { position:relative; z-index:1; }
.spotlight-title {
    font-size:clamp(36px, 5.5vw, 64px); font-weight:900; line-height:1.1;
    letter-spacing:-2px; margin-bottom:30px; color:var(--white);
}
.spotlight-title .light-weight { font-weight:300; }
.marquee-container { margin-top:60px; overflow:hidden; width:100%; }
.marquee-track { display:flex; gap:60px; animation:marquee 25s linear infinite; width:max-content; }
.marquee-track span { color:rgba(255,255,255,0.5); font-size:18px; font-weight:600; letter-spacing:1px; text-transform:uppercase; white-space:nowrap; }
@keyframes marquee { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }

/* Services */
.what-we-do-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start; }
.what-we-do-left h2 { font-size:clamp(36px, 5vw, 56px); font-weight:900; line-height:1.05; letter-spacing:-2px; margin-bottom:24px; }
.what-we-do-left .desc { color:var(--text-secondary); font-size:16px; line-height:1.7; margin-bottom:30px; max-width:420px; }
.what-we-do-left .note { font-size:14px; color:var(--text-secondary); margin-top:30px; }
.what-we-do-left .note span { color:var(--accent); font-weight:600; }
.service-cards { display:flex; flex-direction:column; gap:10px; }
.service-card {
    display:flex; gap:20px; align-items:center; background:var(--gray-surface);
    border-radius:var(--radius-card); padding:20px 24px; transition:all 0.3s;
}
.service-card:hover { background:#E0E0E0; transform:translateX(4px); }
.service-card .thumb { width:56px; height:56px; border-radius:8px; background:#D0D0D0; flex-shrink:0; overflow:hidden; }
.service-card .thumb img { width:100%; height:100%; object-fit:cover; }
.service-card .info h4 { font-size:15px; font-weight:700; margin-bottom:2px; color:var(--black); }
.service-card .info h4 .num { color:var(--accent); margin-right:6px; font-weight:600; }
.service-card .info p { font-size:13px; color:var(--text-secondary); line-height:1.4; }

/* Proiecte */
.portfolio-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(220px, 1fr)); gap:20px; }
.portfolio-item {
    position:relative; aspect-ratio:9/16; border-radius:var(--radius-card);
    overflow:hidden; box-shadow:0 4px 20px rgba(0,0,0,0.04); display:block;
}
.portfolio-item img {
    width:100%; height:100%; object-fit:cover; transition:transform 0.5s ease;
}
.portfolio-overlay {
    position:absolute; bottom:0; left:0; right:0;
    background:linear-gradient(transparent, rgba(0,0,0,0.75));
    padding:30px 24px; color:#fff; opacity:0;
    transition:opacity 0.35s ease; display:flex; flex-direction:column; justify-content:flex-end;
    pointer-events:none;
}
.portfolio-item:hover .portfolio-overlay { opacity:1; }
.portfolio-item:hover img { transform:scale(1.03); }
.portfolio-overlay h4 { font-size:1.2rem; margin-bottom:6px; font-weight:700; }
.portfolio-overlay p { font-size:0.9rem; opacity:0.85; }

/* Parteneriate */
.partnerships { text-align:center; }
.partnerships h2 { font-size:clamp(32px, 5vw, 56px); font-weight:900; line-height:1.1; letter-spacing:-2px; margin-bottom:20px; max-width:700px; margin-left:auto; margin-right:auto; }
.partnerships .counter { color:var(--accent); font-weight:900; }
.partnerships .desc { color:var(--text-secondary); font-size:16px; max-width:600px; margin:0 auto 40px; line-height:1.7; }

/* Team */
.team { text-align:center; }
.team h2 { font-size:clamp(32px, 4.5vw, 50px); font-weight:900; letter-spacing:-2px; margin-bottom:16px; }
.team .subtitle { color:var(--text-secondary); font-size:16px; max-width:550px; margin:0 auto 40px; line-height:1.6; }
.tags { display:flex; gap:12px; flex-wrap:wrap; justify-content:center; margin-bottom:50px; }
.tag { padding:10px 22px; border-radius:var(--radius-pill); background:#D8D8D8; font-size:14px; font-weight:500; transition:all 0.3s; cursor:pointer; color:var(--black); }
.tag:hover { background:#C0C0C0; }

/* Why Globals */
.why-text { font-size:clamp(24px, 3.5vw, 38px); font-weight:700; line-height:1.35; letter-spacing:-1px; max-width:800px; color:#1a1a1a; }

/* Section heading */
.section-heading {
    font-size:clamp(32px, 4.5vw, 56px); font-weight:900; letter-spacing:-2px;
    margin-bottom:48px; text-align:center;
}

/* Image showcase */
.image-showcase-wrap { background:var(--off-white); border-radius:var(--radius-card); overflow:hidden; box-shadow:0 2px 24px rgba(0,0,0,0.05); }
.image-showcase-wrap img { width:100%; height:auto; max-height:70vh; object-fit:contain; display:block; }
.image-caption { text-align:center; font-size:13px; color:var(--text-secondary); margin-top:14px; letter-spacing:0.2px; }

/* Prose / text content */
.prose { font-size:17px; line-height:1.85; color:#333; }
.prose p { margin-bottom:20px; }
.prose h2, .prose h3 { font-weight:800; margin:36px 0 14px; letter-spacing:-0.5px; }
.prose h2 { font-size:28px; }
.prose h3 { font-size:22px; }
.prose ul, .prose ol { margin:14px 0 20px 24px; }
.prose li { margin-bottom:8px; }
.prose a { color:var(--accent); text-decoration:underline; }
.prose strong { color:#111; }
.prose blockquote {
    border-left:4px solid var(--accent); margin:24px 0; padding:12px 24px;
    background:var(--off-white); border-radius:0 8px 8px 0; font-style:italic; color:#555;
}

/* Related items */
.related-card {
    background:#fff; border-radius:12px; overflow:hidden;
    box-shadow:0 2px 12px rgba(0,0,0,0.05); text-decoration:none; color:inherit;
    display:block; transition:transform 0.3s,box-shadow 0.3s;
}
.related-card:hover { transform:translateY(-4px); box-shadow:0 8px 30px rgba(0,0,0,0.1); }
.related-card img { width:100%; height:200px; object-fit:cover; transition:transform 0.4s; }
.related-card:hover img { transform:scale(1.04); }
.related-card-body { padding:20px 24px; }
.related-card-body h3 { font-size:18px; font-weight:700; margin-bottom:6px; }
.related-card-body p { font-size:13px; color:var(--text-secondary); line-height:1.5; }

/* Contact split */
.contact-split { text-align:center; }
.contact-split h2 { font-size:clamp(28px, 4vw, 48px); font-weight:900; letter-spacing:-2px; margin-bottom:16px; }
.contact-split .subtitle { color:var(--text-secondary); margin-bottom:60px; font-size:16px; }
.contact-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:40px; text-align:center; }
.contact-item h4 { font-weight:700; font-size:18px; margin-bottom:10px; }
.contact-item a { color:var(--accent); font-weight:600; font-size:16px; transition:opacity 0.3s; }
.contact-item a:hover { opacity:0.7; }

/* Join team */
.join { text-align:center; }
.join h2 { font-size:clamp(28px, 4vw, 48px); font-weight:900; letter-spacing:-2px; margin-bottom:40px; }
.join-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; text-align:center; position:relative; }
.join-grid::after { content:''; position:absolute; left:50%; top:10%; height:80%; width:1px; background:#D0D0D0; }
.join-item h4 { font-weight:700; font-size:20px; margin-bottom:8px; }
.join-item a { color:var(--accent); font-weight:600; font-size:16px; }

/* Footer */
.footer { background:var(--off-white); padding:60px 0 30px; }
.footer-top { display:flex; justify-content:space-between; align-items:flex-start; flex-wrap:wrap; gap:40px; margin-bottom:40px; }
.footer-links { display:flex; gap:24px; flex-wrap:wrap; }
.footer-links a { font-size:13px; color:var(--text-secondary); transition:color 0.3s; }
.footer-links a:hover { color:var(--black); }
.footer-contact { text-align:right; font-size:14px; color:var(--text-secondary); }
.footer-bottom { border-top:1px solid #D0D0D0; padding-top:25px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px; }
.footer-bottom .copyright { font-size:12px; color:var(--accent); font-weight:500; }
.scroll-top { width:44px; height:44px; border-radius:50%; background:var(--black); color:var(--white); display:flex; align-items:center; justify-content:center; font-size:20px; cursor:pointer; transition:all 0.3s; }
.scroll-top:hover { background:var(--accent); transform:translateY(-3px); }

/* Responsive */
@media (max-width: 1200px) {
    .what-we-do-grid { gap:50px; }
}
@media (max-width: 1024px) {
    .what-we-do-grid { grid-template-columns:1fr; gap:50px; }
    .contact-grid { grid-template-columns:1fr 1fr; gap:30px; }
    .join-grid { grid-template-columns:1fr; gap:40px; }
    .join-grid::after { display:none; }
    .container { padding:0 20px; }
}
@media (max-width: 768px) {
    .nav-desktop { display:none; }
    .header .container .btn { display:none; }
    .hamburger { display:flex; }
    .section { padding:60px 0; }
    .hero-title { font-size:clamp(32px,10vw,48px); letter-spacing:-1px; }
    .spotlight-title { font-size:28px; }
    .marquee-track { gap:24px; animation-duration:14s; }
    .contact-grid { grid-template-columns:1fr; gap:30px; }
    .text-image-layout { grid-template-columns:1fr !important; gap:30px; }
    .footer-top { flex-direction:column; text-align:center; align-items:center; }
    .footer-contact { text-align:center; }
    .footer-links { justify-content:center; }
    .footer-bottom { flex-direction:column; text-align:center; }
    .portfolio-grid { grid-template-columns:repeat(2, 1fr); gap:12px; }
    .team-grid { grid-template-columns:repeat(2,1fr) !important; }
    .stats-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 480px) {
    .container { padding:0 16px; }
    .hero-title { font-size:28px; }
    .hero-cta { flex-direction:column; align-items:center; }
    .team-grid { grid-template-columns:1fr !important; }
    .portfolio-grid { grid-template-columns:1fr; }
    .btn { padding:14px 24px; font-size:14px; }
}