/* ===== Design tokens (extrase din tema sursă) ===== */
:root {
  --bg-primary: #050a0b;
  --bg-elevated: #0d1517;
  --border-subtle: rgba(255,255,255,0.08);
  --text-primary: #ffffff;
  --text-muted: rgba(255,255,255,0.65);

  --accent-lime: #C8FF00;
  --accent-pink: #FF2D78;
  --accent-mint: #6CD3A7;
  --accent-cyan: #00D4FF;
  --accent-purple: #7B2FFF;

  --font-display: "Barlow Condensed", "Barlow Condensed Fallback", Impact, sans-serif;
  --font-body: "DM Sans", "DM Sans Fallback", system-ui, sans-serif;

  --container-w: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent-mint);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  margin-bottom: 24px;
}

.accent-lime { color: var(--accent-lime); }
.accent-pink { color: var(--accent-pink); }
.accent-mint { color: var(--accent-mint); }
.accent-cyan { color: var(--accent-cyan); }
.accent-purple { color: var(--accent-purple); }
.accent-amber { color: #ffb140; }

section { padding: 96px 0; position: relative; }

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--accent-mint);
  color: #050a0b;
  font-weight: 800;
  box-shadow: 0 0 40px rgba(108,211,167,0.35);
}
.btn-primary:hover {
  background: #83dcb6;
  box-shadow: 0 0 60px rgba(108,211,167,0.55);
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border-color: var(--border-subtle);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.05);
  color: #fff;
}

.btn-ghost-accent {
  background: transparent;
  color: var(--accent-color, var(--accent-mint));
  border-color: var(--accent-color, var(--accent-mint));
}
.btn-ghost-accent:hover {
  background: var(--accent-color, var(--accent-mint));
  color: #050a0b;
}

.btn-lg { padding: 16px 32px; font-size: 15px; }

/* ===== Header (liquid glass on scroll) ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: padding 0.3s ease;
}

.header-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  gap: 24px;
  border-radius: 16px;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  background: transparent;
  border: 1px solid transparent;
}

.site-header.scrolled { padding: 12px 0; }

.site-header.scrolled .header-inner {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  padding: 0 24px;
}

/* backdrop-filter pe .header-inner devine containing block pentru copilul
   position:fixed .main-nav (deschis pe mobil), rupându-i acoperirea pe tot
   ecranul — se dezactivează cât timp meniul e deschis (body.no-scroll). */
body.no-scroll .site-header.scrolled .header-inner {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

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

.main-nav {
  display: flex;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s ease, background 0.2s ease;
  padding: 10px 16px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.main-nav a:hover { color: #fff; background: rgba(255,255,255,0.05); }
.main-nav .mobile-cta { display: none; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-phone {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}
.header-phone:hover { color: var(--accent-mint); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

body { padding-top: 96px; }
body.no-scroll { overflow: hidden; }

/* ===== Hero ===== */
.hero {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: orbDrift 10s ease-in-out infinite;
}
.orb-purple {
  top: -80px; right: -80px; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(123,47,255,0.35) 0%, rgba(0,0,0,0) 70%);
  opacity: 0.6;
}
.orb-pink {
  top: 33%; left: -160px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,45,120,0.3) 0%, rgba(0,0,0,0) 70%);
  opacity: 0.5;
  animation-delay: -3s;
}
.orb-mint {
  bottom: -80px; left: 50%; transform: translateX(-50%); width: 700px; height: 400px;
  background: radial-gradient(circle, rgba(108,211,167,0.25) 0%, rgba(0,0,0,0) 70%);
  opacity: 0.7;
  animation-delay: -6s;
}
.orb-cyan {
  top: 40px; left: 40px; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,212,255,0.2) 0%, rgba(0,0,0,0) 70%);
  opacity: 0.4;
  animation-delay: -1.5s;
}
.orb-lime {
  top: 40px; left: 40px; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(200,255,0,0.18) 0%, rgba(0,0,0,0) 70%);
  opacity: 0.4;
  animation-delay: -2.5s;
}

@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -25px) scale(1.06); }
  66% { transform: translate(-25px, 20px) scale(0.96); }
}
.orb-mint { animation-name: orbDriftCentered; }
@keyframes orbDriftCentered {
  0%, 100% { transform: translateX(-50%) translate(0, 0) scale(1); }
  33% { transform: translateX(-50%) translate(30px, -15px) scale(1.05); }
  66% { transform: translateX(-50%) translate(-30px, 15px) scale(0.97); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(108,211,167,0.03) 1px, transparent 0),
    linear-gradient(90deg, rgba(108,211,167,0.03) 1px, transparent 0);
  background-size: 60px 60px, 60px 60px;
  opacity: 0.5;
}

.hero-fade-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
}

.hero-inner {
  position: relative;
  text-align: center;
}

.badge-row { display: flex; justify-content: center; align-items: center; gap: 10px; margin-bottom: 32px; }

.badge-avatars { display: flex; }
.badge-avatars .mini-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  color: #050a0b;
}
.badge-avatars .mini-avatar:first-child { margin-left: 0; }
.badge-avatars .mini-avatar:nth-child(1) { background: var(--accent-mint); }
.badge-avatars .mini-avatar:nth-child(2) { background: var(--accent-lime); }
.badge-avatars .mini-avatar:nth-child(3) { background: var(--accent-pink); }
.badge-avatars .mini-avatar:nth-child(4) { background: var(--accent-cyan); }

.badge-stars { color: var(--accent-lime); }

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(44px, 8vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.01em;
}
.hero-title .line { display: block; }

.hero-sub {
  max-width: 620px;
  margin: 32px auto 0;
  font-size: 18px;
  color: var(--text-muted);
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* ===== Partner strip ===== */
.partner-strip {
  padding: 40px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.partner-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-shrink: 0;
}

.partner-logo {
  height: 56px;
  width: auto;
  filter: grayscale(1) brightness(1.6);
  opacity: 0.85;
}

.partner-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.pstat { display: flex; flex-direction: column; align-items: center; }
.pnum {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
}
.plabel {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== Marquee — bandă derulantă pe 3 rânduri colorate ===== */
.marquee-section {
  padding: 50px 0;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.marquee-row {
  width: 120%;
  margin-left: -10%;
  overflow: hidden;
  padding: 18px 0;
  margin-top: clamp(-20px, -4.4vw, -14px);
  position: relative;
}
.marquee-row:first-child { margin-top: 0; }

.marquee-row.row-purple { background: linear-gradient(90deg, #2c0f66, #7B2FFF 45%, #2c0f66); box-shadow: 0 0 60px rgba(123,47,255,0.45); transform: rotate(-1.3deg); z-index: 1; }
.marquee-row.row-pink { background: linear-gradient(90deg, #7a0d3a, #FF2D78 45%, #7a0d3a); box-shadow: 0 0 60px rgba(255,45,120,0.5); transform: rotate(1deg); z-index: 2; }
.marquee-row.row-mint { background: linear-gradient(90deg, #0a4a3f, #22c99a 45%, #0a4a3f); box-shadow: 0 0 60px rgba(34,201,154,0.45); transform: rotate(-1.1deg); z-index: 1; }

.marquee-row-track {
  display: flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  width: max-content;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  text-transform: uppercase;
  color: #fff;
}

.marquee-row-track .dot { display: inline-block; width: 7px; height: 7px; border-radius: 2px; background: currentColor; opacity: 0.6; transform: rotate(45deg); }

.scroll-left { animation-name: marqueeLeft; animation-timing-function: linear; animation-iteration-count: infinite; }
.scroll-right { animation-name: marqueeRight; animation-timing-function: linear; animation-iteration-count: infinite; }
.row-purple .marquee-row-track { animation-duration: 30s; }
.row-pink .marquee-row-track { animation-duration: 21s; }
.row-mint .marquee-row-track { animation-duration: 38s; }
.marquee-row:hover .marquee-row-track { animation-play-state: paused; }

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

/* ===== Services (accordion, ca la Old Fox) ===== */
.services { padding-top: 48px; }
.services-list { margin-top: 48px; border-top: 1px solid var(--border-subtle); }

.service-item { border-bottom: 1px solid var(--border-subtle); }

.service-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text-primary);
}

.service-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  color: var(--text-muted);
  transition: color 0.25s ease;
  width: 30px;
  flex-shrink: 0;
}
.service-item.active .service-num { color: var(--accent-lime); }

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-icon svg { width: 22px; height: 22px; stroke: currentColor; }

.icon-mint { background: rgba(108,211,167,0.12); color: var(--accent-mint); }
.icon-pink { background: rgba(255,45,120,0.12); color: var(--accent-pink); }
.icon-lime { background: rgba(200,255,0,0.12); color: var(--accent-lime); }
.icon-amber { background: rgba(255,177,64,0.12); color: #ffb140; }
.icon-purple { background: rgba(123,47,255,0.15); color: var(--accent-purple); }
.icon-cyan { background: rgba(0,212,255,0.12); color: var(--accent-cyan); }

.service-title {
  flex: 1;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.service-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, border-color 0.25s ease, color 0.25s ease;
  color: rgba(255,255,255,0.5);
}
.service-toggle svg { width: 16px; height: 16px; }
.service-item.active .service-toggle {
  transform: rotate(45deg);
  border-color: currentColor;
}
.service-item.active .service-toggle.tg-mint { color: var(--accent-mint); }
.service-item.active .service-toggle.tg-pink { color: var(--accent-pink); }
.service-item.active .service-toggle.tg-lime { color: var(--accent-lime); }
.service-item.active .service-toggle.tg-amber { color: #ffb140; }
.service-item.active .service-toggle.tg-purple { color: var(--accent-purple); }
.service-item.active .service-toggle.tg-cyan { color: var(--accent-cyan); }

.service-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.service-panel-inner {
  padding: 0 0 32px 102px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.service-panel-inner p { color: var(--text-muted); font-size: 15px; max-width: 620px; }

.service-link {
  font-weight: 700;
  font-size: 14px;
  color: var(--accent-mint);
  white-space: nowrap;
}
.service-link:hover { color: var(--accent-lime); }

/* ===== Testimonials (stivă de carduri, ca la Old Fox) ===== */
.testimonials { padding-bottom: 48px; }
.testimonials-inner { text-align: center; }
.testimonials-inner .section-title { margin-left: auto; margin-right: auto; }

.testimonial-stack {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 380px;
  margin: 56px auto 32px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px;
  text-align: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), opacity 0.5s ease;
}

.testimonial-card > * {
  transition: opacity 0.3s ease;
  opacity: 0;
}
.testimonial-card.is-active > * { opacity: 1; }

.testimonial-stars { display: flex; flex-shrink: 0; gap: 4px; color: var(--accent-lime); font-size: 14px; }

.testimonial-quote {
  font-size: 17px;
  line-height: 1.55;
  color: #fff;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent-mint);
  color: #050a0b;
  font-family: var(--font-display);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.testimonial-meta { flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: 14px; }
.testimonial-role { font-size: 13px; color: var(--text-muted); }

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.testimonial-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.testimonial-dots button.active {
  background: var(--accent-mint);
  transform: scale(1.3);
}

/* ===== Results carousel (ca la Old Fox) ===== */
.results-carousel {
  margin-top: 48px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-top: 2px solid var(--accent-mint);
  border-radius: 20px;
  padding: 40px 48px 32px;
  position: relative;
  overflow: hidden;
}

.results-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.results-tab {
  position: relative;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  overflow: hidden;
}
.results-tab.active {
  color: var(--accent-mint);
  border-color: rgba(108,211,167,0.4);
  background: rgba(108,211,167,0.08);
}

.results-tab-bar {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background: var(--accent-mint);
}
.results-tab.active .results-tab-bar.run {
  animation: tabProgress 5s linear forwards;
}
.results-carousel:hover .results-tab-bar.run {
  animation-play-state: paused;
}
@keyframes tabProgress {
  from { width: 0%; }
  to { width: 100%; }
}

.results-slide { position: relative; min-height: 220px; }

.results-slide-ghost {
  position: absolute;
  top: 20px;
  left: -6px;
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(40px, 8vw, 96px);
  line-height: 1;
  color: rgba(108,211,167,0.06);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.results-slide-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.results-slide-company {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  text-transform: uppercase;
}

.results-slide-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent-mint);
  border: 1px solid rgba(108,211,167,0.3);
  border-radius: 999px;
  padding: 6px 14px;
  text-transform: uppercase;
}

.results-slide-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.results-metric { display: flex; flex-direction: column; gap: 4px; }
.results-metric-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 40px;
}
.results-metric-label { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }

.results-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
.results-dots { display: flex; gap: 8px; }
.results-dots span {
  height: 3px;
  width: 28px;
  border-radius: 2px;
  background: rgba(255,255,255,0.15);
  transition: background 0.25s ease, width 0.25s ease;
}
.results-dots span.active { background: var(--accent-mint); width: 40px; }
.results-count {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.results-arrows { display: flex; gap: 10px; }
.results-arrows button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: rgba(255,255,255,0.03);
  color: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  z-index: 2;
  position: relative;
}
.results-arrows button:hover { border-color: var(--accent-mint); background: rgba(108,211,167,0.08); }

/* ===== What is performance marketing ===== */
.performance-block { max-width: 820px; }
.performance-block .why-us-p { font-size: 16px; }
.performance-block .why-us-p strong { color: #fff; }

/* ===== Stat grid & value cards (Despre / Servicii) ===== */
.stat-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}
.stat-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.stat-card:hover { border-color: rgba(108,211,167,0.4); transform: translateY(-4px); }
.stat-num { font-family: var(--font-display); font-weight: 900; font-size: 40px; }
.stat-num small { font-size: 20px; }
.stat-label { color: var(--text-muted); font-size: 13px; }

.value-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .value-grid { grid-template-columns: 1fr; } }
.value-card {
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.value-card:hover { border-color: rgba(108,211,167,0.4); transform: translateY(-4px); }
.value-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--accent-lime);
}
.value-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* ===== Founder / quote blocks ===== */
.founder-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
.founder-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent-mint); color: #050a0b;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 20px;
}
.founder-name { font-weight: 700; }
.founder-role { font-size: 13px; color: var(--text-muted); }

.quote-section { padding: 100px 0; }

.pull-quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3.4vw, 38px);
  line-height: 1.3;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  color: #fff;
}

/* ===== Page hero (sub-pagini) ===== */
.page-hero { padding: 110px 0 90px; text-align: center; position: relative; overflow: hidden; }
.page-hero--icon { padding-top: 34px; }
.page-hero .section-title { margin-left: auto; margin-right: auto; text-align: center; }
.page-hero .why-us-p { max-width: 640px; margin: 0 auto; text-align: center; color: rgba(255,255,255,0.85); font-size: 17px; }
.breadcrumb { color: var(--text-muted); font-size: 13px; margin-bottom: 16px; }
.breadcrumb a { color: var(--accent-mint); }

/* ===== Conținut SEO lung (pagini de servicii individuale) ===== */
section:has(> .seo-content) { padding-top: 40px; }
.seo-content {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.75;
}
.seo-content h1 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(32px, 4.6vw, 48px);
  line-height: 1.08;
  color: #fff;
  margin: 0 0 20px;
}
.seo-content h2 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  color: #fff;
  margin: 40px 0 18px;
}
.seo-content h1:first-child,
.seo-content h2:first-child { margin-top: 0; }
.seo-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--accent-mint);
  margin: 28px 0 10px;
}
.seo-content p { margin-bottom: 16px; }
.seo-content ul { margin: 0 0 16px; padding-left: 22px; }
.seo-content li { margin-bottom: 8px; }
.seo-content strong { color: #fff; }
.seo-result-figure {
  margin: 24px 0 8px;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-elevated);
}
.seo-result-figure img { width: 100%; height: auto; display: block; }

.seo-faq { margin-top: 16px; }
.seo-faq-item { border-bottom: 1px solid var(--border-subtle); padding: 18px 0; }
.seo-faq-item h3 { color: #fff; font-size: 17px; margin: 0 0 8px; font-family: var(--font-body); font-weight: 700; }
.seo-faq-item p { color: rgba(255,255,255,0.65); font-size: 15px; margin-bottom: 0; }

/* ===== Service detail blocks (pagina Servicii) ===== */
.service-detail {
  padding: 56px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.service-detail-grid {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 32px;
}
.service-detail-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 40px;
  color: var(--accent-lime);
}
.service-detail-title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 14px;
}
.service-detail-desc { color: var(--text-muted); font-size: 16px; max-width: 640px; margin-bottom: 24px; }
.service-detail-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.service-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  max-width: 760px;
  margin-bottom: 28px;
}
.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.service-feature::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-mint);
  flex-shrink: 0;
}

/* ===== Why us ===== */
.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.why-us-p { color: var(--text-muted); margin-bottom: 16px; font-size: 16px; }

.compare-table {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 15px;
  transition: background 0.2s ease;
}
.compare-row:last-child { border-bottom: none; }
.compare-row:not(.compare-head):hover { background: rgba(108,211,167,0.04); }
.compare-row > span:first-child { color: rgba(255,255,255,0.75); }
.compare-row > span:last-child { font-weight: 600; }

.compare-cell { display: flex; align-items: center; gap: 12px; }
.compare-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border: 1px solid;
}
.icon-no {
  color: rgba(255,255,255,0.35);
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.03);
}
.icon-yes {
  color: var(--accent-mint);
  border-color: rgba(108,211,167,0.45);
  background: rgba(108,211,167,0.1);
}

.compare-head {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
  background: rgba(255,255,255,0.03);
}
.compare-head > span:first-child { color: var(--text-muted); }
.compare-head .compare-icon { width: 24px; height: 24px; }

/* ===== Process ===== */
.process-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.process-card {
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.process-card:hover {
  border-color: rgba(108,211,167,0.4);
  transform: translateY(-4px);
}

.process-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  display: block;
  margin-bottom: 12px;
}

.process-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 8px;
}

.process-card p { color: var(--text-muted); font-size: 14px; }

/* ===== Blog ===== */
.blog-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.blog-card:hover {
  border-color: var(--accent-mint);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}

.blog-card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-elevated-2, rgba(255,255,255,0.03)); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-img-placeholder { display: flex; align-items: center; justify-content: center; }
.blog-card-img-placeholder img { width: 40%; height: 40%; object-fit: contain; opacity: 0.35; transform: none !important; }

.blog-card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card-date { font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--accent-mint); font-weight: 700; }
.blog-card-title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 19px;
  line-height: 1.2;
  margin: 10px 0 10px;
}
.blog-card-excerpt { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin: 0 0 16px; flex: 1; }
.blog-card-link { font-size: 13px; font-weight: 700; color: #fff; margin-top: auto; }
.blog-card:hover .blog-card-link { color: var(--accent-mint); }

/* ===== Portofoliu — bandă derulantă cu brandurile reale ===== */
.portfolio-marquee {
  margin-top: 48px;
  overflow: hidden;
  padding: 32px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.portfolio-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: marqueeLeft 36s linear infinite;
}
.portfolio-marquee:hover .portfolio-track { animation-play-state: paused; }
.portfolio-track img {
  height: 52px;
  width: auto;
  filter: grayscale(1) brightness(1.7) opacity(0.6);
  transition: filter 0.25s ease;
}
.portfolio-track img:hover { filter: grayscale(0) opacity(1); }

.portfolio { padding-bottom: 40px; }

/* ===== FAQ ===== */
.faq { padding-top: 40px; }
.faq .eyebrow,
.faq .section-title {
  text-align: center;
}

.faq-list {
  margin: 48px auto 0;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  transition: background 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}

.faq-item.active {
  background: rgba(255,255,255,0.06);
  border-color: rgba(200,255,0,0.25);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
}

.faq-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 15px;
  color: var(--text-muted);
  width: 24px;
  flex-shrink: 0;
  transition: color 0.25s ease;
}
.faq-item.active .faq-num { color: var(--accent-lime); }

.faq-question > span:not(.faq-num):not(.faq-icon) { flex: 1; }

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--accent-lime);
  border-color: rgba(200,255,0,0.4);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 24px 22px 64px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ===== Contact ===== */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.contact-details a { font-weight: 600; display: inline-flex; align-items: center; gap: 10px; }
.contact-details a svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--accent-mint); }
.contact-details a:hover { color: var(--accent-mint); }

.contact-form {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
}

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

.form-msg { font-size: 14px; padding: 12px 16px; border-radius: 8px; }
.form-msg:empty { display: none; }
.form-msg-ok { background: rgba(108,211,167,0.12); border: 1px solid rgba(108,211,167,0.4); color: var(--accent-mint); }
.form-msg-err { background: rgba(255,45,120,0.12); border: 1px solid rgba(255,45,120,0.4); color: var(--accent-pink); }

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.4); }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-mint);
}

/* ===== Final CTA (umbre/glow, aliniat stânga, ca la Old Fox) ===== */
.final-cta {
  border-top: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.final-cta-inner { position: relative; max-width: 720px; }

.final-cta .eyebrow { color: rgba(255,255,255,0.45); font-size: 14px; }

.final-cta-title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.05;
  margin: 16px 0 40px;
}
.final-cta-title .muted-line { color: rgba(255,255,255,0.35); display: block; }
.final-cta-title .glow-line { display: block; text-shadow: 0 0 16px rgba(255,45,120,0.35); }
.final-cta-title .glow-line.accent-mint { text-shadow: 0 0 16px rgba(108,211,167,0.4); }
.final-cta-title .glow-line.accent-lime { text-shadow: 0 0 16px rgba(200,255,0,0.35); }
.final-cta-title .glow-line.accent-cyan { text-shadow: 0 0 16px rgba(0,212,255,0.4); }
.final-cta-title .glow-line.accent-purple { text-shadow: 0 0 16px rgba(123,47,255,0.4); }
.final-cta-title .glow-line.accent-amber { text-shadow: 0 0 16px rgba(255,177,64,0.4); }

.final-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  font-size: 14px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.final-stats > div {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.final-stats > div > span {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
}

.final-cta-desc { color: var(--text-muted); font-size: 16px; max-width: 460px; margin-bottom: 32px; }

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-logo { height: 34px; margin-bottom: 16px; }

.footer-desc { color: var(--text-muted); font-size: 14px; line-height: 1.6; max-width: 320px; margin-bottom: 20px; }

.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a { font-size: 14px; color: var(--text-muted); }
.footer-contact a:hover { color: var(--accent-mint); }

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 14px;
  color: #fff;
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--text-muted); }
.footer-col a:hover { color: var(--accent-mint); }

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
}

.footer-nav { display: flex; gap: 24px; }
.footer-nav a { font-size: 13px; color: var(--text-muted); }
.footer-nav a:hover { color: var(--text-primary); }

.footer-copy { font-size: 13px; color: var(--text-muted); }

.footer-social { display: flex; flex-direction: row; flex-shrink: 0; flex-wrap: nowrap; gap: 14px; }
.footer-social a {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  color: var(--text-muted);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer-social a:hover { color: var(--accent-mint); border-color: var(--accent-mint); }
.footer-social svg { width: 16px; height: 16px; }

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ===== Mobile nav overlay ===== */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 105;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: rgba(5,10,11,0.98);
    backdrop-filter: blur(20px);
    visibility: hidden;
    transition: visibility 0s linear 0.2s;
  }
  .main-nav.open {
    visibility: visible;
    transition-delay: 0s;
  }
  /* Fundalul apare/dispare instant (fără fade parțial-transparent peste conținutul
     paginii) — doar link-urile se animă, peste un fundal deja opac. */
  .main-nav a,
  .main-nav .mobile-cta {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .main-nav.open a,
  .main-nav.open .mobile-cta {
    opacity: 1;
    transform: translateY(0);
  }
  .main-nav a {
    font-size: 28px;
    padding: 14px 28px;
    text-transform: uppercase;
    font-family: var(--font-display);
    font-weight: 800;
    color: #fff;
  }
  .main-nav a:hover { color: var(--accent-mint); background: none; }
  .main-nav .mobile-cta {
    display: inline-flex;
    margin-top: 24px;
  }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .why-us-inner,
  .contact-inner { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .header-actions { display: none; }
  .partner-strip-inner { gap: 32px; }
  body { padding-top: 84px; }
}

@media (max-width: 640px) {
  .hero { padding-top: 100px; }
  .header-inner { height: 52px; }
  .logo img { height: 32px; }
  section { padding: 64px 0; }
  .testimonial-stack { height: 460px; }
  .testimonial-quote { font-size: 15px; }
  .partner-strip-inner { flex-direction: column; gap: 24px; }
  .partner-stats { width: 100%; justify-content: center; }

  /* Rezultate — o singură capsulă vizibilă (cea activă), se schimbă cu cardul */
  .results-carousel { padding: 28px 20px 24px; }
  .results-slide-head { flex-direction: column; align-items: flex-start; gap: 10px; margin-bottom: 32px; }
  .results-tab { display: none; }
  .results-tab.active { display: inline-flex; align-items: center; }
  .results-slide-metrics { justify-items: center; align-items: start; gap: 10px; }
  .results-metric { width: 100%; align-items: center; text-align: center; }
  .results-metric-num { font-size: 22px; line-height: 1.15; overflow-wrap: break-word; word-break: break-word; }
  .results-metric-label { font-size: 10.5px; line-height: 1.3; overflow-wrap: break-word; }
  .results-pagination { flex-direction: column; align-items: center; gap: 16px; }
  .results-grid,
  .process-grid,
  .process-grid.cols-3,
  .blog-grid,
  .testimonials-grid { grid-template-columns: 1fr; }
  .portfolio-track { gap: 40px; }
  .portfolio-track img { height: 58px; }
  .results-slide-ghost { display: none; }
  .service-header { gap: 14px; }
  .service-title { font-size: 19px; }
  .service-icon { width: 38px; height: 38px; }
  .service-icon svg { width: 18px; height: 18px; }
  .service-panel-inner { padding-left: 0; }
  .service-link { justify-self: start; }
  .why-us-p, .section-title { text-align: left; }
  .final-stats { gap: 28px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 32px; }
  .compare-row { grid-template-columns: 1fr; gap: 10px; }
  .compare-row > span:first-child { font-size: 13px; opacity: 0.55; }
}
