* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Space Grotesk', sans-serif; background: var(--bg-dark); color: var(--white); overflow-x: hidden; cursor: none; }
::selection { background: var(--accent-2); color: white; }

/* Cursor simplificat - fără glow */
.cursor-dot { width: 6px; height: 6px; background: var(--cursor-color); border-radius: 50%; position: fixed; pointer-events: none; z-index: 99999; transform: translate(-50%, -50%); }
.cursor-ring { width: 35px; height: 35px; border: 1px solid rgba(var(--tint), 0.5); border-radius: 50%; position: fixed; pointer-events: none; z-index: 99998; transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease; transform: translate(-50%, -50%); }
.cursor-ring.expand { width: 55px; height: 55px; border-color: var(--accent-2); }

.noise { position: fixed; inset: 0; pointer-events: none; z-index: 9998; opacity: var(--noise-opacity); background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E"); }

.loader { position: fixed; inset: 0; background: var(--bg-dark); z-index: 99999; display: flex; align-items: center; justify-content: center; flex-direction: column; }
.loader-logo { font-size: clamp(4rem, 15vw, 10rem); font-weight: 700; }
.loader-logo span { display: inline-block; background: var(--gradient-main); background-size: 300% 300%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; /* gradientShift scos: gradientul e culoare plata, deci animatia nu mai desena nimic */ opacity: 0; transform: translateY(100%); }
.loader-logo span:nth-child(1) { animation-delay: 0s, 0.05s; }
.loader-logo span:nth-child(2) { animation-delay: 0s, 0.1s; }
.loader-logo span:nth-child(3) { animation-delay: 0s, 0.15s; }
.loader-logo span:nth-child(4) { animation-delay: 0s, 0.2s; }
.loader-logo span:nth-child(5) { animation-delay: 0s, 0.25s; }
.loader-logo span:nth-child(6) { animation-delay: 0s, 0.3s; }
.loader-logo span:nth-child(7) { animation-delay: 0s, 0.35s; }
.loader-logo span:nth-child(8) { animation-delay: 0s, 0.4s; }
.loader-logo span:nth-child(9) { animation-delay: 0s, 0.45s; }
@keyframes letterReveal { to { opacity: 1; transform: translateY(0); } }
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.loader-tagline { font-size: 0.85rem; color: var(--white-muted); letter-spacing: 4px; text-transform: uppercase; margin-top: 1.5rem; opacity: 0; animation: fadeIn 0.4s ease 0.5s forwards; }
@keyframes fadeIn { to { opacity: 1; } }
.loader.hidden { opacity: 0; visibility: hidden; transition: all 0.5s ease; }

nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1.5rem 5%; display: flex; justify-content: space-between; align-items: center; transition: all 0.4s ease; }
.logo { font-size: 1.4rem; font-weight: 700; color: var(--white); text-decoration: none; display: flex; align-items: center; gap: 0.3rem; }
.logo-img { height: 80px; width: auto; object-fit: contain; transition: all 0.4s ease; }
.logo:hover .logo-img { filter: brightness(1.2); }

/* "82 Design | Digital Design with Purpose" - tagline next to logo */
.logo-divider {
    color: rgba(var(--tint), 0.25);
    font-weight: 300;
    font-size: 1.6rem;
    margin: 0 0.4rem;
    line-height: 1;
    transition: all 0.4s ease;
}
.logo-tagline {
    font-size: 0.78rem;
    color: rgba(var(--tint), 0.6);
    font-weight: 400;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 0.4s ease;
    font-family: 'Space Grotesk', sans-serif;
}
nav.scrolled .logo-divider { font-size: 1.2rem; color: rgba(var(--tint), 0.3); }
nav.scrolled .logo-tagline { font-size: 0.72rem; color: rgba(var(--tint), 0.7); }
.logo:hover .logo-tagline { color: rgba(var(--tint), 0.9); }

nav.scrolled { background: rgba(var(--bg-rgb), 0.95); backdrop-filter: blur(20px); padding: 0.8rem 5%; }
nav.scrolled .logo-img { height: 50px; }
.logo-num { background: var(--gradient-main); background-size: 200% 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; /* gradientShift scos: gradientul e culoare plata, deci animatia nu mai desena nimic */ }
.nav-links { display: flex; gap: 2.2rem; list-style: none; align-items: center; margin-left: auto; padding-left: 3rem; }
.nav-links a { color: var(--white); text-decoration: none; font-size: 0.9rem; font-weight: 500; position: relative; padding: 0.5rem 0; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background: var(--gradient-main); transform: scaleX(0); transform-origin: right; transition: transform 0.5s ease; }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ============ SERVICES DROPDOWN - polished version ============ */
.has-dropdown { position: relative; }
.has-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}
.has-dropdown .dropdown-arrow {
    flex-shrink: 0;
}
.dropdown-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    opacity: 0.55;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}
.has-dropdown:hover .dropdown-arrow,
.has-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
    opacity: 1;
}
/* Bridge: invisible padding so mouse can move from trigger to menu without gap (DESKTOP ONLY) */
@media (min-width: 769px) {
    .has-dropdown::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: 1.4rem;
        background: transparent;
        pointer-events: none;
    }
    .has-dropdown:hover::after,
    .has-dropdown:focus-within::after,
    .has-dropdown.open::after {
        pointer-events: auto;
    }
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 1rem);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 320px;
    background: rgba(var(--bg-rgb), 0.95);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(var(--tint), 0.08);
    border-radius: 18px;
    padding: 0.6rem;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35), 0 10px 25px rgba(0, 0, 0, 0.2);
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu,
.has-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
/* Subtle little pointer arrow above dropdown */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 14px;
    height: 14px;
    background: rgba(var(--bg-rgb), 0.95);
    border-top: 1px solid rgba(var(--tint), 0.08);
    border-left: 1px solid rgba(var(--tint), 0.08);
}
.dropdown-menu li { margin: 0; }
.dropdown-menu a {
    display: flex !important;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.85rem 1.1rem !important;
    border-radius: 12px;
    font-size: 0.88rem !important;
    font-weight: 500;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
}
.dropdown-menu a::after { display: none !important; }
.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 3px;
    height: 60%;
    background: var(--gradient-cta);
    border-radius: 0 3px 3px 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.dropdown-menu a:hover {
    background: rgba(251, 168, 143, 0.07);
    color: var(--accent-1);
    transform: translateX(2px);
}
.dropdown-menu a:hover::before {
    transform: translateY(-50%) scaleY(1);
}
.dropdown-menu a small {
    font-size: 0.72rem;
    color: var(--white-muted);
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 1.4;
}
.dropdown-menu a.featured {
    background: linear-gradient(135deg, rgba(107, 138, 146, 0.05), rgba(107, 138, 146, 0.05));
    border: 1px solid rgba(107, 138, 146, 0.12);
}
.dropdown-menu a.featured small {
    color: var(--accent-5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 0.65rem;
}
.dropdown-menu a.featured:hover {
    background: linear-gradient(135deg, rgba(107, 138, 146, 0.1), rgba(107, 138, 146, 0.1));
    border-color: rgba(107, 138, 146, 0.25);
}
/* Divider for "All services" link at bottom */
.dropdown-divider {
    height: 1px;
    background: rgba(var(--tint), 0.06);
    margin: 0.4rem 0.5rem;
}
.dropdown-all {
    text-align: center !important;
    font-size: 0.76rem !important;
    color: var(--white-muted) !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.65rem 1.1rem !important;
}
.dropdown-all:hover {
    color: var(--accent-1) !important;
}
/* ============ END DROPDOWN ============ */
.lang-switch { display: flex; gap: 0.5rem; margin-left: 1rem; padding-left: 1rem; border-left: 1px solid rgba(var(--tint), 0.2); list-style: none; }
.lang-btn { background: transparent; border: 1px solid rgba(var(--tint), 0.3); color: var(--white-muted); padding: 0.4rem 0.8rem; font-size: 0.75rem; font-weight: 500; cursor: pointer; transition: all 0.3s ease; font-family: inherit; }
.lang-btn.active { background: var(--white); color: var(--bg-dark); border-color: var(--white); }
.lang-btn:hover:not(.active) { border-color: var(--white); color: var(--white); }

/* ============ THEME TOGGLE BUTTON ============ */
.theme-toggle-wrap {
    list-style: none;
    margin-left: 0.6rem;
}
.theme-toggle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(var(--tint), 0.3);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: inherit;
    position: relative;
    overflow: hidden;
}
.theme-toggle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-cta);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}
.theme-toggle:hover {
    border-color: var(--accent-1);
    transform: rotate(15deg) scale(1.05);
}
.theme-toggle:hover::before {
    opacity: 0.15;
}
.theme-toggle svg {
    position: relative;
    z-index: 1;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.theme-toggle:hover svg {
    transform: rotate(-15deg);
}
/* Show sun icon in dark theme (click → goes to light) */
.theme-toggle .theme-icon-moon { display: none; }
/* Show moon icon in light theme (click → goes to dark) */
[data-theme="light"] .theme-toggle .theme-icon-sun { display: none; }
[data-theme="light"] .theme-toggle .theme-icon-moon { display: block; }

/* Smooth transition between themes (only on body to avoid janky animations) */
body, nav, section, footer, .bento-card, .pricing-card, .portfolio-card, .browser-mockup, .contact-form, .form-group input, .form-group textarea, .form-group select {
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}
/* ============ END THEME TOGGLE ============ */
.nav-cta { position: relative; padding: 0.9rem 2rem; white-space: nowrap; background: transparent; border: 1px solid var(--white); color: var(--white); text-decoration: none; font-size: 0.85rem; font-weight: 500; overflow: hidden; transition: color 0.4s ease; }
.nav-cta::before { content: ''; position: absolute; inset: 0; background: var(--white); transform: translateY(100%); transition: transform 0.4s ease; }
.nav-cta:hover::before { transform: translateY(0); }
.nav-cta span { position: relative; z-index: 1; }
.nav-cta:hover span { color: var(--bg-dark); }
/* Desktop default: show long text, hide short */
.nav-cta-short { display: none; }
.nav-cta-long { display: inline; }

.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; padding: 6rem 5%; overflow: hidden; }
.hero-mesh { position: absolute; inset: 0; overflow: hidden; }
.mesh-gradient { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.5; animation: meshFloat 20s ease-in-out infinite; }
.mesh-1 { width: 800px; height: 800px; background: radial-gradient(circle, rgba(251, 168, 143, 0.4) 0%, transparent 70%); top: -30%; left: -20%; }
.mesh-2 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(251, 168, 143, 0.35) 0%, transparent 70%); bottom: -20%; right: -15%; animation-delay: -7s; }
.mesh-3 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(251, 168, 143, 0.3) 0%, transparent 70%); top: 40%; left: 40%; animation-delay: -14s; }
.mesh-4 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(107, 138, 146, 0.25) 0%, transparent 70%); top: 10%; right: 20%; animation-delay: -10s; }
@keyframes meshFloat { 0%, 100% { transform: translate(0, 0) scale(1); } 25% { transform: translate(50px, -80px) scale(1.1); } 50% { transform: translate(-60px, 40px) scale(0.95); } 75% { transform: translate(40px, 60px) scale(1.05); } }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(var(--tint), 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(var(--tint), 0.03) 1px, transparent 1px); background-size: 80px 80px; mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%); }
.particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle { position: absolute; width: 4px; height: 4px; background: var(--particle-color); border-radius: 50%; animation: particleFloat 15s linear infinite; }
@keyframes particleFloat { 0% { transform: translateY(100vh) scale(0); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { transform: translateY(-100vh) scale(1); opacity: 0; } }
.hero-content { text-align: center; position: relative; z-index: 10; max-width: 1200px; }

/* Hero animations - eșalonate natural */
/* DEFAULT: visible (so scroll-restore on light theme can't lose them). 
   Animation uses 'from' to start hidden + fill-mode 'both' to hold initial during delay 
   and final state after – bulletproof on any browser. */
.hero-badge { display: inline-flex; align-items: center; gap: 0.8rem; padding: 0.7rem 1.5rem; background: rgba(var(--tint), 0.03); border: 1px solid rgba(var(--tint), 0.08); border-radius: 100px; font-size: 0.85rem; color: var(--white-dim); margin-bottom: 3rem; margin-top: 7rem; backdrop-filter: blur(10px); opacity: 1; animation: badgeFade 0.8s ease 0.4s both; }
@keyframes badgeFade { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.badge-dot { width: 8px; height: 8px; background: var(--accent-4); border-radius: 50%; animation: dotPulse 2s ease-in-out infinite; box-shadow: 0 0 10px var(--accent-4); }
@keyframes dotPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.3); } }
.hero h1 { font-size: clamp(3rem, 9vw, 7.5rem); font-weight: 700; line-height: 0.98; letter-spacing: -0.04em; margin-bottom: 2rem; }
.hero-line { display: block; overflow: hidden; padding: 0.1em 0; }
.hero-word { display: inline-block; opacity: 1; transform: translateY(0); animation: wordReveal 1s cubic-bezier(0.16, 1, 0.3, 1) both; }
.hero-line:nth-child(1) .hero-word { animation-delay: 0.7s; }
.hero-line:nth-child(2) .hero-word { animation-delay: 0.95s; }
.hero-line:nth-child(3) .hero-word { animation-delay: 1.2s; }
@keyframes wordReveal { from { opacity: 0; transform: translateY(100%); } to { opacity: 1; transform: translateY(0); } }
.hero h1 em { font-family: 'Instrument Serif', serif; font-style: italic; background: var(--gradient-main); background-size: 200% 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; /* gradientShift scos: gradientul e culoare plata, deci animatia nu mai desena nimic */ }

/* ============ ROTATING WORD ============ */
.rotator { 
    display: inline-block; 
    position: relative; 
    vertical-align: top; 
    min-height: 1em;
    padding: 0 0.05em;
}
.rot-word { 
    display: inline-block; 
    opacity: 0; 
    transform: translateY(0.4em) scale(0.95); 
    filter: blur(8px);
    transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), filter 0.55s ease;
    font-style: italic; 
    font-family: 'Instrument Serif', serif; 
    background: var(--gradient-main); 
    background-size: 200% 200%; 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    background-clip: text; 
    /* gradientShift scos: gradientul e culoare plata, deci animatia nu mai desena nimic */ 
    white-space: nowrap;
}
.rot-word:not(.active) { 
    position: absolute; 
    top: 0; 
    left: 0; 
    pointer-events: none; 
}
.rot-word.active { 
    opacity: 1; 
    transform: translateY(0) scale(1); 
    filter: blur(0); 
    position: relative; 
}
.rot-word.exiting { 
    opacity: 0; 
    transform: translateY(-0.4em) scale(0.95); 
    filter: blur(8px); 
}
/* ============ END ROTATING WORD ============ */
.hero-subtitle { font-size: clamp(1rem, 1.6vw, 1.2rem); color: var(--white-muted); max-width: 580px; margin: 0 auto 3rem; line-height: 1.7; opacity: 1; animation: subtitleFade 1s ease 1.5s both; }
@keyframes subtitleFade { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-cta { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; opacity: 1; animation: ctaFade 1s ease 1.8s both; }
@keyframes ctaFade { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* Buton CTA - simplificat la 2 culori */

        /* Hide nav CTA on desktop in index (no replacement needed) */
@media (min-width: 769px) {
    nav .nav-cta { display: none !important; }
}

.btn-magnetic { position: relative; padding: 1.2rem 2.8rem; background: var(--gradient-cta); background-size: 200% 200%; color: var(--white); text-decoration: none; font-weight: 500; font-size: 0.95rem; border-radius: 100px; overflow: hidden; /* gradientShift scos: gradientul e culoare plata, deci animatia nu mai desena nimic */ transition: transform 0.3s ease, box-shadow 0.3s ease; border: none; cursor: pointer; font-family: inherit; }
.btn-magnetic:hover { box-shadow: 0 20px 50px rgba(251, 168, 143, 0.35), 0 8px 25px rgba(251, 168, 143, 0.25); }
.btn-magnetic span { position: relative; z-index: 1; }
.btn-outline-glow { position: relative; padding: 1.2rem 2.8rem; background: transparent; border: 1px solid rgba(var(--tint), 0.3); color: var(--white); text-decoration: none; font-weight: 500; font-size: 0.95rem; border-radius: 100px; overflow: hidden; transition: all 0.4s ease; display: inline-flex; align-items: center; gap: 0.8rem; }
.btn-outline-glow:hover { border-color: var(--accent-2); background: rgba(251, 168, 143, 0.08); box-shadow: 0 0 25px rgba(251, 168, 143, 0.15); }
.btn-outline-glow svg { transition: transform 0.3s ease; }
.btn-outline-glow:hover svg { transform: translateX(5px); }
.hero-scroll { position: absolute; bottom: 4rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.scroll-text { font-size: 0.7rem; color: var(--white-muted); text-transform: uppercase; letter-spacing: 3px; writing-mode: vertical-lr; }
.scroll-line { width: 1px; height: 80px; position: relative; overflow: hidden; background: rgba(var(--tint), 0.1); }
.scroll-line::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 30%; background: linear-gradient(to bottom, var(--accent-1), var(--accent-3)); animation: scrollMove 2s ease-in-out infinite; }
@keyframes scrollMove { 0% { top: -30%; } 100% { top: 100%; } }

.marquee { padding: 1.5rem 0; border-top: 1px solid rgba(var(--tint), 0.05); border-bottom: 1px solid rgba(var(--tint), 0.05); overflow: hidden; background: rgba(var(--tint), 0.01); }
.marquee-track { display: flex; animation: marqueeMove 30s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-content { display: flex; gap: 4rem; padding-right: 4rem; }
.marquee-item { font-size: 1rem; color: var(--white-muted); white-space: nowrap; display: flex; align-items: center; gap: 1rem; transition: color 0.3s ease; }
.marquee-item:hover { color: var(--white); }
.marquee-item::before { content: ''; width: 6px; height: 6px; background: var(--gradient-main); border-radius: 50%; }
@keyframes marqueeMove { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Section padding redus de la 10rem la 7rem */
section { padding: 7rem 5%; position: relative; }
.section-header { max-width: 900px; margin-bottom: 5rem; }
.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-tag { display: inline-flex; align-items: center; gap: 0.8rem; font-size: 0.8rem; color: var(--accent-1); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 1.5rem; }
.section-tag::before { content: ''; width: 40px; height: 1px; background: var(--gradient-main); }
.section-title { font-size: clamp(2.2rem, 4.5vw, 4rem); font-weight: 600; line-height: 1.1; letter-spacing: -0.03em; }
.section-title em { font-family: 'Instrument Serif', serif; font-style: italic; background: var(--gradient-main); background-size: 200% 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; /* gradientShift scos: gradientul e culoare plata, deci animatia nu mai desena nimic */ }

.services { background: var(--bg-dark); }

/* ============ BENTO GRID SERVICES ============ */
.services-bento {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: minmax(260px, auto) minmax(260px, auto) auto;
    gap: 1.2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.bento-card {
    position: relative;
    background: rgba(var(--tint), 0.025);
    border: 1px solid rgba(var(--tint), 0.06);
    border-radius: 24px;
    padding: 2.5rem;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease, box-shadow 0.5s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.bento-card:hover {
    border-color: rgba(var(--tint), 0.18);
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.bento-1 { grid-column: 1; grid-row: 1 / 3; padding: 3rem; }
.bento-2 { grid-column: 2; grid-row: 1; }
.bento-3 { grid-column: 2; grid-row: 2; }
.bento-4 { grid-column: 1 / 3; grid-row: 3; }

/* Animated gradient blobs - one per card */
.bento-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
    pointer-events: none;
    transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.bento-card:hover .bento-blob {
    opacity: 0.55;
    transform: scale(1.2);
}
.bento-blob-1 { width: 380px; height: 380px; background: none; top: -100px; right: -100px; animation: blobFloat 12s ease-in-out infinite; }
.bento-blob-2 { width: 220px; height: 220px; background: none; bottom: -80px; left: -50px; animation: blobFloat 9s ease-in-out infinite reverse; }
.bento-blob-3 { width: 220px; height: 220px; background: none; bottom: -80px; right: -50px; animation: blobFloat 11s ease-in-out infinite; animation-delay: -3s; }
.bento-blob-4 { width: 500px; height: 250px; background: none; bottom: -50px; right: 15%; animation: blobFloat 14s ease-in-out infinite reverse; }
@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.1); }
}

.bento-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.bento-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.bento-num {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(to bottom, rgba(var(--tint), 0.18), transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: block;
    margin-bottom: 1rem;
}
.bento-1 .bento-num { font-size: 4rem; margin-bottom: 0; }
.bento-tag {
    padding: 5px 12px;
    background: rgba(251, 168, 143, 0.12);
    border: 1px solid rgba(251, 168, 143, 0.3);
    border-radius: 100px;
    font-size: 0.7rem;
    color: var(--accent-1);
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.bento-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-1);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}
.bento-card h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}
.bento-1 h3 { font-size: 2.2rem; letter-spacing: -0.02em; }
.bento-card p {
    color: var(--white-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.bento-1 p { font-size: 1.05rem; }
.bento-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.bento-pill {
    padding: 0.4rem 1rem;
    background: rgba(var(--tint), 0.04);
    border: 1px solid rgba(var(--tint), 0.08);
    border-radius: 100px;
    font-size: 0.78rem;
    color: var(--white-dim);
    transition: all 0.3s ease;
}
.bento-pill:hover {
    background: rgba(var(--tint), 0.1);
    border-color: rgba(var(--tint), 0.18);
    color: var(--white);
    transform: translateY(-2px);
}

/* Subtle "Learn more" link for bento cards that link to a service page */
.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(var(--tint), 0.04);
    border: 1px solid rgba(var(--tint), 0.08);
    border-radius: 100px;
    color: var(--white);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    transition: all 0.3s ease;
    align-self: flex-start;
    position: relative;
    z-index: 3;
}
.bento-link::after {
    content: '→';
    transition: transform 0.3s ease;
}
.bento-link:hover {
    background: rgba(251, 168, 143, 0.1);
    border-color: var(--accent-1);
    color: var(--accent-1);
}
.bento-link:hover::after {
    transform: translateX(3px);
}

/* Card 1: Mock UI preview */
.bento-mock {
    margin-top: auto;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0.5;
    transition: opacity 0.4s ease;
}
.bento-1:hover .bento-mock { opacity: 0.9; }
.mock-bar {
    height: 10px;
    background: linear-gradient(to right, rgba(251, 168, 143, 0.5), rgba(251, 168, 143, 0.1));
    border-radius: 4px;
}
.mock-bar:nth-child(1) { width: 80%; }
.mock-bar:nth-child(2) { width: 60%; }
.mock-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 6px;
}
.mock-grid > div {
    height: 56px;
    background: rgba(251, 168, 143, 0.1);
    border: 1px solid rgba(251, 168, 143, 0.25);
    border-radius: 8px;
    transition: all 0.3s ease;
}
.bento-1:hover .mock-grid > div:nth-child(2) {
    background: rgba(251, 168, 143, 0.2);
    border-color: rgba(251, 168, 143, 0.5);
    transform: translateY(-3px);
}

/* Card 2: Color palette */
.bento-palette {
    display: flex;
    gap: 8px;
    margin-top: auto;
    padding-top: 1rem;
}
.bento-palette span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(var(--tint), 0.15);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    cursor: pointer;
}
.bento-palette span:hover {
    transform: scale(1.2) translateY(-3px);
    border-color: rgba(var(--tint), 0.4);
}

/* Card 3: Wireframe lines */
.bento-wireframe {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
    padding-top: 1rem;
}
.bento-wireframe div {
    height: 8px;
    background: rgba(107, 138, 146, 0.35);
    border-radius: 4px;
    transition: all 0.4s ease;
}
.bento-wireframe div:nth-child(1) { width: 100%; }
.bento-wireframe div:nth-child(2) { width: 75%; }
.bento-wireframe div:nth-child(3) { width: 90%; }
.bento-3:hover .bento-wireframe div {
    background: rgba(107, 138, 146, 0.6);
}

/* Card 4: E-Commerce horizontal layout */
.bento-4 .bento-content {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
}
.bento-4-text { flex: 1; }
.bento-4 .bento-num { font-size: 3.5rem; margin-bottom: 0.5rem; }
.bento-cart-mock {
    flex: 0 0 240px;
    padding: 1.2rem;
    background: rgba(var(--tint), 0.04);
    border: 1px solid rgba(107, 138, 146, 0.25);
    border-radius: 14px;
    transition: all 0.4s ease;
}
.bento-4:hover .bento-cart-mock {
    border-color: rgba(107, 138, 146, 0.5);
    background: rgba(107, 138, 146, 0.05);
}
.cart-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(var(--tint), 0.06);
    font-size: 0.82rem;
    color: var(--white-dim);
}
.cart-row:last-of-type {
    border-bottom: none;
    color: var(--accent-5);
    font-weight: 500;
    padding-top: 0.7rem;
    font-size: 0.95rem;
}
.cart-btn {
    margin-top: 0.8rem;
    padding: 0.7rem;
    background: var(--accent);
    border-radius: 8px;
    text-align: center;
    font-size: 0.82rem;
    color: white;
    font-weight: 500;
    letter-spacing: 0.5px;
}
/* ============ END BENTO GRID ============ */

/* ============ TECH STACK SECTION ============ */
.tech-stack {
    padding: 5rem 5% 4rem;
    background: var(--bg-dark);
    border-top: 1px solid rgba(var(--tint), 0.04);
    position: relative;
    overflow: hidden;
}
.tech-stack-header {
    text-align: center;
    margin-bottom: 3rem;
}
.tech-stack-label {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.75rem;
    color: var(--accent-1);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    font-weight: 500;
}
.tech-stack-label::before,
.tech-stack-label::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gradient-main);
}
.tech-stack-title {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 500;
    color: var(--white-dim);
    letter-spacing: -0.01em;
    line-height: 1.4;
}
.tech-stack-title em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    background: var(--gradient-main);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* gradientShift scos: gradientul e culoare plata, deci animatia nu mai desena nimic */
}
.tech-stack-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.tech-category {
    text-align: center;
    padding: 1.8rem 1.2rem;
    background: rgba(var(--tint), 0.02);
    border: 1px solid rgba(var(--tint), 0.05);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.tech-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.tech-category:hover {
    background: rgba(var(--tint), 0.04);
    border-color: rgba(var(--tint), 0.12);
    transform: translateY(-4px);
}
.tech-category:hover::before {
    opacity: 1;
}
.tech-category-name {
    font-size: 0.7rem;
    color: var(--accent-1);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}
.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}
.tech-pill {
    padding: 0.4rem 0.9rem;
    background: rgba(var(--tint), 0.04);
    border: 1px solid rgba(var(--tint), 0.08);
    border-radius: 100px;
    font-size: 0.78rem;
    color: var(--white-dim);
    transition: all 0.3s ease;
    white-space: nowrap;
}
.tech-category:hover .tech-pill {
    background: rgba(var(--tint), 0.06);
    border-color: rgba(var(--tint), 0.14);
}
.tech-pill:hover {
    color: var(--white);
    border-color: var(--accent-1);
    transform: translateY(-2px);
}
@media (max-width: 1024px) {
    .tech-stack-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}
@media (max-width: 480px) {
    .tech-stack-grid {
        grid-template-columns: 1fr;
    }
    .tech-stack { padding: 4rem 5% 3rem; }
}
/* ============ END TECH STACK SECTION ============ */

/* ============ SPECIALIZED SERVICES SECTION ============ */
.specialized {
    padding: 7rem 5%;
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-deeper));
    position: relative;
    overflow: hidden;
}
.specialized::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(107, 138, 146, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: blobFloat 16s ease-in-out infinite;
    pointer-events: none;
}
.specialized::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(107, 138, 146, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: blobFloat 14s ease-in-out infinite reverse;
    pointer-events: none;
}
.specialized-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 2;
}
.specialized-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.2rem;
    background: rgba(107, 138, 146, 0.08);
    border: 1px solid rgba(107, 138, 146, 0.25);
    border-radius: 100px;
    font-size: 0.72rem;
    color: var(--accent-5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}
.specialized-badge::before {
    content: '★';
    color: var(--accent-5);
    font-size: 0.9rem;
}
.specialized-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.2rem;
}
.specialized-title em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    background: var(--accent);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* gradientShift scos: gradientul e culoare plata, deci animatia nu mai desena nimic */
}
.specialized-subtitle {
    font-size: 1rem;
    color: var(--white-muted);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto;
}
.specialized-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
    position: relative;
    z-index: 2;
}
.specialized-card {
    position: relative;
    padding: 3rem 2.5rem;
    background: rgba(var(--tint), 0.025);
    border: 1px solid rgba(var(--tint), 0.06);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease, box-shadow 0.5s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.specialized-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--tint), 0.18);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}
.specialized-card-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    pointer-events: none;
    transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.specialized-card:hover .specialized-card-blob {
    opacity: 0.5;
    transform: scale(1.15);
}
.specialized-card-1 .specialized-card-blob {
    width: 320px; height: 320px;
    background: none;
    top: -80px; right: -80px;
    animation: blobFloat 12s ease-in-out infinite;
}
.specialized-card-2 .specialized-card-blob {
    width: 320px; height: 320px;
    background: none;
    top: -80px; right: -80px;
    animation: blobFloat 11s ease-in-out infinite reverse;
    animation-delay: -3s;
}
.specialized-card-content {
    position: relative;
    z-index: 2;
}
.specialized-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    border: 1px solid rgba(var(--tint), 0.08);
    background: rgba(var(--tint), 0.02);
    transition: all 0.4s ease;
}
.specialized-card-1 .specialized-card-icon {
    background: rgba(107, 138, 146, 0.08);
    border-color: rgba(107, 138, 146, 0.25);
    color: var(--accent-5);
}
.specialized-card-2 .specialized-card-icon {
    background: rgba(107, 138, 146, 0.08);
    border-color: rgba(107, 138, 146, 0.25);
    color: var(--accent-4);
}
.specialized-card:hover .specialized-card-icon {
    transform: scale(1.08) rotate(-5deg);
}
.specialized-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.3rem 0.9rem;
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}
.specialized-card-1 .specialized-card-tag {
    background: rgba(107, 138, 146, 0.1);
    border: 1px solid rgba(107, 138, 146, 0.3);
    color: var(--accent-5);
}
.specialized-card-2 .specialized-card-tag {
    background: rgba(107, 138, 146, 0.1);
    border: 1px solid rgba(107, 138, 146, 0.3);
    color: var(--accent-4);
}
.specialized-card-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    animation: dotPulse 2s ease-in-out infinite;
}
.specialized-card h3 {
    font-size: 1.55rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}
.specialized-card h3 em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
}
.specialized-card-1 h3 em { color: var(--accent-5); }
.specialized-card-2 h3 em { color: var(--accent-4); }
.specialized-card-desc {
    color: var(--white-dim);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.specialized-features {
    list-style: none;
    margin-bottom: 1.8rem;
}
.specialized-features li {
    padding: 0.55rem 0;
    color: var(--white-dim);
    font-size: 0.88rem;
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    line-height: 1.5;
}
.specialized-features li::before {
    content: '✓';
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 1px;
}
.specialized-card-1 .specialized-features li::before { color: var(--accent-5); }
.specialized-card-2 .specialized-features li::before { color: var(--accent-4); }
.specialized-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.5rem;
    background: rgba(var(--tint), 0.04);
    border: 1px solid rgba(var(--tint), 0.1);
    border-radius: 100px;
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}
.specialized-card-cta svg {
    transition: transform 0.3s ease;
}
.specialized-card-1 .specialized-card-cta:hover {
    background: rgba(107, 138, 146, 0.1);
    border-color: rgba(107, 138, 146, 0.5);
    color: var(--accent-5);
}
.specialized-card-2 .specialized-card-cta:hover {
    background: rgba(107, 138, 146, 0.1);
    border-color: rgba(107, 138, 146, 0.5);
    color: var(--accent-4);
}
.specialized-card-cta:hover svg {
    transform: translateX(4px);
}
@media (max-width: 1024px) {
    .specialized-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
@media (max-width: 768px) {
    .specialized { padding: 5rem 5%; }
    .specialized-card { padding: 2.5rem 2rem; }
    .specialized-card h3 { font-size: 1.35rem; }
}
/* ============ END SPECIALIZED SERVICES SECTION ============ */

/* MANIFESTO SECTION - bold & confident */
.manifesto { background: linear-gradient(to bottom, var(--bg-dark), var(--bg-darker-mid), var(--bg-dark)); padding: 8rem 5%; text-align: center; position: relative; overflow: hidden; }
.manifesto-bg { position: absolute; inset: 0; pointer-events: none; }
.manifesto-bg::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80%; height: 80%; background: radial-gradient(ellipse, rgba(251, 168, 143, 0.08) 0%, transparent 60%); filter: blur(80px); }

/* Floating geometric shapes - design tool feel */
.floating-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.shape { position: absolute; opacity: 0.2; }
.shape-circle { 
    width: 60px; height: 60px; 
    border: 1.5px solid var(--accent-1); 
    border-radius: 50%; 
    top: 15%; left: 8%; 
    animation: shapeFloat 18s ease-in-out infinite; 
}
.shape-square { 
    width: 50px; height: 50px; 
    border: 1.5px solid var(--accent-3); 
    top: 20%; right: 12%; 
    animation: shapeFloat 22s ease-in-out infinite reverse; 
    animation-delay: -5s;
    transform: rotate(15deg); 
}
.shape-triangle { 
    width: 0; height: 0; 
    border-left: 30px solid transparent; 
    border-right: 30px solid transparent; 
    border-bottom: 50px solid transparent; 
    border-bottom-color: rgba(107, 138, 146, 0.3); 
    bottom: 18%; left: 15%; 
    animation: shapeFloat 20s ease-in-out infinite; 
    animation-delay: -8s;
}
.shape-cross { 
    width: 50px; height: 50px; 
    bottom: 15%; right: 18%; 
    animation: shapeFloat 16s ease-in-out infinite reverse; 
    animation-delay: -3s;
    opacity: 0.25;
}
.shape-cross::before, .shape-cross::after {
    content: '';
    position: absolute;
    background: var(--accent-4);
}
.shape-cross::before { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.shape-cross::after { left: 50%; top: 0; bottom: 0; width: 1.5px; transform: translateX(-50%); }
.shape-dot {
    width: 14px; height: 14px;
    background: var(--accent-2);
    border-radius: 50%;
    top: 60%; left: 20%;
    animation: shapeFloat 14s ease-in-out infinite;
    animation-delay: -2s;
    opacity: 0.4;
    box-shadow: 0 0 30px var(--accent-2);
}
.shape-ring {
    width: 80px; height: 80px;
    border: 1px dashed rgba(var(--tint), 0.2);
    border-radius: 50%;
    top: 50%; right: 8%;
    animation: shapeRotate 25s linear infinite, shapeFloat 19s ease-in-out infinite;
}
@keyframes shapeFloat {
    0%, 100% { transform: translate(0, 0) rotate(var(--rot, 0deg)); }
    33% { transform: translate(15px, -25px) rotate(calc(var(--rot, 0deg) + 8deg)); }
    66% { transform: translate(-15px, 15px) rotate(calc(var(--rot, 0deg) - 5deg)); }
}
@keyframes shapeRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.shape-square { --rot: 15deg; }

.manifesto-content { max-width: 900px; margin: 0 auto; position: relative; z-index: 2; }
.manifesto-title { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 600; line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 2rem; }
.manifesto-title em { font-family: 'Instrument Serif', serif; font-style: italic; background: var(--gradient-main); background-size: 200% 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; /* gradientShift scos: gradientul e culoare plata, deci animatia nu mai desena nimic */ }
.manifesto-sub { font-size: clamp(1rem, 1.4vw, 1.15rem); color: var(--white-dim); max-width: 680px; margin: 0 auto 4rem; line-height: 1.8; }
.manifesto-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 720px; margin: 0 auto; }
.pillar { padding: 2rem 1rem; border-top: 1px solid rgba(var(--tint), 0.08); }
.pillar-num { display: block; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; background: var(--gradient-main); background-size: 200% 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; /* gradientShift scos: gradientul e culoare plata, deci animatia nu mai desena nimic */ line-height: 1; margin-bottom: 0.6rem; font-family: 'Instrument Serif', serif; font-style: italic; }
.pillar-infinity { display: inline-block; /* gradientShift scos: gradientul e culoare plata, deci animatia nu mai desena nimic */ }
@keyframes infinityFloat { 
    0%, 100% { transform: scale(1) rotate(0deg); } 
    50% { transform: scale(1.08) rotate(3deg); } 
}
.pillar-label { font-size: 0.75rem; color: var(--white-muted); text-transform: uppercase; letter-spacing: 2.5px; }

.portfolio { background: linear-gradient(to bottom, var(--bg-dark), var(--bg-deeper)); }
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4rem; max-width: 1400px; margin: 0 auto; }

.portfolio-card { opacity: 0; transform: translateY(60px); transition: all 1s ease; }
.portfolio-card.visible { opacity: 1; transform: translateY(0); }

.portfolio-label { font-size: 0.8rem; color: var(--white-muted); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 1rem; display: flex; align-items: center; gap: 1rem; }
.portfolio-label::before { content: ''; width: 30px; height: 1px; background: var(--gradient-main); }

.browser-mockup { background: linear-gradient(145deg, var(--browser-bg-1), var(--browser-bg-2)); border-radius: 16px; overflow: hidden; box-shadow: 0 50px 100px rgba(0,0,0,0.5), 0 30px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(var(--tint), 0.05); transform: perspective(1000px) rotateX(2deg) rotateY(-1deg); transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.browser-mockup:hover { transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-15px); box-shadow: 0 60px 120px rgba(251, 168, 143, 0.25), 0 40px 80px rgba(251, 168, 143, 0.2), 0 0 0 1px rgba(var(--tint), 0.1); }

.browser-header { background: linear-gradient(to bottom, var(--browser-header-1), var(--browser-header-2)); padding: 14px 20px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid rgba(var(--tint), 0.05); }
.browser-dots { display: flex; gap: 8px; }
.browser-dots span { width: 12px; height: 12px; border-radius: 50%; }
.browser-dots span:nth-child(1) { background: #ff5f57; box-shadow: 0 0 10px rgba(255, 95, 87, 0.5); }
.browser-dots span:nth-child(2) { background: #ffbd2e; box-shadow: 0 0 10px rgba(255, 189, 46, 0.5); }
.browser-dots span:nth-child(3) { background: #28c840; box-shadow: 0 0 10px rgba(40, 200, 64, 0.5); }
.browser-url { flex: 1; background: rgba(0,0,0,0.3); border-radius: 8px; padding: 8px 16px; font-size: 0.85rem; color: rgba(var(--tint), 0.6); display: flex; align-items: center; gap: 8px; }
.browser-url .lock { color: #28c840; }
.browser-url .domain { color: rgba(var(--tint), 0.9); }

.browser-content { aspect-ratio: 16/10; background: #000; position: relative; overflow: hidden; }
[data-theme="light"] .browser-content { background: var(--bg-dark); }
.browser-content img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 6s ease; }
.browser-mockup:hover .browser-content img { transform: translateY(-15%); }

/* ============ LOGO SHOWCASE (for brand-only projects without a website) ============ */
.logo-showcase {
    aspect-ratio: 16/10;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(ellipse at center, rgba(107, 138, 146, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 70%, rgba(107, 138, 146, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, #1a0f08 0%, #0d0604 100%);
}
.logo-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(107, 138, 146, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(107, 138, 146, 0.04) 1px, transparent 1px);
    background-size: 30px 30px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}
.logo-showcase::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 480px;
    height: 480px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(107, 138, 146, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: blobFloat 10s ease-in-out infinite;
    pointer-events: none;
}
.logo-showcase img {
    position: relative;
    z-index: 2;
    max-width: 55%;
    max-height: 80%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 20px 40px rgba(107, 138, 146, 0.25));
}
.browser-mockup:hover .logo-showcase img {
    transform: scale(1.06) rotate(-2deg);
}
.logo-showcase-corners {
    position: absolute;
    inset: 24px;
    pointer-events: none;
    z-index: 1;
}
.logo-showcase-corner {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(107, 138, 146, 0.3);
}
.logo-showcase-corner.tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.logo-showcase-corner.tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.logo-showcase-corner.bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.logo-showcase-corner.br { bottom: 0; right: 0; border-left: none; border-top: none; }
.logo-showcase-tag {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    padding: 0.4rem 1rem;
    background: rgba(107, 138, 146, 0.12);
    border: 1px solid rgba(107, 138, 146, 0.3);
    border-radius: 100px;
    font-size: 0.7rem;
    color: rgba(107, 138, 146, 0.95);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}
/* ============ END LOGO SHOWCASE ============ */

.cta-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--cta-card-1) 0%, var(--cta-card-2) 50%, var(--cta-card-1) 100%);
    position: relative;
    overflow: hidden;
}
.cta-card-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 30%, rgba(251, 168, 143, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(251, 168, 143, 0.06) 0%, transparent 50%);
}
.cta-card-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(var(--tint), 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--tint), 0.015) 1px, transparent 1px);
    background-size: 30px 30px;
}
.cta-card-icon {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(var(--tint), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: rgba(var(--tint), 0.02);
    animation: iconPulse 3s ease-in-out infinite;
}
@keyframes iconPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(251, 168, 143, 0.2); }
    50% { box-shadow: 0 0 0 15px rgba(251, 168, 143, 0); }
}
.cta-card-icon svg { width: 32px; height: 32px; stroke: url(#iconGradient); }
.cta-card-title { position: relative; z-index: 2; font-size: 1.4rem; font-weight: 500; margin-bottom: 0.5rem; color: white; }
.cta-card-subtitle { position: relative; z-index: 2; font-size: 0.9rem; color: rgba(var(--tint), 0.4); max-width: 200px; }
.cta-card-corners { position: absolute; inset: 20px; pointer-events: none; }
.cta-corner { position: absolute; width: 20px; height: 20px; border: 1px solid rgba(var(--tint), 0.1); }
.cta-corner-tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.cta-corner-tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.cta-corner-bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.cta-corner-br { bottom: 0; right: 0; border-left: none; border-top: none; }

.project-info { margin-top: 1.5rem; padding: 2rem; background: rgba(var(--tint), 0.02); border: 1px solid rgba(var(--tint), 0.05); border-radius: 16px; transition: all 0.4s ease; }
.project-info:hover { border-color: rgba(251, 168, 143, 0.2); background: rgba(251, 168, 143, 0.02); }

.project-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; flex-wrap: wrap; gap: 1rem; }
.project-title { font-size: 1.7rem; font-weight: 500; display: flex; align-items: center; gap: 0.5rem; }
.project-title em { font-family: 'Instrument Serif', serif; font-style: italic; background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.status-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 100px; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }
.status-badge.live { background: rgba(107, 138, 146, 0.1); border: 1px solid rgba(107, 138, 146, 0.3); color: var(--accent-4); }
.status-badge.progress { background: rgba(107, 138, 146, 0.1); border: 1px solid rgba(107, 138, 146, 0.3); color: var(--accent-5); }
.status-dot { width: 6px; height: 6px; background: currentColor; border-radius: 50%; animation: statusPulse 2s ease-in-out infinite; }
@keyframes statusPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.project-desc { color: var(--white-muted); line-height: 1.7; margin-bottom: 1.5rem; font-size: 0.95rem; }

/* PROJECT STATS - rezultate concrete */
.project-stats { display: flex; gap: 2rem; margin-bottom: 1.5rem; padding: 1.2rem 0; border-top: 1px solid rgba(var(--tint), 0.06); border-bottom: 1px solid rgba(var(--tint), 0.06); flex-wrap: wrap; }
.project-stat { display: flex; flex-direction: column; gap: 0.25rem; flex: 1; min-width: 80px; }
.project-stat-num { font-size: 1.4rem; font-weight: 700; background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; font-family: 'Instrument Serif', serif; font-style: italic; }
.project-stat-label { font-size: 0.7rem; color: var(--white-muted); text-transform: uppercase; letter-spacing: 1.5px; line-height: 1.3; }

.project-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.project-tag { padding: 0.4rem 1rem; background: rgba(var(--tint), 0.03); border: 1px solid rgba(var(--tint), 0.08); border-radius: 100px; font-size: 0.8rem; color: var(--white-dim); transition: all 0.3s ease; }
.project-tag:hover { background: rgba(251, 168, 143, 0.1); border-color: var(--accent-1); color: var(--accent-1); }

.project-link { display: inline-flex; align-items: center; gap: 0.8rem; color: var(--white); text-decoration: none; font-size: 0.9rem; font-weight: 500; padding: 0.8rem 1.5rem; background: rgba(var(--tint), 0.03); border: 1px solid rgba(var(--tint), 0.1); border-radius: 100px; transition: all 0.3s ease; }
.project-link:hover { background: var(--gradient-cta); border-color: transparent; }
.project-link svg { transition: transform 0.3s ease; }
.project-link:hover svg { transform: translateX(5px); }

.process { background: var(--bg-dark); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem; max-width: 1300px; margin: 0 auto; }
.process-card { text-align: center; position: relative; padding: 2rem; }
.process-card::after { content: ''; position: absolute; top: 50px; right: -50%; width: 100%; height: 1px; background: linear-gradient(to right, rgba(var(--tint), 0.1), transparent); }
.process-card:last-child::after { display: none; }
.process-num { width: 100px; height: 100px; border: 1px solid rgba(var(--tint), 0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; font-size: 2rem; font-weight: 600; background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; transition: all 0.4s ease; }
.process-card:hover .process-num { border-color: var(--accent-1); box-shadow: 0 0 40px rgba(251, 168, 143, 0.2); }
.process-card h3 { font-size: 1.25rem; font-weight: 500; margin-bottom: 1rem; }
.process-card p { color: var(--white-muted); font-size: 0.95rem; line-height: 1.7; }

.pricing { background: linear-gradient(to bottom, var(--bg-deeper), var(--bg-dark)); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1200px; margin: 0 auto 3rem; }
.pricing-card { background: var(--bg-card); border: 1px solid rgba(var(--tint), 0.05); padding: 3rem; position: relative; transition: all 0.5s ease; }
.pricing-card.featured { border-color: rgba(251, 168, 143, 0.3); background: linear-gradient(135deg, rgba(251, 168, 143, 0.08) 0%, rgba(251, 168, 143, 0.05) 100%); }
.pricing-card.custom { background: linear-gradient(135deg, rgba(107, 138, 146, 0.08) 0%, rgba(251, 168, 143, 0.05) 100%); border-color: rgba(107, 138, 146, 0.2); }
.pricing-card:hover { transform: translateY(-12px); border-color: rgba(var(--tint), 0.15); box-shadow: 0 40px 80px rgba(0,0,0,0.3); }
.pricing-badge { position: absolute; top: 0; right: 2rem; background: var(--gradient-cta); color: white; padding: 0.5rem 1.2rem; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.pricing-name { font-size: 1.2rem; font-weight: 500; margin-bottom: 0.5rem; }
.pricing-desc { color: var(--white-muted); font-size: 0.9rem; margin-bottom: 2rem; }
.pricing-from { font-size: 0.8rem; color: var(--accent-1); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.3rem; }
.pricing-price { font-size: 3rem; font-weight: 300; line-height: 1; margin-bottom: 0.5rem; background: var(--gradient-main); background-size: 200% 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; /* gradientShift scos: gradientul e culoare plata, deci animatia nu mai desena nimic */ }
.pricing-period { color: var(--white-muted); font-size: 0.85rem; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(var(--tint), 0.05); }
.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-features li { padding: 0.8rem 0; color: var(--white-dim); font-size: 0.9rem; display: flex; align-items: center; gap: 1rem; }
.pricing-features li::before { content: '✓'; color: var(--accent-4); font-weight: bold; }
.pricing-card .btn-magnetic, .pricing-card .btn-outline-glow { width: 100%; justify-content: center; text-align: center; padding: 1rem 2rem; }

/* Add-ons strip */
.pricing-addons { max-width: 1200px; margin: 0 auto; padding: 2rem; background: rgba(var(--tint), 0.02); border: 1px solid rgba(var(--tint), 0.05); border-radius: 16px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.pricing-addons-label { font-size: 0.75rem; color: var(--accent-1); text-transform: uppercase; letter-spacing: 2.5px; font-weight: 500; }
.pricing-addons-list { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.pricing-addon { padding: 0.4rem 1rem; background: rgba(var(--tint), 0.03); border: 1px solid rgba(var(--tint), 0.08); border-radius: 100px; font-size: 0.8rem; color: var(--white-dim); }

/* ============ FAQ SECTION ============ */
.faq {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}
.faq::before {
    content: '';
    position: absolute;
    top: 30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 168, 143, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.faq::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(251, 168, 143, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.faq-item {
    background: rgba(var(--tint), 0.025);
    border: 1px solid rgba(var(--tint), 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item:hover {
    background: rgba(var(--tint), 0.04);
    border-color: rgba(var(--tint), 0.12);
}
.faq-item.open {
    background: rgba(251, 168, 143, 0.04);
    border-color: rgba(251, 168, 143, 0.25);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem 1.8rem;
    cursor: pointer;
    user-select: none;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.3s ease;
}
.faq-question:hover {
    color: var(--accent-1);
}
.faq-num {
    display: inline-block;
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 1rem;
    background: var(--gradient-main);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* gradientShift scos: gradientul e culoare plata, deci animatia nu mai desena nimic */
    margin-right: 0.8rem;
    opacity: 0.85;
    font-weight: 600;
}
.faq-question-text {
    flex: 1;
}
.faq-toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(var(--tint), 0.04);
    border: 1px solid rgba(var(--tint), 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background: var(--white);
    border-radius: 1px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}
.faq-toggle::before {
    width: 12px;
    height: 1.5px;
}
.faq-toggle::after {
    width: 1.5px;
    height: 12px;
}
.faq-item.open .faq-toggle {
    background: var(--gradient-cta);
    border-color: transparent;
    transform: rotate(180deg);
}
.faq-item.open .faq-toggle::after {
    transform: rotate(90deg);
    background: white;
}
.faq-item.open .faq-toggle::before {
    background: white;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.open .faq-answer {
    max-height: 500px;
}
.faq-answer-inner {
    padding: 0 1.8rem 1.8rem;
    color: var(--white-dim);
    font-size: 0.95rem;
    line-height: 1.7;
    border-top: 1px solid rgba(var(--tint), 0.05);
    padding-top: 1.5rem;
    margin-top: 0;
}
.faq-answer-inner em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: var(--accent-1);
    font-size: 1.05em;
}
.faq-answer-inner strong {
    color: var(--white);
    font-weight: 500;
}
.faq-cta {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(var(--tint), 0.025);
    border: 1px solid rgba(var(--tint), 0.06);
    border-radius: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.faq-cta-text {
    flex: 1;
    min-width: 250px;
    text-align: left;
}
.faq-cta-text strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: var(--white);
}
.faq-cta-text span {
    color: var(--white-muted);
    font-size: 0.9rem;
}
.faq-cta a {
    flex-shrink: 0;
    padding: 0.9rem 1.8rem;
    background: var(--gradient-cta);
    color: var(--white);
    text-decoration: none;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}
.faq-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(251, 168, 143, 0.3);
}
.faq-cta a svg {
    transition: transform 0.3s ease;
}
.faq-cta a:hover svg {
    transform: translateX(4px);
}
@media (max-width: 768px) {
    .faq-question {
        padding: 1.3rem 1.4rem;
        font-size: 0.95rem;
    }
    .faq-answer-inner {
        padding: 1.2rem 1.4rem 1.5rem;
        font-size: 0.9rem;
    }
    .faq-cta {
        flex-direction: column;
        text-align: center;
    }
    .faq-cta-text {
        text-align: center;
    }
}
/* ============ END FAQ SECTION ============ */

.cta { padding: 12rem 5%; text-align: center; position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; }
.cta-orb { position: absolute; border-radius: 50%; filter: blur(120px); animation: orbFloat 15s ease-in-out infinite; }
.cta-orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(251, 168, 143, 0.25) 0%, transparent 70%); top: 50%; left: 20%; transform: translate(-50%, -50%); }
.cta-orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(251, 168, 143, 0.2) 0%, transparent 70%); top: 50%; right: 10%; animation-delay: -5s; }
@keyframes orbFloat { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(30px, -30px) scale(1.1); } }
.cta-content { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.cta h2 { font-size: clamp(2.5rem, 6vw, 5.5rem); font-weight: 600; line-height: 1.05; letter-spacing: -0.04em; margin-bottom: 1.8rem; }
.cta h2 em { font-family: 'Instrument Serif', serif; font-style: italic; background: var(--gradient-main); background-size: 200% 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; /* gradientShift scos: gradientul e culoare plata, deci animatia nu mai desena nimic */ }
.cta p { color: var(--white-muted); font-size: 1.15rem; margin-bottom: 3rem; }
.cta-buttons { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }

.contact { background: var(--bg-section-alt); border-top: 1px solid rgba(var(--tint), 0.05); }
.contact-container { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; max-width: 1300px; margin: 0 auto; }
.contact-info h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 600; margin-bottom: 1.5rem; line-height: 1.1; }
.contact-info h2 em { font-family: 'Instrument Serif', serif; font-style: italic; }
.contact-info > p { color: var(--white-muted); font-size: 1.05rem; margin-bottom: 3rem; line-height: 1.8; }
.contact-list { list-style: none; }
.contact-list li { padding: 1.5rem 0; border-bottom: 1px solid rgba(var(--tint), 0.05); display: flex; align-items: center; gap: 1.5rem; }
.contact-icon { width: 50px; height: 50px; background: var(--bg-card); border: 1px solid rgba(var(--tint), 0.05); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: all 0.3s ease; }
.contact-list li:hover .contact-icon { border-color: var(--accent-1); box-shadow: 0 0 30px rgba(251, 168, 143, 0.15); }
.contact-list strong { display: block; font-weight: 500; margin-bottom: 0.2rem; }
.contact-list a { color: var(--white-muted); text-decoration: none; transition: color 0.3s; }
.contact-list a:hover { color: var(--accent-1); }
.contact-form { background: var(--bg-card); border: 1px solid rgba(var(--tint), 0.05); padding: 3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.6rem; font-size: 0.85rem; color: var(--white-dim); font-weight: 500; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 1.05rem 1.2rem; background: rgba(var(--tint), 0.02); border: 1px solid rgba(var(--tint), 0.08); color: var(--white); font-family: 'Space Grotesk', sans-serif; font-size: 0.95rem; transition: all 0.3s ease; }
.form-group select { background-color: var(--cta-card-1); cursor: pointer; }
.form-group select option { background: var(--cta-card-1); color: var(--white); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--accent-1); background: rgba(251, 168, 143, 0.05); box-shadow: 0 0 30px rgba(251, 168, 143, 0.1); }
.form-group textarea { min-height: 160px; resize: vertical; }
.form-help { display: block; margin-top: 0.4rem; font-size: 0.75rem; color: var(--white-muted); font-style: italic; }
.contact-form .btn-magnetic { width: 100%; justify-content: center; }

/* Notification System */
#notification-container { position: fixed; top: 30px; right: 30px; z-index: 10000; display: flex; flex-direction: column; gap: 15px; pointer-events: none; }
.notification-toast { position: relative; min-width: 320px; max-width: 420px; padding: 20px 25px; border-radius: 16px; background: linear-gradient(135deg, rgba(var(--toast-bg-1), 0.98), rgba(var(--toast-bg-2), 0.98)); backdrop-filter: blur(20px); border: 1px solid rgba(var(--tint), 0.1); box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(var(--tint), 0.05) inset; pointer-events: auto; opacity: 0; transform: translateX(100px) scale(0.9); animation: notifSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.notification-toast.hiding { animation: notifSlideOut 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@keyframes notifSlideIn { to { opacity: 1; transform: translateX(0) scale(1); } }
@keyframes notifSlideOut { to { opacity: 0; transform: translateX(100px) scale(0.9); } }
@keyframes notifProgress { from { width: 100%; } to { width: 0%; } }
.notification-toast::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: 16px 16px 0 0; }
.notification-toast.success::before { background: var(--ok); }
.notification-toast.error::before { background: var(--err); }
.notification-content { display: flex; align-items: flex-start; gap: 15px; }
.notification-icon { flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.notification-toast.success .notification-icon { background: linear-gradient(135deg, rgba(107, 138, 146, 0.2), rgba(251, 168, 143, 0.1)); border: 1px solid rgba(107, 138, 146, 0.3); }
.notification-toast.error .notification-icon { background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(251, 168, 143, 0.1)); border: 1px solid rgba(239, 68, 68, 0.3); }
.notification-text { flex: 1; padding-top: 2px; }
.notification-title { font-size: 16px; font-weight: 700; color: #ffffff; margin: 0 0 6px 0; line-height: 1.3; }
.notification-message { font-size: 14px; color: rgba(var(--tint), 0.7); margin: 0; line-height: 1.5; }
.notification-close { position: absolute; top: 12px; right: 12px; width: 28px; height: 28px; border: none; background: rgba(var(--tint), 0.05); border-radius: 8px; color: rgba(var(--tint), 0.5); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s ease; font-size: 18px; line-height: 1; }
.notification-close:hover { background: rgba(var(--tint), 0.1); color: #ffffff; }
.notification-progress { position: absolute; bottom: 0; left: 0; height: 3px; border-radius: 0 0 16px 16px; }
.notification-toast.success .notification-progress { background: var(--ok); }
.notification-toast.error .notification-progress { background: var(--err); }
.form-group.error input, .form-group.error select, .form-group.error textarea { border-color: #EF4444 !important; box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important; }
@media (max-width: 480px) { #notification-container { top: 15px; right: 15px; left: 15px; } .notification-toast { min-width: auto; max-width: none; padding: 16px 20px; } .notification-icon { width: 40px; height: 40px; font-size: 20px; } }

footer { background: var(--bg-darkest); padding: 4rem 5% 2rem; border-top: 1px solid rgba(var(--tint), 0.03); }
.footer-container { max-width: 1400px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-brand .logo { display: inline-flex; margin-bottom: 1.5rem; }
.footer-brand p { color: var(--white-muted); font-size: 0.95rem; margin-bottom: 2rem; line-height: 1.7; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { width: 45px; height: 45px; background: var(--bg-card); border: 1px solid rgba(var(--tint), 0.05); display: flex; align-items: center; justify-content: center; color: var(--white); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: all 0.3s ease; }
.footer-social a:hover { border-color: var(--accent-1); background: rgba(251, 168, 143, 0.1); box-shadow: 0 0 25px rgba(251, 168, 143, 0.2); }
.footer-links h4 { font-size: 0.8rem; font-weight: 500; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.5rem; color: var(--white); }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a { color: var(--white-muted); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; cursor: pointer; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(var(--tint), 0.03); }
.footer-bottom p { color: var(--white-muted); font-size: 0.85rem; }
.footer-credit .credit-name {
    color: rgba(var(--tint), 0.85);
    font-weight: 500;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: opacity 0.3s ease;
    cursor: default;
}
.footer-credit:hover .credit-name {
    opacity: 0.85;
}

.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: rgba(var(--bg-rgb), 0.98); backdrop-filter: blur(20px); border-top: 1px solid rgba(var(--tint), 0.1); padding: 1.5rem 5%; z-index: 10000; display: flex; align-items: center; justify-content: space-between; gap: 2rem; transform: translateY(100%); transition: transform 0.5s ease; }
.cookie-banner.show { transform: translateY(0); }
.cookie-text { flex: 1; }
.cookie-text h4 { font-size: 1rem; font-weight: 500; margin-bottom: 0.3rem; }
.cookie-text p { color: var(--white-muted); font-size: 0.9rem; }
.cookie-text a { color: var(--accent-1); text-decoration: none; }
.cookie-policy-link { display: inline-block; margin-top: 0.5rem; font-size: 0.85rem; color: var(--accent-1); text-decoration: underline; transition: color 0.3s ease; }
.cookie-policy-link:hover { color: var(--white); }
.cookie-buttons { display: flex; gap: 1rem; }
.cookie-btn { padding: 0.8rem 1.8rem; border: none; font-family: inherit; font-size: 0.85rem; font-weight: 500; cursor: pointer; border-radius: 100px; transition: all 0.3s ease; }
.cookie-btn.accept { background: var(--gradient-cta); color: white; }
.cookie-btn.reject { background: transparent; border: 1px solid rgba(var(--tint), 0.3); color: var(--white); }

.chat-widget { position: fixed; bottom: 2rem; right: 2rem; z-index: 9999; }
.chat-btn { width: 60px; height: 60px; border-radius: 50%; background: var(--gradient-cta); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 40px rgba(251, 168, 143, 0.4); transition: all 0.3s ease; animation: chatPulse 3s ease-in-out infinite; }
.chat-btn:hover { transform: scale(1.1); }
.chat-btn svg { width: 28px; height: 28px; fill: white; }
@keyframes chatPulse { 0%, 100% { box-shadow: 0 10px 40px rgba(251, 168, 143, 0.4); } 50% { box-shadow: 0 10px 40px rgba(251, 168, 143, 0.6), 0 0 0 10px rgba(251, 168, 143, 0.1); } }
.chat-window { position: absolute; bottom: 80px; right: 0; width: 380px; background: var(--bg-dark); border: 1px solid rgba(var(--tint), 0.1); border-radius: 16px; overflow: hidden; opacity: 0; visibility: hidden; transform: translateY(20px) scale(0.95); transition: all 0.3s ease; }
.chat-window.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.chat-header { background: var(--gradient-cta); padding: 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.chat-header-info { display: flex; align-items: center; gap: 1rem; }
.chat-avatar { width: 45px; height: 45px; background: rgba(var(--tint), 0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.2rem; }
.chat-header h4 { font-size: 1rem; font-weight: 500; }
.chat-header p { font-size: 0.8rem; opacity: 0.8; }
.chat-close { background: none; border: none; color: white; cursor: pointer; font-size: 1.5rem; }
.chat-body { height: 300px; padding: 1.5rem; overflow-y: auto; }
.chat-message .msg { background: var(--bg-card); border: 1px solid rgba(var(--tint), 0.05); padding: 1rem; border-radius: 12px 12px 12px 0; display: inline-block; max-width: 85%; font-size: 0.9rem; line-height: 1.6; margin-bottom: 0.8rem; }
.chat-footer { padding: 1rem 1.5rem; border-top: 1px solid rgba(var(--tint), 0.05); display: flex; gap: 0.8rem; }
.chat-footer input { flex: 1; padding: 0.8rem 1rem; background: var(--bg-card); border: 1px solid rgba(var(--tint), 0.08); border-radius: 100px; color: var(--white); font-family: inherit; font-size: 0.9rem; }
.chat-footer input:focus { outline: none; border-color: var(--accent-1); }
.chat-footer input:disabled { opacity: 0.5; cursor: not-allowed; }
.chat-send { width: 45px; height: 45px; background: var(--gradient-cta); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.chat-send svg { width: 18px; height: 18px; fill: white; }

.mobile-btn { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1001; }
.mobile-btn span { width: 28px; height: 1.5px; background: var(--white); transition: all 0.3s ease; }
.reveal { opacity: 0; transform: translateY(60px); transition: all 1s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
    .services-grid, .pricing-grid, .portfolio-grid { grid-template-columns: 1fr; }
    /* Tagline mai mic pe tablete */
    .logo-tagline { font-size: 0.7rem; letter-spacing: 1.2px; }
    .logo-divider { font-size: 1.3rem; margin: 0 0.3rem; }
    .services-bento { 
        grid-template-columns: 1fr; 
        grid-template-rows: auto;
    }
    .bento-1, .bento-2, .bento-3, .bento-4 {
        grid-column: 1;
        grid-row: auto;
    }
    .bento-1 { padding: 2.5rem; }
    .bento-1 .bento-num { font-size: 3.2rem; }
    .bento-1 h3 { font-size: 1.8rem; }
    .bento-4 .bento-content { 
        flex-direction: column; 
        gap: 1.5rem; 
        align-items: stretch;
    }
    .bento-cart-mock { flex: 0 0 auto; width: 100%; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-card::after { display: none; }
    .contact-container { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: repeat(2, 1fr); }
    .lang-switch { display: none; }
    .pricing-addons { flex-direction: column; align-items: flex-start; text-align: left; }
}
@media (max-width: 768px) {
    body { cursor: auto; }
    .cursor-dot, .cursor-ring { display: none; }
    .mobile-btn { display: flex; }
    .nav-links, .nav-cta { display: none; }
    
    /* ============ MOBILE COMPACT CTA (when scrolled) ============ */
    /* Show a compact "Start" pill next to hamburger when nav is scrolled */
    nav.scrolled .nav-cta {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        padding: 0.4rem 0.85rem;
        background: var(--gradient-cta);
        background-size: 200% 200%;
        /* gradientShift scos: gradientul e culoare plata, deci animatia nu mai desena nimic */
        border: none;
        color: white;
        font-size: 0.68rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        border-radius: 100px;
        margin-right: 0.7rem;
        box-shadow: 0 4px 12px rgba(251, 168, 143, 0.25);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        /* Smooth fade-in when nav becomes scrolled */
        opacity: 0;
        transform: scale(0.85);
        animation: ctaPopIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards, gradientShift 6s ease infinite 0.5s;
    }
    @keyframes ctaPopIn {
        to { opacity: 1; transform: scale(1); }
    }
    nav.scrolled .nav-cta:active {
        transform: scale(0.95);
    }
    /* Hide pseudo-elements that exist on desktop hover effect */
    nav.scrolled .nav-cta::before {
        display: none;
    }
    nav.scrolled .nav-cta span {
        color: white !important;
    }
    /* Mobile: when CTA is shown (nav.scrolled), use short text */
    nav.scrolled .nav-cta-long { display: none; }
    nav.scrolled .nav-cta-short { display: inline; }
    /* Add arrow after Start text */
    nav.scrolled .nav-cta::after {
        content: '→';
        display: inline-block;
        font-size: 0.8rem;
        line-height: 1;
        transition: transform 0.3s ease;
    }
    nav.scrolled .nav-cta:active::after {
        transform: translateX(2px);
    }
    /* Ensure mobile menu button stays visible alongside */
    nav.scrolled .mobile-btn {
        margin-left: 0;
    }
    /* On mobile when scrolled: hide tagline + divider, keep only logo + CTA + hamburger */
    nav.scrolled .logo-tagline,
    nav.scrolled .logo-divider {
        display: none !important;
    }
    /* ============ END MOBILE COMPACT CTA ============ */
    
    /* ============ MOBILE TAGLINE – Show at TOP (not scrolled), hide when scrolled */
    /* On mobile at the top of the page: logo + tagline + hamburger (room for branding) */
    /* When scrolled: logo + Start button + hamburger (CTA takes priority – handled above with !important) */
    .logo-img { height: 60px; }
    .logo-divider {
        display: inline;
        font-size: 1.1rem;
        margin: 0 0.35rem;
        color: rgba(var(--tint), 0.3);
    }
    .logo-tagline {
        display: inline;
        font-size: 0.6rem;
        letter-spacing: 0.6px;
        color: rgba(var(--tint), 0.65);
        font-weight: 400;
    }
    /* On very small phones (< 380px) the tagline gets too tight – hide divider+tagline gracefully */
    @media (max-width: 380px) {
        .logo-divider, .logo-tagline { display: none; }
    }
    /* User preference: keep logo at full size even when scrolled - there's room */
    nav.scrolled .logo-img { height: 80px; }
    /* ============ END MOBILE TAGLINE ============ */
    
    /* ============ PREMIUM MOBILE MENU - Figma style ============ */
    /* Reset desktop margin/padding when active on mobile (was pushing menu right) */
    .nav-links.active {
        margin-left: 0 !important;
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
    
    .nav-links.active { 
        display: flex; 
        flex-direction: column; 
        position: fixed; 
        top: 0; left: 0; right: 0; bottom: 0; 
        height: 100vh; height: 100dvh;
        background: radial-gradient(ellipse at top right, rgba(251, 168, 143, 0.15) 0%, transparent 50%),
                    radial-gradient(ellipse at bottom left, rgba(251, 168, 143, 0.12) 0%, transparent 50%),
                    var(--bg-dark);
        backdrop-filter: blur(40px);
        -webkit-backdrop-filter: blur(40px);
        justify-content: flex-start; 
        align-items: stretch; 
        gap: 0.6rem; 
        z-index: 1000; 
        overflow-y: auto;
        padding: 4.5rem 1.5rem 2rem;
        animation: menuFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    @keyframes menuFadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    /* Animated background blobs in mobile menu */
    .nav-links.active::before {
        content: '';
        position: absolute;
        top: 10%;
        right: -20%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(251, 168, 143, 0.25) 0%, transparent 70%);
        border-radius: 50%;
        filter: blur(80px);
        animation: blobFloat 12s ease-in-out infinite;
        pointer-events: none;
        z-index: 0;
    }
    .nav-links.active::after {
        content: '';
        position: absolute;
        bottom: 15%;
        left: -20%;
        width: 350px;
        height: 350px;
        background: radial-gradient(circle, rgba(251, 168, 143, 0.2) 0%, transparent 70%);
        border-radius: 50%;
        filter: blur(80px);
        animation: blobFloat 10s ease-in-out infinite reverse;
        pointer-events: none;
        z-index: 0;
    }
    
    /* Mobile menu nav links - editorial style */
    .nav-links.active li { 
        position: relative;
        z-index: 1;
        opacity: 0;
        transform: translateY(20px);
        animation: menuItemIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    .nav-links.active li:nth-child(1) { animation-delay: 0.06s; }
    .nav-links.active li:nth-child(2) { animation-delay: 0.11s; }
    .nav-links.active li:nth-child(3) { animation-delay: 0.16s; }
    .nav-links.active li:nth-child(4) { animation-delay: 0.21s; }
    .nav-links.active li:nth-child(5) { animation-delay: 0.26s; }
    .nav-links.active li:nth-child(6) { animation-delay: 0.31s; }
    .nav-links.active li:nth-child(7) { animation-delay: 0.36s; }
    .nav-links.active li:nth-child(8) { animation-delay: 0.41s; }
    .nav-links.active li:nth-child(9) { animation-delay: 0.46s; }
    .nav-links.active li:nth-child(10) { animation-delay: 0.51s; }
    
    @keyframes menuItemIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    /* Editorial style - line divider between items, no cards */
    .nav-links.active li:not(.lang-switch):not(.menu-hint):not(.has-dropdown) {
        background: transparent;
        border: none;
        border-bottom: 1px solid rgba(var(--tint), 0.06);
        border-radius: 0;
        transition: border-color 0.3s ease;
    }
    
    .nav-links.active li:not(.lang-switch):not(.menu-hint):not(.has-dropdown):hover,
    .nav-links.active li:not(.lang-switch):not(.menu-hint):not(.has-dropdown):active {
        border-bottom-color: rgba(251, 168, 143, 0.5);
    }
    
    .nav-links.active li:not(.lang-switch):not(.menu-hint):not(.has-dropdown) a { 
        display: flex;
        align-items: baseline;
        justify-content: flex-start;
        gap: 0.4rem;
        padding: 0.75rem 0.5rem;
        width: 100%;
        font-family: 'Instrument Serif', serif;
        font-style: italic;
        font-size: 1.2rem;
        font-weight: 400;
        color: var(--white);
        line-height: 1;
        letter-spacing: -0.01em;
        position: relative;
        cursor: pointer;
        /* Make sure click area is full */
        -webkit-tap-highlight-color: rgba(251, 168, 143, 0.15);
    }
    
    /* Reset desktop underline pseudo on mobile menu */
    .nav-links.active li:not(.lang-switch):not(.menu-hint):not(.has-dropdown) a::after {
        content: '→' !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: none !important;
        transform: none !important;
        font-family: 'Space Grotesk', sans-serif;
        font-style: normal;
        font-size: 1.3rem;
        color: rgba(var(--tint), 0.3);
        transition: transform 0.3s ease, color 0.3s ease;
        flex-shrink: 0;
        pointer-events: none;
        margin-left: auto;
    }
    
    /* Number prefix with gradient */
    .nav-links.active li:not(.lang-switch):not(.menu-hint):not(.has-dropdown) a::before {
        content: attr(data-num);
        font-family: 'Space Grotesk', sans-serif;
        font-style: normal;
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 2.5px;
        margin-right: 1rem;
        flex-shrink: 0;
        background: var(--gradient-main);
        background-size: 200% 200%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        /* gradientShift scos: gradientul e culoare plata, deci animatia nu mai desena nimic */
        align-self: center;
        opacity: 0.85;
        pointer-events: none;
    }
    
    /* Hover/active - gradient text effect on link name */
    .nav-links.active li:not(.lang-switch):not(.menu-hint):not(.has-dropdown) a:hover,
    .nav-links.active li:not(.lang-switch):not(.menu-hint):not(.has-dropdown) a:active {
        background: var(--accent);
        background-size: 200% auto;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        /* gradientShift scos: gradientul e culoare plata, deci animatia nu mai desena nimic */
    }
    
    .nav-links.active li:not(.lang-switch):not(.menu-hint):not(.has-dropdown) a:hover::after,
    .nav-links.active li:not(.lang-switch):not(.menu-hint):not(.has-dropdown) a:active::after {
        color: var(--accent-3);
        transform: translateX(6px);
        -webkit-text-fill-color: var(--accent-3);
    }
    
    /* Language switcher in mobile menu */
    .nav-links.active .lang-switch { 
        display: flex; 
        margin-top: 1.5rem; 
        padding: 0.5rem;
        background: rgba(var(--tint), 0.025);
        border: 1px solid rgba(var(--tint), 0.06);
        border-radius: 100px;
        gap: 0;
        justify-content: center;
        align-self: center;
        border-left: 1px solid rgba(var(--tint), 0.06);
        padding-left: 0.5rem;
        margin-left: 0;
    }
    
    .nav-links.active .lang-btn {
        border: none;
        padding: 0.6rem 1.5rem;
        border-radius: 100px;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 1px;
        transition: all 0.3s ease;
    }
    
    .nav-links.active .lang-btn.active {
        background: var(--gradient-cta);
        color: white;
    }
    
    .nav-links.active .lang-btn:not(.active) {
        background: transparent;
        color: rgba(var(--tint), 0.6);
    }
    
    /* Theme toggle in mobile menu - exclude from regular nav-link border styling */
    .nav-links.active .theme-toggle-wrap {
        border-bottom: none !important;
        align-self: center;
        margin-top: 0.5rem;
        margin-left: 0;
    }
    
    /* CTA button visible at bottom of mobile menu */
    .nav-links.active::before,
    .nav-links.active::after { z-index: 0; }
    
    /* ============ MOBILE DROPDOWN - tap to expand inline ============ */
    .nav-links.active .has-dropdown {
        background: transparent;
        border: none;
        border-bottom: 1px solid rgba(var(--tint), 0.06);
        position: relative;
        z-index: 1;
        opacity: 0;
        transform: translateY(20px);
        animation: menuItemIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    .nav-links.active .has-dropdown > a {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.75rem 0.5rem;
        width: 100%;
        font-family: 'Instrument Serif', serif;
        font-style: italic;
        font-size: 1.2rem;
        font-weight: 400;
        color: var(--white);
        line-height: 1;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(251, 168, 143, 0.15);
    }
    /* Text span sits next to ::before "01", arrow pushed to the right */
    .nav-links.active .has-dropdown > a > span:not(.dropdown-arrow) {
        flex: 1;
        display: inline-block;
    }
    /* Number prefix on mobile (data-num attr) */
    .nav-links.active .has-dropdown > a::before {
        content: attr(data-num);
        font-family: 'Space Grotesk', sans-serif;
        font-style: normal;
        font-size: 0.65rem;
        font-weight: 600;
        letter-spacing: 2.5px;
        margin-right: 1rem;
        background: var(--gradient-main);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        opacity: 0.85;
    }
    /* Replace dropdown-arrow with a chevron on mobile */
    .nav-links.active .has-dropdown .dropdown-arrow {
        display: inline-block;
        width: 10px;
        height: 10px;
        border: none;
        border-right: 2px solid rgba(var(--tint), 0.4);
        border-bottom: 2px solid rgba(var(--tint), 0.4);
        transform: rotate(45deg);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        margin-bottom: 4px;
        margin-left: auto;
    }
    .nav-links.active .has-dropdown.open .dropdown-arrow {
        transform: rotate(-135deg);
        margin-bottom: -2px;
        border-color: var(--accent-1);
    }
    /* Submenu - inline expandable */
    .nav-links.active .dropdown-menu {
        display: block !important;
        position: static !important;
        transform: none !important;
        left: auto !important;
        top: auto !important;
        opacity: 0;
        visibility: visible;
        pointer-events: auto;
        background: rgba(var(--tint), 0.025);
        border: 1px solid rgba(var(--tint), 0.05);
        border-radius: 12px;
        padding: 0 0.4rem;
        margin: 0 0 0 0;
        box-shadow: none;
        min-width: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease, margin 0.3s ease, opacity 0.3s ease;
    }
    .nav-links.active .dropdown-menu::before { display: none; }
    .nav-links.active .has-dropdown.open .dropdown-menu {
        max-height: 700px;
        padding: 0.5rem;
        margin: 0.5rem 0 0.8rem 0;
        opacity: 1;
    }
    .nav-links.active .dropdown-menu li {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        margin-bottom: 0.2rem;
        background: transparent !important;
        border: none !important;
    }
    .nav-links.active .dropdown-menu a {
        font-family: 'Space Grotesk', sans-serif !important;
        font-style: normal !important;
        font-size: 0.88rem !important;
        padding: 0.7rem 0.9rem !important;
        color: var(--white) !important;
        line-height: 1.3 !important;
        display: flex !important;
        flex-direction: column;
        gap: 0.15rem;
    }
    .nav-links.active .dropdown-menu a::after { display: none !important; }
    .nav-links.active .dropdown-menu a::before { display: none !important; }
    .nav-links.active .dropdown-menu a small {
        font-size: 0.7rem;
        color: var(--white-muted);
        font-weight: 400;
        font-family: 'Space Grotesk', sans-serif;
    }
    .nav-links.active .dropdown-divider {
        background: rgba(var(--tint), 0.08) !important;
        margin: 0.3rem 0.5rem !important;
    }
    .nav-links.active .dropdown-all {
        font-size: 0.72rem !important;
        color: var(--white-muted) !important;
        text-align: center !important;
    }
    /* ============ END MOBILE DROPDOWN ============ */
    
    /* Mobile menu close hint */
    .nav-links.active .menu-hint {
        display: block !important;
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.7rem;
        color: rgba(var(--tint), 0.3);
        text-transform: uppercase;
        letter-spacing: 2px;
        z-index: 1;
        animation: hintPulse 2s ease-in-out infinite;
    }
    @keyframes hintPulse {
        0%, 100% { opacity: 0.3; }
        50% { opacity: 0.6; }
    }
    
    /* Hamburger transform to X when active */
    .mobile-btn.active {
        position: fixed;
        top: 1.5rem;
        right: 5%;
        z-index: 1002;
    }
    .mobile-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 6px);
        background: var(--accent-3);
    }
    .mobile-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
        background: var(--accent-3);
    }
    /* ============ END PREMIUM MOBILE MENU ============ */
    
    .process-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; text-align: center; }
    .footer-social { justify-content: center; }
    .cookie-banner { flex-direction: column; text-align: center; }
    .chat-window { width: calc(100vw - 4rem); right: -1rem; }
    .browser-mockup { transform: none; }
    .logo { margin-left: 0.2rem; }
    .manifesto-pillars { grid-template-columns: 1fr; gap: 1rem; }
    .pillar { padding: 1.5rem 1rem; }
    section { padding: 5rem 5%; }
}

