/* ==========================================================================
   Expert Advantage Group — site.css
   Rescriere statică a sitului expertadvantage.ro (fost WordPress/Elementor).
   Valorile (fonturi, culori, dimensiuni) sunt măsurate din situl vechi.
   ========================================================================== */

@import url('../fonts/fonts.css?v=2');

:root {
  --navy: #004152;          /* titluri */
  --ink: #203556;           /* accente: liste, contoare, acordeon, proces */
  --body: #474f72;          /* text curent */
  --line: #d9dde6;          /* linii separatoare */
  --line-soft: #ebebeb;
  --teal: rgba(15, 180, 176, .28);
  --beige: #e8dad3;         /* hover meniu */
  --white: #fff;
  --grey-bg: #f7f7f7;
  --blue-btn: #066aab;
  --font-body: 'Heebo', sans-serif;
  --font-head: 'Libre Franklin', sans-serif;
  --font-ui: 'Space Grotesk', sans-serif;
  --font-num: 'Oswald', sans-serif;
  --font-marquee: 'Bebas Neue', sans-serif;
  --header-h: 90px;
  --container: 1280px;
  --container-pad: 80px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 20px; }
ul { margin: 17px 0 20px; padding-left: 27px; }
li { margin: 0; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); color: var(--navy); margin: 0; }
strong, b { font-weight: 700; }
button { font: inherit; cursor: pointer; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.container { width: min(var(--container), calc(100% - 2 * var(--container-pad))); margin: 0 auto; padding: 0 10px; }
.container--narrow { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* ---------- header ---------- */
.site-header {
  position: relative;
  z-index: 1000;
  height: var(--header-h);
  color: var(--white);
  background: #0b1420;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
}
.site-header::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(130deg, #0a0000 30%, #047dce 100%);
  opacity: .6;
  pointer-events: none;
}
.site-header__inner {
  position: relative;
  display: flex;
  align-items: stretch;
  height: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.site-header__brand {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 24px;
  flex: 0 0 auto;
}
.site-header__brand::after {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 1px; background: #fff; opacity: .2;
}
.site-header__brand img { width: 111px; height: 50px; margin-top: -2px; }
.site-header__social {
  display: flex; align-items: center;
  margin-left: 24px;
  padding-right: 24px;
  position: relative;
}
.site-header__social a {
  display: block; width: 24px; height: 30px;
  opacity: .8;
  transition: opacity .2s;
}
.site-header__social a:hover { opacity: 1; }
.site-header__social svg { width: 16px; height: 16px; fill: #fff; margin: 7px auto 0; }
.site-nav { margin-left: auto; padding-right: 32px; }
.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; height: 100%; }
.site-nav li { margin-left: -4px; }
.site-nav a {
  position: relative;
  display: block;
  padding: 0 16px;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 600;
  line-height: var(--header-h);
  color: #fff;
  z-index: 10;
  transition: color .25s;
}
.site-nav a::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0;
  height: 0;
  background: var(--beige);
  transform: skewX(25deg);
  z-index: -1;
  transition: height .25s ease;
}
.site-nav a:hover { color: #0a0a0a; }
.site-nav a:hover::before { height: 100%; }
.site-nav li.is-active a::before { height: 100%; background: var(--teal); }
.site-nav li.is-active a:hover::before { background: var(--beige); }
.menu-toggle {
  display: none;
  position: relative;
  width: 52px; height: 50px;
  margin: 0 0 0 auto;
  background: none; border: 0; padding: 0;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  position: absolute; left: 18px; width: 16px; height: 2px; background: #fff;
  transition: transform .25s, opacity .25s;
}
.menu-toggle span { top: 24px; }
.menu-toggle span::before, .menu-toggle span::after { content: ''; left: 0; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
/* header sticky (clona din original): fix imediat la scroll (90px), compact (74px, logo mic) după ~350px */
body.is-scrolled { padding-top: var(--header-h); }
body.is-scrolled .site-header {
  position: fixed; top: 0; left: 0; right: 0;
  background: #0a0a0a; border-bottom: 0;
  box-shadow: 0 0 8px rgba(0, 0, 0, .1);
  transition: height .25s ease;
}
body.is-compact .site-header { height: 74px; }
body.is-compact .site-header__brand img { width: 49px; height: 22px; margin-top: 0; }
body.is-compact .site-nav a { line-height: 74px; }
body.is-compact .site-header__social svg { margin-top: 4px; }
.site-header__brand img, .site-nav a { transition: width .25s, height .25s, line-height .25s; }
body.menu-open .menu-toggle span { background: transparent; }
body.menu-open .menu-toggle span::before { transform: translateY(6px) rotate(45deg); }
body.menu-open .menu-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------- hero slideshow (Home, skin "slide") ---------- */
.hero { position: relative; overflow: hidden; background: #1b1b1b; margin-top: calc(-1 * var(--header-h) - 1px); }
.hero__slides { list-style: none; margin: 0; padding: 0; position: relative; width: 100%; height: calc(100vh + 2px); min-height: 640px; }
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1s ease;
  display: flex; align-items: center; justify-content: center;
}
.hero__slide.is-active { opacity: 1; z-index: 1; }
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform-origin: center left;
}
.hero__slide.is-active .hero__bg { animation: kenburns 15s ease-out both; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.2); } }
.hero__overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, .37); }
.hero__shape {
  position: absolute; left: 20%; top: 0; width: 30%; height: 70%;
  background: var(--teal);
}
.hero__content { position: relative; z-index: 2; max-width: 1066px; margin: 0 50px; text-align: center; }
.hero__title {
  font-size: 96px; line-height: 1; font-weight: 600; letter-spacing: -3px;
  color: #fff; padding-bottom: 20px; margin: 0 0 34px;
}
.hero__excerpt { display: none; }
.hero__box {
  position: absolute; right: 0; bottom: 0; z-index: 3;
  width: 40%; min-height: 245px;
  background: #fff;
  padding: 30px 30px 30px 28px;
  display: none;
  gap: 20px;
}
.hero__slide.is-active .hero__box { display: flex; }
.hero__box p { font-size: 16px; line-height: 1.7; color: var(--ink); margin: 0; flex: 0 0 410px; padding-right: 20px; border-right: 1px solid var(--ink); }
.hero__box a { font-size: 13px; color: var(--ink); align-self: flex-start; padding-left: 0; }
.hero__box a:hover { text-decoration: underline; }
.hero__arrows { position: absolute; right: 100px; top: 50%; z-index: 4; transform: translateY(-50%); display: flex; flex-direction: column; gap: 15px; }
.hero__arrow {
  width: 60px; height: 60px; border: 1px solid rgba(255,255,255,.6); background: transparent;
  display: flex; align-items: center; justify-content: center; color: #fff; padding: 0;
  transition: background .2s;
}
.hero__arrow:hover { background: rgba(255,255,255,.15); }
.hero__arrow svg { width: 14px; height: 14px; stroke: #fff; fill: none; stroke-width: 1.5; }
.hero__dots { position: absolute; left: 100px; bottom: 95px; z-index: 4; list-style: none; margin: 0; padding: 0; }
.hero__dots li { position: relative; height: 22px; display: flex; align-items: center; }
.hero__dots button { width: 10px; height: 10px; padding: 0; border: 0; background: transparent; position: relative; }
.hero__dots button::after { content: ''; position: absolute; left: 3px; top: 3px; width: 4px; height: 4px; border-radius: 50%; background: #fff; }
.hero__dots li.is-active button::after { content: none; }
.hero__dots li.is-active { padding-left: 2px; }
.hero__dots li.is-active button { width: 4px; height: 22px; background: #fff; }
.hero__dots li.is-active span { display: inline; color: #fff; font-size: 16px; margin-left: 10px; font-family: var(--font-body); }
.hero__dots li span { display: none; }

/* ---------- page banner slideshow (subpagini, skin "general") ---------- */
.banner { position: relative; overflow: hidden; width: 100%; height: calc(100vw * 5 / 16); min-height: 480px; }
.banner__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; }
.banner__slide.is-active { opacity: 1; }
.banner__slide .hero__bg { transform-origin: center left; }
.banner__slide.is-active .hero__bg { animation: kenburns-rev 15s ease-out both; }
@keyframes kenburns-rev { from { transform: scale(1.2); } to { transform: scale(1); } }
.banner--static { height: 545px; min-height: 0; margin-top: calc(-1 * var(--header-h) - 50px); background-size: cover; background-position: center; }

/* ---------- secțiuni generice ---------- */
.section { padding: 86px 0; }
.section--tight { padding: 58px 0 40px; }
.section--tight.section--after-banner { padding-top: 10px; }
.section--pad-bottom { padding-bottom: 259px; }
.section--gap-footer { margin-bottom: 160px; }
.section--content { padding: 26px 0 60px; }
.section--content.section--careers { padding-top: 9px; }
.section-title { font-size: 50px; line-height: 1.2; font-weight: 800; color: var(--navy); margin: 0 0 25px; }
.section-title--sm { font-size: 26px; line-height: 1.1; font-weight: 800; }
.prose h2 { font-size: 50px; line-height: 1.2; font-weight: 800; margin: 0 0 25px; }
.prose p + h2, .prose ul + h2 { margin-top: 25px; }
.prose--about > * { max-width: 1254px; }
.prose h3 { font-size: 38px; line-height: 1.3; font-weight: 700; letter-spacing: -1px; margin: 0 0 19px; }
.prose h4 { font-size: 28px; line-height: 1.4; font-weight: 700; letter-spacing: -1px; margin: 0 0 14px; }
.prose * + h4 { margin-top: 14px; }
.prose .intro-p { margin-bottom: 44px; }
.prose h5 { font-size: 21px; line-height: 1.5; font-weight: 400; margin: 25px 0 10px; }
.prose em { font-style: italic; }
.prose img { margin: 20px 0; }
.prose a { text-decoration: underline; }
.divider { border: 0; border-top: 1px solid #333; margin: 35px 0; }
.divider--soft { border-top-color: var(--body); opacity: .6; }

/* link textual cu săgeată (ex: All Services) */
.link-arrow {
  display: inline-flex; align-items: center;
  font-size: 20px; font-weight: 500; line-height: 40px; color: var(--ink);
}
.link-arrow .link-arrow__text { position: relative; }
.link-arrow .link-arrow__text::after {
  content: ''; position: absolute; left: 0; bottom: 6px; width: 100%; height: 1px; background: currentColor;
  transform-origin: left; transition: transform .3s;
}
.link-arrow:hover .link-arrow__text::after { transform: scaleX(0); transform-origin: right; }
.link-arrow svg { width: 12px; height: 12px; margin-left: 10px; fill: currentColor; transition: transform .3s; }
.link-arrow:hover svg { transform: translateX(4px); }

/* buton outlined cu iconiță (ex: Apply Now, Say Hello) */
.btn-outline {
  display: inline-flex; align-items: center;
  border: 1px solid #fff; color: #fff;
  font-size: 20px; font-weight: 500; line-height: 1;
  padding: 0 0 0 30px; height: 64px;
  transition: background .3s, color .3s;
}
.btn-outline .btn-outline__text { position: relative; padding-right: 30px; }
.btn-outline .btn-outline__icon {
  display: flex; align-items: center; justify-content: center;
  width: 60px; height: 100%; border-left: 1px solid #fff;
}
.btn-outline svg { width: 10px; height: 10px; fill: currentColor; transition: transform .3s; }
.btn-outline:hover { background: #fff; color: var(--ink); }
.btn-outline:hover svg { transform: translateX(3px); fill: var(--ink); }

/* ---------- Home: Services & Solutions ---------- */
.services-intro { margin: 20px 0; padding: 86px 0; }
.services-intro .container { padding: 0; }
.services-intro__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 55px; }
.services-intro__head h2 { font-size: 26px; font-weight: 800; line-height: 1.1; }
.services-intro__grid { display: grid; grid-template-columns: repeat(3, 368px); gap: 0 24px; padding-left: 128px; }
.icon-list { list-style: none; margin: 0; padding: 0; }
.icon-list li { display: flex; align-items: center; line-height: 1.7; }
.icon-list svg { width: 14px; height: 14px; fill: var(--ink); flex: 0 0 auto; }
.icon-list span { padding-left: 5px; color: var(--ink); }
.counters { display: grid; grid-template-columns: repeat(3, 368px); gap: 0 24px; padding-left: 128px; margin-top: 40px; }
.counter__digit {
  font-family: var(--font-num); font-size: 116px; line-height: 1; font-weight: 400;
  color: transparent; -webkit-text-stroke: 2px var(--ink);
}
.counter__line { height: 1px; background: var(--line); margin: 10px 0; }
.counter h3 { font-size: 38px; font-weight: 500; line-height: 1.3; letter-spacing: -1px; margin-top: 34px; padding-bottom: 12px; white-space: nowrap; }

/* ---------- Home: marquee ---------- */
.marquee-band {
  position: relative; padding: 173px 0; background: #1c1d24 center / cover no-repeat;
}
.marquee-band::before { content: ''; position: absolute; inset: 0; background: rgba(10, 10, 10, .57); opacity: .84; }
.marquee { position: relative; overflow: hidden; white-space: nowrap; }
.marquee__track { display: inline-flex; animation: marquee 40s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  font-family: var(--font-marquee); font-size: 116px; line-height: 1.1; padding: 0 58px;
  color: transparent; -webkit-text-stroke: 1px #fffbfb;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Home: proces (4 pași) ---------- */
.process-section { padding: 124px 92px; margin: 60px 0; }
.process-section .container { width: auto; padding: 0; }
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0 29px; position: relative; }
.process__item { position: relative; padding-top: 13px; }
.process__icon-holder { position: relative; height: 100px; z-index: 5; }
.process__icon {
  position: relative; z-index: 3;
  width: 100px; height: 100px; margin: 0 auto; border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center;
}
.process__icon svg { width: 66px; height: 66px; fill: var(--ink); }
.process__num {
  position: absolute; left: 73px; bottom: 73px;
  width: 27px; height: 27px; border-radius: 50%; background: var(--ink); color: #fff;
  font-size: 15px; font-weight: 500; display: flex; align-items: center; justify-content: center;
}
.process__line { position: absolute; top: 50px; left: 50%; right: -50%; height: 1px; z-index: 2; }
.process__line::after { content: ''; display: block; height: 1px; background: var(--line); width: 0; transition: width 1.2s ease; }
.process.is-visible .process__line::after { width: 100%; }
.process__item:last-child .process__line { display: none; }
.process__item h3 { font-size: 20px; font-weight: 500; line-height: 1.3; letter-spacing: -.5px; margin: 22px 0 10px; color: var(--navy); }
.process__item p { font-size: 14px; line-height: 1.6; margin: 0; }

/* ---------- CTA band (Home: career / subpagini: project in mind) ---------- */
.cta-band {
  position: relative; padding: 126px 58px 143px; margin-top: 40px;
  background: center / cover no-repeat; color: #fff; text-align: center;
}
.cta-band::before { content: ''; position: absolute; inset: 0; background: rgba(0, 0, 0, .43); opacity: .88; }
.cta-band .container { position: relative; max-width: 1326px; padding: 0 20px; }
.cta-band h1 { font-size: 72px; line-height: 1; font-weight: 800; color: #fff; margin: 0 0 8px; }
.cta-band h2 { font-size: 26px; line-height: 31px; font-weight: 500; color: #fff; margin: 0 0 27px; }
@media (min-width: 1200px) { .cta-band h1 { white-space: nowrap; letter-spacing: -1px; } }
.typed-cursor { animation: blink .7s infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* ---------- acordeon ---------- */
.accordion { border-top: 0; }
.accordion__item { border-bottom: 1px solid var(--line-soft); }
.accordion__head {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  width: 100%; background: none; border: 0; text-align: left;
  padding: 51px 50px 51px 0;
  font-family: var(--font-head); font-size: 38px; font-weight: 400; letter-spacing: -1px; line-height: 1.3;
  color: var(--ink);
}
.accordion__mark { position: relative; width: 20px; height: 18px; flex: 0 0 auto; }
.accordion__mark svg { position: absolute; left: 50%; top: 50%; width: 32px; height: 32px; transform: translate(-50%, -50%); fill: var(--ink); }
.accordion__mark .ico-minus { display: none; }
.accordion__item.is-open .accordion__mark .ico-plus { display: none; }
.accordion__item.is-open .accordion__mark .ico-minus { display: block; }
.accordion__body { display: none; padding: 50px 126px 50px 0; border-top: 1px solid var(--line-soft); }
.accordion__item.is-open .accordion__body { display: block; }
.accordion__body h5 { font-size: 21px; font-weight: 400; margin: 25px 0 10px; }
.accordion__body p { margin: 0; }

/* ---------- timeline (About) ---------- */
.timeline { position: relative; padding: 0 0 40px; }
.timeline__viewport { overflow: hidden; }
.timeline__track { display: flex; transition: transform .5s ease; }
.timeline__item { position: relative; flex: 0 0 33.3333%; padding: 0 20px; display: flex; flex-direction: column; }
.timeline__item::before { content: ''; position: absolute; left: 0; right: 0; top: 296px; height: 1px; background: rgba(32, 53, 86, .46); }
.timeline__point { position: absolute; left: 50%; top: 288px; width: 17px; height: 17px; margin-left: -8px; border-radius: 50%; background: var(--ink); z-index: 2; }
.timeline__media, .timeline__text { height: 297px; display: flex; flex-direction: column; justify-content: center; text-align: center; }
.timeline__media img { width: 100%; height: 258px; object-fit: cover; }
.timeline__text { padding-top: 39px; justify-content: flex-start; }
.timeline__item--reverse .timeline__media { order: 1; }
.timeline__item--reverse .timeline__text { order: 2; }
.timeline__item--obverse .timeline__text { order: 1; padding-top: 0; justify-content: flex-end; padding-bottom: 39px; }
.timeline__item--obverse .timeline__media { order: 2; padding-top: 39px; }
.timeline__item h4 { font-size: 18px; line-height: 1.4; font-weight: 500; letter-spacing: -1px; color: var(--ink); margin: 0 0 10px; }
.timeline__item p { margin: 0; }
.timeline__nav {
  position: absolute; top: 284px; width: 26px; height: 25px; padding: 0; background: none; border: 0; z-index: 3;
}
.timeline__nav svg { width: 26px; height: 25px; stroke: var(--ink); stroke-width: 2; fill: none; }
.timeline__nav--prev { left: 0; }
.timeline__nav--next { right: 0; }
.timeline__nav[disabled] { opacity: .3; cursor: default; }

/* ---------- formulare ---------- */
.form { margin: 44px 10px 24px; }
.form__field { margin-bottom: 20px; }
.form__row { display: flex; gap: 20px; }
.form__row > div { flex: 0 0 320px; max-width: 50%; }
.form label, .form legend { display: block; font-family: var(--font-ui); font-size: 16px; font-weight: 700; color: rgba(0,0,0,.85); margin-bottom: 15px; padding: 0; }
.form .req { color: #d63637; font-family: var(--font-body); font-weight: 400; }
.form .sublabel { font-size: 14px; font-weight: 400; color: rgba(0,0,0,.55); margin: 5px 0 0; }
.form fieldset { border: 0; padding: 0; margin: 0; }
.form input[type=text], .form input[type=email] {
  width: 100%; height: 43px; padding: 0 14px;
  font: 16px var(--font-body); color: #29393f;
  background: #f7f7f7; border: 1px solid #e0dfdf; border-radius: 0;
}
.form input[type=email] { max-width: 648px; }
.form textarea {
  width: 100%; height: 120px; padding: 14px; resize: vertical;
  font: 16px/1.3 var(--font-body); color: rgba(0,0,0,.7);
  background: #fff; border: 1px solid rgba(0,0,0,.25); border-radius: 3px;
}
.form input:focus, .form textarea:focus { outline: 2px solid rgba(6,106,171,.35); outline-offset: 0; }
.form input[type=file] { display: block; font-size: 15px; color: #29393f; }
.form .upload-label { font-family: var(--font-ui); font-size: 17px; font-weight: 500; color: var(--body); margin-bottom: 6px; }
.form__hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form button[type=submit] {
  display: inline-block; height: 41px; padding: 0 15px;
  font: 500 17px/41px var(--font-body); color: #fff;
  background: var(--blue-btn); border: 0; border-radius: 3px;
  transition: background .2s;
}
.form button[type=submit]:hover { background: #05568a; }
.form button[disabled] { opacity: .6; cursor: wait; }
.form__msg { margin-top: 15px; padding: 12px 15px; border-radius: 3px; display: none; }
.form__msg.is-ok { display: block; background: #e6f4ea; color: #1e6b2e; border: 1px solid #b7dfc1; }
.form__msg.is-err { display: block; background: #fdecea; color: #a32d2d; border: 1px solid #f3c1bd; }
.form__hint { font-size: 14px; color: rgba(0,0,0,.55); margin: 6px 0 0; }

/* ---------- team (Contact) ---------- */
.team { display: grid; grid-template-columns: repeat(3, 377px); justify-content: space-between; padding: 112px 0 0; }
.team__member { text-align: center; }
.team__photo { overflow: hidden; }
.team__photo img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .35s ease; }
.team__member:hover .team__photo img { transform: scale(1.05); }
.team__member h4 { font-size: 22px; font-weight: 600; letter-spacing: .4px; line-height: 1.4; margin: 15px 0 0; padding-bottom: 12px; }
.team__role { font-size: 16px; letter-spacing: .7px; margin: 0 0 20px; }
.team__social { display: flex; justify-content: center; gap: 14px; }
.team__social a { display: flex; align-items: center; justify-content: center; width: 20px; height: 20px; opacity: .7; transition: opacity .2s; }
.team__social a:hover { opacity: 1; }
.team__social svg { width: 15px; height: 15px; fill: var(--body); }

/* ---------- galerie logouri (Expertise) ---------- */
.logo-gallery { display: grid; grid-template-columns: repeat(3, 404px); justify-content: start; gap: 8px; padding: 10px 0 22px; }
.logo-gallery img { width: 300px; max-width: 100%; margin: 0; }

/* ---------- footer ---------- */
.site-footer { font-size: 13px; line-height: 1.7; }
.site-footer__widgets { padding: 50px 0 10px; }
.site-footer__widgets .container--narrow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 30px; }
.site-footer__widgets aside { margin-bottom: 57px; }
.site-footer__widgets svg { width: 10px; height: 13px; fill: var(--body); vertical-align: -1px; margin-right: 5px; }
.site-footer__widgets a:hover, .site-footer__widgets u:hover { text-decoration: underline; }
.site-footer__iso { display: flex; gap: 0; }
.site-footer__iso img { width: 80px; height: 120px; }
.site-footer__links a { display: block; }
.site-footer__links img.linkedin { height: 20px; width: auto; margin-top: 5px; }
.site-footer__links img.qr { width: 60px; height: 61px; margin-top: 5px; }
.site-footer__info {
  background: var(--grey-bg); padding: 22px 0; text-align: center;
  font-family: var(--font-ui); font-size: 11px; font-weight: 700; letter-spacing: 5px; text-transform: uppercase; color: #353535;
}
.site-footer__info p { margin: 0; }

/* ---------- animații la scroll ---------- */
.anim { opacity: 0; transform: translateY(30px); transition: opacity 1.2s ease, transform 1.2s ease; }
.anim--fade { transform: none; }
.anim.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .anim { opacity: 1; transform: none; transition: none; }
  .hero__bg, .banner__slide .hero__bg { animation: none !important; }
  .marquee__track { animation: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1200px) {
  .services-intro__grid, .counters { grid-template-columns: repeat(3, 1fr); padding: 0 40px; }
  .hero__arrows { right: 40px; }
  .hero__dots { left: 40px; }
  .counter__digit { font-size: 96px; }
}
@media (max-width: 1024px) {
  :root { --container-pad: 40px; }
  .hero__title { font-size: 64px; letter-spacing: -2px; }
  .hero__box { width: 55%; }
  .section-title, .prose h2 { font-size: 40px; }
  .accordion__head { font-size: 30px; padding: 36px 40px 36px 0; }
  .accordion__body { padding-right: 40px; }
  .process { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .process__item:nth-child(2) .process__line { display: none; }
  .services-intro { padding: 60px 20px; }
  .services-intro__grid, .counters { grid-template-columns: repeat(3, 1fr); padding: 0; gap: 0 30px; }
  .counter__digit { font-size: 80px; }
  .counter h3 { font-size: 28px; white-space: normal; }
  .timeline__item { flex-basis: 50%; }
  .team { grid-template-columns: repeat(3, 1fr); gap: 0 30px; }
  .logo-gallery { grid-template-columns: repeat(3, 1fr); }
  .logo-gallery img { width: 100%; }
  .cta-band h1 { font-size: 44px; }
}
@media (max-width: 768px) {
  :root { --header-h: 51px; --container-pad: 20px; }
  .site-header { height: auto; min-height: 51px; }
  .site-header__inner { flex-wrap: wrap; height: auto; padding: 0 20px; }
  .site-header__brand { order: 2; padding: 0; height: 51px; }
  .site-header__brand::after { content: none; }
  .site-header__brand img { width: 53px; height: 24px; margin: 0; }
  .site-header__social { display: none; }
  .menu-toggle { display: block; order: 1; margin: 0 0 0 -16px; }
  .site-nav { order: 3; flex: 0 0 100%; margin: 0; padding: 0; display: none; }
  body.menu-open .site-nav { display: block; }
  .site-nav ul { display: block; height: auto; padding: 36px 0; }
  .site-nav li { margin: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .site-nav a { padding: 18px 0; font-size: 18px; line-height: 1.5; color: rgba(255,255,255,.9); }
  .site-nav a::before { content: none; }
  .site-nav a:hover { color: #fff; }
  body.menu-open { overflow: hidden; }
  body.menu-open .site-nav { max-height: calc(100vh - 51px); overflow: auto; }
  body.is-scrolled { padding-top: 51px; }
  body.is-scrolled .site-header, body.is-compact .site-header { height: auto; min-height: 51px; }
  body.is-compact .site-header__brand img { width: 53px; height: 24px; }
  body.is-compact .site-nav a { line-height: 1.5; }

  .hero__slides { height: 100vh; min-height: 640px; }
  .hero__shape { display: none; }
  .hero__content { margin: 0 30px; }
  .hero__title { font-size: 28.8px; line-height: 1; letter-spacing: -1px; margin-bottom: 15px; }
  .hero__excerpt { display: block; font-size: 16px; line-height: 1.7; color: #fff; font-style: italic; margin: 15px 0 20px; }
  .hero__excerpt a { display: block; font-size: 13px; color: #fff; margin-top: 20px; font-style: normal; }
  .hero__box { display: none !important; }
  .hero__dots { display: none; }
  .hero__arrows { flex-direction: row; right: 30px; top: auto; bottom: 30px; transform: none; gap: 10px; }
  .hero__arrow { width: 44px; height: 44px; }

  .banner { min-height: 0; height: calc(100vw * 9 / 16); }
  .banner--static { height: 311px; margin-top: calc(-1 * var(--header-h)); }
  .hero { margin-top: calc(-1 * var(--header-h)); }
  .section--pad-bottom { padding-bottom: 60px; }
  .section--gap-footer { margin-bottom: 40px; }
  .cta-band { padding: 60px 16px; }
  .form { margin: 24px 0; }
  .section { padding: 50px 0; }
  .section-title, .prose h2 { font-size: 32px; }
  .prose h3 { font-size: 28px; }
  .prose h4 { font-size: 24px; }
  .services-intro { padding: 40px 0; }
  .services-intro__head { flex-wrap: wrap; gap: 10px; }
  .services-intro__grid { grid-template-columns: 1fr; gap: 0; }
  .counters { grid-template-columns: 1fr; gap: 30px; margin-top: 40px; text-align: center; }
  .counter__digit { font-size: 86px; }
  .counter h3 { margin-top: 10px; white-space: normal; }
  .marquee-band { padding: 80px 0; }
  .marquee__track span { font-size: 48px; padding: 0 24px; }
  .process-section { padding: 40px 20px; margin: 20px 0; }
  .section--tight { padding-bottom: 30px; }
  .process { grid-template-columns: 1fr; gap: 40px; }
  .process__line { display: none; }
  .cta-band { padding: 50px 16px; }
  .cta-band h1 { font-size: 28px; line-height: 1; }
  .btn-outline { font-size: 16px; height: 56px; }
  .cta-band h2 { font-size: 20px; }
  .accordion__head { font-size: 24px; padding: 24px 30px 24px 0; }
  .accordion__body { padding: 24px 0; }
  .accordion__mark svg { width: 24px; height: 24px; }
  .timeline__item { flex-basis: 100%; }
  .form__row { flex-direction: column; gap: 20px; }
  .form__row > div { flex: 1 1 auto; max-width: none; }
  .team { grid-template-columns: 1fr; gap: 40px; padding-top: 40px; justify-content: stretch; }
  .logo-gallery { grid-template-columns: repeat(2, 1fr); }
  .logo-gallery img { width: 100%; }
  .site-footer__widgets .container--narrow { grid-template-columns: 1fr; }
  .site-footer__widgets aside { margin-bottom: 30px; }
  .site-footer__info { letter-spacing: 3px; padding: 22px 16px; }
}
