/* webadmin.md — stiluri (referință: Landing webadmin.dc.html + mockup) */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--wa-font-body);
  font-size: var(--wa-body);
  background: var(--wa-bg-dark);
  color: var(--wa-text-on-dark);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}

body.nav-open { overflow: hidden; }

h1, h2, h3, h4 {
  font-family: var(--wa-font-heading);
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  font-weight: 700;
}

h1 { font-size: clamp(38px, 5vw, var(--wa-h1)); line-height: 1.03; letter-spacing: -0.025em; }
h2 { font-size: clamp(30px, 4vw, var(--wa-h2)); line-height: 1.08; color: var(--wa-text-on-light); letter-spacing: -0.022em; }
h3 { font-size: var(--wa-h3); line-height: 1.2; }

h2.on-dark, h1.on-dark, .section-dark > .container > h2 { color: #fff; }

p { margin: 0 0 16px; line-height: 1.65; }
p:last-child { margin-bottom: 0; }

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

.container { max-width: var(--wa-max-width); margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 860px; margin-left: auto; margin-right: auto; }
.container-faq { max-width: var(--wa-faq-max); }

.section { padding: clamp(56px, 8vw, var(--wa-section-padding)) 0; }
.section-dark { background: var(--wa-bg-dark); color: var(--wa-text-on-dark); }
.section-light { background: var(--wa-bg-light); color: var(--wa-text-on-light); }
.section-white { background: #FFFFFF; color: var(--wa-text-on-light); }
.section-reviews { background: #17131A; color: var(--wa-text-on-dark); }

.section-intro { max-width: 640px; margin-bottom: 50px; }
.section-intro-wide { max-width: 720px; margin-bottom: 64px; }
.section-intro-center { max-width: 620px; margin-left: auto; margin-right: auto; margin-bottom: 50px; text-align: center; }
.container-faq { max-width: 820px; }

.section-head { max-width: 640px; margin-bottom: 50px; }
.section-head-center { max-width: 620px; margin-left: auto; margin-right: auto; text-align: center; }
.section-head .section-sub { margin-bottom: 0; }

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.kicker {
  font-size: var(--wa-kicker);
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--wa-accent);
  margin-bottom: 14px;
}

.section-dark .kicker { color: var(--wa-accent-light); }

.lead {
  font-size: var(--wa-body-lg);
  color: var(--wa-text-secondary-on-dark);
  max-width: 620px;
  margin-bottom: 0;
}

.section-light .lead,
.section-white .lead,
.section-light .section-sub,
.section-white .section-sub {
  font-size: var(--wa-body-lg);
  color: var(--wa-text-secondary-on-light);
  max-width: 640px;
}

.section-sub { margin-bottom: 36px; }

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(40, 199, 111, .18); }
  50% { box-shadow: 0 0 0 7px rgba(40, 199, 111, .08); }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 18, 23, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--wa-border-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo { flex-shrink: 0; line-height: 0; }

.logo img {
  height: 58px;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, .65)) drop-shadow(0 0 18px rgba(255, 255, 255, .35));
}

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

.main-nav a {
  color: #C9C2C8;
  text-decoration: none;
  font-size: 15.5px;
  font-weight: 500;
  white-space: nowrap;
  transition: color .15s;
}

.main-nav a:hover { color: #fff; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.lang-switch {
  display: flex;
  gap: 2px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--wa-border-dark);
  border-radius: 8px;
  padding: 3px;
  flex-shrink: 0;
}

.lang-switch a {
  padding: 6px 11px;
  font-size: 12.5px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  color: #A79FA6;
  font-family: var(--wa-font-heading);
  transition: background .15s, color .15s;
}

.lang-switch a.active { background: var(--wa-accent); color: #fff; }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--wa-border-dark);
  border-radius: 10px;
  background: rgba(255, 255, 255, .05);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #F1ECEF;
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Butoane */
.btn {
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: var(--wa-radius-button);
  font-size: 16px;
  font-family: var(--wa-font-body);
  text-align: center;
  transition: filter .15s, transform .15s, background .15s;
}

.btn-primary {
  background: var(--wa-accent);
  color: #fff;
  padding: 15px 28px;
  box-shadow: 0 12px 30px -10px rgba(160, 21, 35, .8);
  border: 1px solid rgba(255, 255, 255, .14);
}

.btn-primary:hover { filter: brightness(1.08); }

.btn-ghost {
  background: rgba(255, 255, 255, .06);
  color: #F1ECEF;
  padding: 15px 28px;
  border: 1px solid rgba(255, 255, 255, .14);
}

.btn-ghost:hover { background: rgba(255, 255, 255, .06); }

.btn-nav { padding: 11px 20px; font-size: 14px; white-space: nowrap; border-radius: 9px; }
.btn-lg { font-size: 16.5px; }
.btn-submit { text-transform: uppercase; letter-spacing: .5px; font-weight: 700; }

/* Hero */
.hero {
  background:
    radial-gradient(900px 480px at 50% -10%, rgba(160, 21, 35, .24), transparent 62%),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    var(--wa-bg-dark);
  background-size: auto, 46px 46px, 46px 46px, auto;
  text-align: center;
}

.hero-centered h1 {
  font-size: clamp(38px, 5vw, var(--wa-h1));
  line-height: 1.03;
  letter-spacing: -1.8px;
  margin-bottom: 26px;
}

.hero-inner {
  max-width: var(--wa-hero-max);
  padding-top: clamp(72px, 10vw, 96px);
  padding-bottom: clamp(56px, 8vw, 78px);
}

.hero h1 { max-width: 900px; margin-left: auto; margin-right: auto; }

.hero .lead {
  margin-left: auto;
  margin-right: auto;
  color: var(--wa-text-secondary-on-dark);
}

.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
  color: #D8D2D7;
}

.badge-live .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wa-success);
  animation: wa-pulse 2.4s ease-in-out infinite;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin: 36px 0 26px;
  flex-wrap: wrap;
}

.trust-points {
  display: flex;
  gap: 24px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  flex-wrap: wrap;
  color: #C0B9BF;
  font-size: 15.5px;
}

.trust-points li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-points li::before { content: none; }

.trust-points li svg {
  color: var(--wa-accent);
  flex-shrink: 0;
}

.trust-points li:has(svg)::before { display: none; }
.trust-points svg { color: var(--wa-accent); flex-shrink: 0; }

/* Page head (interior) */
.page-head { padding-top: clamp(48px, 7vw, 72px); padding-bottom: clamp(40px, 6vw, 56px); }
.page-head .back { margin-bottom: 20px; }
.page-head .btn { margin-top: 28px; }

/* Servicii */
.services-section,
.services-home { padding-top: 82px; padding-bottom: 90px; }

.services-grid,
.services-home-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.section-head,
.section-intro { max-width: 640px; margin-bottom: 50px; }
.section-intro-wide { max-width: 720px; margin-bottom: 64px; }
.section-intro-center,
.section-head-center { max-width: 620px; margin-left: auto; margin-right: auto; margin-bottom: 50px; text-align: center; }
.section-intro .section-sub,
.section-head .section-sub { margin-bottom: 0; }

.card-service-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: center;
  gap: 44px;
  text-decoration: none;
  padding: 58px 60px;
  border-radius: var(--wa-radius-featured);
  background:
    radial-gradient(700px 360px at 85% -10%, rgba(160, 21, 35, .35), transparent 60%),
    var(--wa-bg-dark);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .5);
  transition: transform .18s;
}

.card-service-featured:hover { transform: translateY(-4px); }

.card-service-featured.card-dark {
  background:
    radial-gradient(700px 360px at 85% -10%, rgba(160, 21, 35, .35), transparent 60%),
    var(--wa-bg-dark);
  border: none;
  color: var(--wa-text-on-dark);
}

.card-service-featured .featured-body { text-align: left; }

.featured-num {
  display: block;
  font-family: var(--wa-font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--wa-accent-light);
  letter-spacing: .5px;
  margin-bottom: 18px;
}

.card-service-featured h3 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 18px;
  color: #fff;
  letter-spacing: -0.025em;
}

.card-service-featured p {
  font-size: 19px;
  color: var(--wa-text-secondary-on-dark);
  margin-bottom: 0;
  max-width: 560px;
}

.card-service-featured .more-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  color: #fff;
  font-family: var(--wa-font-heading);
  font-weight: 600;
  font-size: 17px;
}

.card-service-featured .more-link .arrow { color: var(--wa-accent-light); }

.featured-icon-wrap { display: flex; justify-content: flex-end; }

.featured-icon-box {
  width: 132px;
  height: 132px;
  border-radius: 30px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  color: var(--wa-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-service-featured > .featured-icon-box {
  justify-self: end;
  align-self: center;
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.service-icon,
.service-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(160, 21, 35, .09);
  border-radius: 20px;
  color: var(--wa-accent);
  flex-shrink: 0;
}

.service-num {
  font-family: var(--wa-font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--wa-accent-light);
  letter-spacing: .5px;
}

.service-num.muted { color: #C7BDB9; }

.card-service-home { padding: 46px 48px; }

/* Carduri */
.card {
  background: #fff;
  border: 1px solid var(--wa-border-light);
  border-radius: var(--wa-radius-card-lg);
  padding: 34px 30px;
}

.card-dark {
  background: var(--wa-bg-card-dark);
  border-color: var(--wa-border-dark);
  color: var(--wa-text-on-dark);
}

.card-service {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform .18s, box-shadow .18s, border-color .18s;
  height: 100%;
  padding: 46px 48px;
}

.card-service:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 50px -24px rgba(50, 20, 25, .3);
  border-color: rgba(160, 21, 35, .35);
}

.card-service h3 {
  font-size: 30px;
  font-weight: 600;
  color: var(--wa-text-on-light);
  letter-spacing: -.6px;
  margin-bottom: 14px;
}

.card-service p {
  color: var(--wa-text-secondary-on-light);
  font-size: 17.5px;
  flex: 1;
  margin-bottom: 0;
  line-height: 1.62;
}

.card-service .more-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--wa-accent);
  font-family: var(--wa-font-heading);
  font-weight: 600;
  font-size: 16.5px;
  margin-top: 24px;
}

.more-link .arrow { color: inherit; }

/* Statistici — referință: Site complet.html STATS BAND */
.stats-band {
  background: var(--wa-stats-bg);
  padding: 64px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-inner {
  max-width: var(--wa-stats-max);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stats-band .stat { text-align: center; }

.stats-band .stat-value {
  display: block;
  font-family: var(--wa-font-heading);
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 700;
  letter-spacing: -1.8px;
  color: var(--wa-accent);
  line-height: 1;
  margin: 0 0 6px;
  white-space: nowrap;
}

.stats-band .stat-label {
  display: block;
  font-size: 16.5px;
  color: var(--wa-stats-label);
  line-height: 1.65;
}

/* Proces */
.process-section { padding-top: 96px; padding-bottom: 100px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step-num {
  font-family: var(--wa-font-heading);
  font-size: 76px;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(196, 48, 64, .55);
  display: block;
  margin-bottom: 22px;
  letter-spacing: -2px;
}

.step {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 30px 36px;
  border-radius: 20px;
  transition: transform .18s, border-color .18s;
}

.step:hover {
  transform: translateY(-5px);
  border-color: rgba(196, 48, 64, .5);
}

.step-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-top: 18px;
  border-top: 1px solid var(--wa-border-dark);
  margin-top: auto;
}

.step-meta svg { color: var(--wa-accent-light); flex-shrink: 0; }

.step-meta span {
  font-size: 13.5px;
  font-weight: 600;
  color: #C9C2C8;
  letter-spacing: .2px;
}

.step-circle-arrow {
  position: absolute;
  top: 44px;
  right: -15px;
  z-index: 2;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--wa-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 6px 16px -4px rgba(160, 21, 35, .7);
}

.step h3 { color: #fff; font-size: 24px; font-weight: 600; margin-bottom: 10px; }
.step p { color: var(--wa-text-muted-on-dark); font-size: 16px; flex: 1; margin-bottom: 20px; line-height: 1.62; }

.step-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-top: 18px;
  border-top: 1px solid var(--wa-border-dark);
  color: var(--wa-accent-light);
  font-family: var(--wa-font-heading);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  margin-top: auto;
}

.step-link:hover { color: #fff; }

.step-card { position: relative; }

.step-circle-arrow {
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--wa-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(227, 30, 36, .4);
}

.step-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--wa-border-dark);
  margin-top: auto;
  color: var(--wa-accent-light);
  font-size: 14px;
  font-weight: 600;
}

.step-meta svg { flex-shrink: 0; }

/* Recenzii */
.reviews-section { background: #17131A; padding: 84px 0; }

.review .stars { color: var(--wa-accent-light); margin-bottom: 16px; letter-spacing: 2px; font-size: 14px; }
.review p { color: #D8D2D7; font-size: 17.5px; font-style: italic; margin-bottom: 22px; line-height: 1.68; flex: 1; }
.review { display: flex; flex-direction: column; border-radius: 16px; padding: 28px; }
.review .author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review .author strong { display: block; color: #F1ECEF; margin-bottom: 4px; font-size: 16.5px; }
.review .author span { color: var(--wa-text-muted-on-dark); font-size: 14.5px; }

.avatar,
.avatar-lg {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wa-font-heading);
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  flex-shrink: 0;
}

/* Clienți + FAQ */
.clients-section,
.section-clients { padding-top: 78px; padding-bottom: 20px; }

.clients-heading {
  text-align: center;
  font-size: 15px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--wa-text-muted-on-light);
  font-weight: 600;
  margin-bottom: 32px;
}

.client-logo {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: #fff;
  border-radius: 16px;
  transition: transform .18s, box-shadow .18s;
}

.client-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -18px rgba(50, 20, 25, .25);
}

.client-logo img { max-height: 72px; width: auto; object-fit: contain; }

.client-placeholder {
  color: var(--wa-text-muted-on-light);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
}

.clients-more-wrap {
  text-align: center;
  margin-top: 28px;
}

.clients-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Pagina Clienți */
.clients-page-head { padding-bottom: 52px; }

.clients-page { padding-top: 56px; padding-bottom: 96px; }

.clients-page-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.client-card {
  padding: 32px 24px 26px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: var(--wa-radius-card-lg);
  transition: transform .18s, box-shadow .18s, border-color .18s;
}

.client-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -22px rgba(50, 20, 25, .22);
  border-color: rgba(227, 30, 36, .22);
}

.client-card-logo {
  height: 104px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  margin-bottom: 16px;
  background: transparent;
}

.client-card-logo img {
  max-height: 92px;
  max-width: 240px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.client-card-logo.client-placeholder {
  background: var(--wa-bg-light);
  border-radius: var(--wa-radius-card);
  border: 1px dashed var(--wa-border-light);
}

.client-card-initial {
  font-family: var(--wa-font-heading);
  font-size: 30px;
  font-weight: 700;
  color: var(--wa-text-muted-on-light);
  line-height: 1;
}

.client-card-body {
  padding: 0;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.client-card-name {
  font-family: var(--wa-font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin: 0;
  color: var(--wa-text-muted-on-light);
}

.client-card-services {
  width: 100%;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--wa-border-light);
}

.client-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: stretch;
}

.client-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1.3;
  padding: 7px 13px;
  border-radius: 100px;
  background: #fff;
  border: 1px solid var(--wa-border-light);
  color: var(--wa-text-secondary-on-light);
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 1px 2px rgba(17, 17, 17, .04);
  transition: border-color .15s, color .15s, background .15s, box-shadow .15s, transform .15s;
}

a.client-tag:hover {
  border-color: var(--wa-accent);
  color: var(--wa-accent);
  background: rgba(227, 30, 36, .04);
  box-shadow: 0 3px 10px rgba(227, 30, 36, .1);
  transform: translateY(-1px);
}

.client-tag-muted {
  background: var(--wa-bg-light);
  color: var(--wa-text-muted-on-light);
}

.client-card:hover .client-card-services {
  border-top-color: rgba(227, 30, 36, .12);
}

.clients-empty {
  text-align: center;
  color: var(--wa-text-muted-on-light);
  font-size: 16px;
  padding: 40px 0;
}

.faq-section { padding: 84px 0; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  padding: 0;
  border-radius: 13px;
  overflow: hidden;
  transition: border-color .15s;
}

.faq-item[open] { border-color: rgba(227, 30, 36, .25); }

.faq-item summary {
  font-family: var(--wa-font-heading);
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--wa-text-on-light);
  padding: 24px 26px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--wa-accent);
  flex-shrink: 0;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item p,
.faq-panel p {
  color: var(--wa-text-secondary-on-light);
  margin: 0;
  padding: 0 26px 24px;
  font-size: 17px;
  line-height: 1.65;
}

.faq-trigger {
  width: 100%;
  text-align: left;
  padding: 24px 26px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--wa-font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--wa-text-on-light);
}

.faq-icon {
  font-size: 24px;
  font-weight: 400;
  color: var(--wa-accent);
  flex-shrink: 0;
  line-height: 1;
  transition: transform .15s;
}

.faq-item.is-open { border-color: rgba(160, 21, 35, .25); }
.faq-item.is-open .faq-icon { transform: none; }
.faq-item.is-open .faq-icon::before { content: '−'; }
.faq-item:not(.is-open) .faq-icon::before { content: '+'; }
.faq-icon { font-size: 0; }
.faq-icon::before { font-size: 24px; display: block; }

/* Contact */
.contact-section {
  background:
    radial-gradient(700px 400px at 80% 20%, rgba(160, 21, 35, .18), transparent 60%),
    var(--wa-bg-dark);
  padding: 88px 0;
}

.contact-inner {
  max-width: var(--wa-contact-max);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-details .label {
  display: block;
  font-size: 14px;
  color: var(--wa-text-muted-on-dark);
  letter-spacing: .3px;
  margin-bottom: 4px;
}

.contact-details strong { color: #F1ECEF; font-weight: 600; font-size: 18px; }
.contact-details a { color: #F1ECEF; text-decoration: none; }
.contact-details a:hover { color: var(--wa-accent-light); }

.contact-icon,
.contact-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  color: var(--wa-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-block { width: 100%; }

.form-card {
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .7);
}

.form-card form { display: flex; flex-direction: column; gap: 16px; }

.form-card label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14.5px;
  color: var(--wa-text-secondary-on-dark);
}

.form-card input,
.form-card textarea {
  padding: 13px 15px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--wa-radius-input);
  color: #F1ECEF;
  font-size: 16px;
  font-family: inherit;
  width: 100%;
  transition: border-color .15s;
}

.form-card textarea { resize: vertical; min-height: 120px; }

.form-card input:focus,
.form-card textarea:focus {
  outline: none;
  border-color: var(--wa-accent);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-success { text-align: center; padding: 40px 10px; }
.form-success strong { display: block; font-size: 24px; margin-bottom: 10px; color: #fff; }
.form-success p { color: var(--wa-text-secondary-on-dark); }

.form-error {
  padding: 12px 14px;
  margin-bottom: 4px;
  border-radius: 8px;
  background: rgba(227, 30, 36, .15);
  border: 1px solid rgba(227, 30, 36, .35);
  color: #ffb4b4;
  font-size: 14px;
}


.contact-card { text-decoration: none; transition: border-color .15s, transform .15s; }
.contact-card:hover { border-color: rgba(227, 30, 36, .4); transform: translateY(-2px); }
.contact-card .label { display: block; font-size: 13px; color: var(--wa-text-muted-on-dark); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .8px; }
.contact-card strong { font-size: 17px; color: #F1ECEF; font-weight: 600; }

.map-embed,
.map-placeholder {
  width: 100%;
  height: 320px;
  border: none;
  border-radius: 16px;
  margin-top: 44px;
  background: var(--wa-bg-card-dark);
}

.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wa-text-muted-on-dark);
}

/* Pagini interioare */
.services-page-head,
.blog-page-head {
  background:
    radial-gradient(900px 400px at 50% -10%, rgba(160, 21, 35, .2), transparent 60%),
    var(--wa-bg-dark);
  padding-top: 64px;
  padding-bottom: 56px;
}

.contact-page-info { padding-top: 0; }

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px;
  border-radius: 16px;
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(160, 21, 35, .16);
  color: var(--wa-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 44px;
  align-items: start;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #E2DAD6;
  color: #33292F;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  margin-bottom: 38px;
  transition: border-color .15s;
}

.back-btn:hover { border-color: var(--wa-accent); }

.post-article-card {
  padding: 54px 58px;
  border-radius: 22px;
}

.post-meta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.post-meta-row .cat {
  background: rgba(160, 21, 35, .09);
  color: var(--wa-accent);
  font-size: 13.5px;
  font-weight: 700;
  padding: 6px 13px;
  border-radius: 100px;
}

.post-meta-row .post-date,
.post-meta-row .post-read,
.card-post-foot span:first-child {
  font-size: 14px;
  color: var(--wa-text-muted-on-light);
}

.card-post {
  padding: 18px 18px 26px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-post-image {
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.card-post-image img {
  height: 175px;
  width: 100%;
  object-fit: cover;
  margin: 0;
}

.card-post-image.no-image { display: none; }

.card-post-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.read-more {
  color: var(--wa-accent);
  font-family: var(--wa-font-heading);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}

.blog-layout { grid-template-columns: 1fr 350px; gap: 44px; }

/* Serviciu detaliu */
.included-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16.5px;
  color: var(--wa-text-on-light);
  padding: 22px 24px;
}

.included-item .check {
  color: var(--wa-accent);
  font-weight: 700;
  flex-shrink: 0;
}

.benefit-card h3 { font-size: 20px; margin-bottom: 10px; }
.benefit-card p { color: var(--wa-text-secondary-on-light); font-size: 16px; }

.pill-dark {
  background: rgba(255, 255, 255, .06);
  border-color: var(--wa-border-dark);
  color: #F1ECEF;
}

/* Blog */
.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 36px;
  align-items: start;
}

.blog-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 96px; }

.sidebar-card { padding: 28px 24px; }
.sidebar-card h3 { font-size: 18px; margin-bottom: 16px; color: var(--wa-text-on-light); }

.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-list a {
  text-decoration: none;
  color: var(--wa-text-secondary-on-light);
  font-size: 15px;
  line-height: 1.45;
  transition: color .15s;
}

.sidebar-list a:hover { color: var(--wa-accent); }

.sidebar-cta { text-align: center; }
.sidebar-cta p { font-size: 15px; color: var(--wa-text-secondary-on-light); margin-bottom: 18px; }
.sidebar-cta .btn { width: 100%; }

.card-post img {
  height: 175px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 16px;
}

.card-post h2 { font-size: 24px; line-height: 1.2; }
.card-post h2 a { text-decoration: none; color: inherit; transition: color .15s; }
.card-post h2 a:hover { color: var(--wa-accent); }
.card-post > p { color: var(--wa-text-secondary-on-light); font-size: 16px; }

.post-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--wa-text-muted-on-light);
}

.post-meta .cat {
  background: rgba(160, 21, 35, .09);
  color: var(--wa-accent);
  font-size: 13.5px;
  font-weight: 700;
  padding: 6px 13px;
  border-radius: 100px;
}

.post-article h1 { font-size: clamp(32px, 4vw, 48px); color: var(--wa-text-on-light); }

.post-hero {
  width: 100%;
  height: 370px;
  object-fit: cover;
  border-radius: 14px;
  margin: 28px 0;
}

.post-body h2 { font-size: 30px; margin-top: 40px; }
.post-body p { font-size: 18px; color: #3d3339; }

.back {
  display: inline-block;
  margin-bottom: 24px;
  color: inherit;
  opacity: .7;
  text-decoration: none;
  font-size: 15px;
  transition: opacity .15s;
}

.back:hover { opacity: 1; }

.section-dark .back { color: #C9C2C8; }

/* Pills + footer */
.pill-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }

.pill {
  background: #fff;
  border: 1px solid var(--wa-border-light);
  padding: 14px 22px;
  border-radius: 100px;
  text-decoration: none;
  font-family: var(--wa-font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--wa-text-on-light);
  transition: border-color .15s, color .15s;
}

.pill:hover { border-color: var(--wa-accent); color: var(--wa-accent); }

.site-footer {
  background: var(--wa-footer);
  border-top: 1px solid var(--wa-border-dark);
  padding: 56px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.footer-col h4 {
  font-family: var(--wa-font-heading);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: #EAE5E9;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col a {
  color: #8A828A;
  text-decoration: none;
  font-size: 14px;
  transition: color .15s;
}

.footer-col a:hover { color: #F1ECEF; }

.footer-brand img {
  height: 42px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, .65)) drop-shadow(0 0 18px rgba(255, 255, 255, .35));
}

.footer-brand p { color: #8A828A; max-width: 280px; font-size: 14.5px; line-height: 1.6; }

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  color: #6B636A;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: #6B636A;
  text-decoration: none;
  transition: color .15s;
}

.footer-legal a:hover { color: #C9C2C8; }

/* Responsive */
@media (max-width: 1024px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .card-service-featured { grid-template-columns: 1fr; padding: 42px 36px; }
  .featured-icon-wrap,
  .card-service-featured .featured-icon-box { justify-content: flex-start; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step-circle-arrow { display: none; }
}

@media (max-width: 1100px) {
  .clients-page-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .clients-page-grid { grid-template-columns: repeat(2, 1fr); }

  .main-nav {
    position: fixed;
    inset: 68px 0 auto 0;
    background: rgba(10, 10, 10, .98);
    border-bottom: 1px solid var(--wa-border-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 28px 24px;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .22s, opacity .22s;
    z-index: 99;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    font-size: 17px;
  }

  .header-inner { gap: 12px; }
  .header-actions .btn-nav { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .grid, .grid-2 { grid-template-columns: 1fr; }
  .clients-page-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .form-row { grid-template-columns: 1fr !important; }
  .stats-inner { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .trust-points { flex-direction: column; gap: 10px; }
  .container { padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .card-service { padding: 32px 28px; }
}
