/* ===========================================================================
   Next M — design system (matched to nextm.ro / Avada)
   Palette: teal #127bab · teal-hi #17b9e8 · green #65bc7b · navy #212934
   Font: Poppins
   =========================================================================== */
:root {
  --c-teal: #127bab;
  --c-teal-hi: #17b9e8;
  --c-green: #65bc7b;
  --c-blue: #198fd9;
  --c-navy: #212934;
  --c-navy-2: #1f2d33;
  --c-text: #1c1c1c;
  --c-muted: #747474;
  --c-line: #e2e2e2;
  --c-bg: #ffffff;
  --c-bg-soft: #f8f9fa;
  --c-bg-soft-2: #eef1f4;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-btn: 4px;
  --shadow: 0 8px 24px rgba(16, 24, 40, .08);
  --shadow-lg: 0 18px 44px rgba(16, 24, 40, .14);
  --maxw: 1200px;
  --gap: clamp(1rem, 2vw, 1.75rem);
  --ff: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --ff-head: "Poppins", system-ui, sans-serif;
  --ff-foot: "Poppins", Arial, Helvetica, sans-serif;
  --header-h: 80px;
}

*, *::before, *::after { box-sizing: border-box; }
.ic { width: 1em; height: 1em; display: inline-block; vertical-align: -0.125em; fill: currentColor; flex: none; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--ff); color: var(--c-text); background: var(--c-bg);
  line-height: 1.7; font-size: 16px; overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--ff-head); font-weight: 700; line-height: 1.2; color: var(--c-navy); margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 1.6vw, 1.35rem); }
p { margin: 0 0 1rem; }
a { color: var(--c-teal); text-decoration: none; transition: color .2s; }
a:hover { color: var(--c-teal-hi); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0 0 1rem; padding-left: 1.25rem; }
:focus-visible { outline: 3px solid var(--c-teal-hi); outline-offset: 2px; border-radius: 4px; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.section { padding-block: clamp(3rem, 6vw, 5.5rem); }
.section--soft { background: var(--c-bg-soft); }
.section--dark { background: var(--c-navy); color: #d7dbe0; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--gradient { background: linear-gradient(120deg, var(--c-teal) 0%, var(--c-teal-hi) 100%); color: #fff; }
.section--gradient .section__head h2 { color: #fff; }
.section--gradient .section__head h2::after { background: rgba(255,255,255,.7); }
.section--gradient .section__head p { color: rgba(255,255,255,.9); }
.section--gradient .card { background: transparent; border: 0; }
.section--gradient .card:hover { transform: none; box-shadow: none; }
.section--gradient .card__icon { background: rgba(255,255,255,.16); color: #fff; margin: 0 0 .2rem; width: 58px; height: 58px; }
.section--gradient .card:hover .card__icon { background: rgba(255,255,255,.28); }
.section--gradient .card__body { padding: 1rem 0 0; }
.section--gradient .card__body h3 { color: #fff; }
.section--gradient .card__body p { color: rgba(255,255,255,.92); }
/* features inside gradient panel (industry pages) */
.section--gradient .feature { background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18); }
.section--gradient .feature:hover { background: rgba(255,255,255,.16); box-shadow: none; transform: translateY(-3px); }
.section--gradient .feature h3 { color: #fff; }
.section--gradient .feature p { color: rgba(255,255,255,.92); }
/* features inside dark panel (services pages) — frosted cards */
.section--dark .feature { background: rgba(120,180,220,.12); border: 1px solid rgba(255,255,255,.10); backdrop-filter: blur(4px); }
.section--dark .feature:hover { background: rgba(120,180,220,.2); box-shadow: none; transform: translateY(-3px); }
.section--dark .feature h3 { color: #cfe6f5; }
.section--dark .feature p { color: rgba(255,255,255,.78); }
.eyebrow { color: var(--c-green); font-weight: 600; text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; display: inline-block; margin-bottom: .6rem; }
.section__head { max-width: 760px; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }
.section__head h2 { position: relative; padding-bottom: .6rem; }
.section__head h2::after { content: ""; display: block; width: 64px; height: 3px; background: var(--c-green); border-radius: 3px; margin: .7rem auto 0; }
.section__head p { color: var(--c-muted); font-size: 1.02rem; }
.lead { font-size: 1.12rem; color: var(--c-muted); }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--c-teal); color: #fff; padding: .75rem 1.25rem; z-index: 2000; border-radius: 0 0 8px 0; font-weight: 600; }
.skip-link:focus { left: 0; color: #fff; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--ff-head); font-weight: 600; font-size: .95rem; padding: .8rem 1.6rem; border-radius: var(--radius-btn); border: 2px solid transparent; cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .15s; line-height: 1.1; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--c-teal); color: #fff; }
.btn--primary:hover { background: var(--c-teal-hi); color: #fff; }
/* darker green so white label is legible (brand green #65bc7b fails contrast with white) */
.btn--green { background: linear-gradient(135deg, #3aa564, #237f49); color: #fff; }
.btn--green:hover { background: linear-gradient(135deg, #43b06e, #2a9152); color: #fff; }
.btn--ghost { background: transparent; color: var(--c-navy); border-color: var(--c-line); }
.btn--ghost:hover { border-color: var(--c-teal); color: var(--c-teal); background: rgba(18,123,171,.06); }
/* ghost buttons sitting on dark/colored backgrounds stay white */
.section--dark .btn--ghost, .page-hero .btn--ghost, .home-hero .btn--ghost, .cta-band .btn--ghost, .site-footer .btn--ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.section--dark .btn--ghost:hover, .page-hero .btn--ghost:hover, .home-hero .btn--ghost:hover, .cta-band .btn--ghost:hover, .site-footer .btn--ghost:hover { color: var(--c-navy); background: #fff; border-color: #fff; }
.btn--light { background: #fff; color: var(--c-navy); }
.btn--light:hover { color: var(--c-teal); }
.btn--blue { background: var(--c-teal); color: #fff; }
.btn--blue:hover { background: var(--c-teal-hi); color: #fff; }
.btn--sm { padding: .6rem 1.15rem; font-size: .85rem; }

/* ===================== Top contact bar ===================== */
.topbar { background: #fff; color: var(--c-muted); font-size: .85rem; border-bottom: 1px solid var(--c-line); }
.topbar .container { display: flex; gap: 1.2rem; align-items: center; min-height: 42px; flex-wrap: wrap; }
.topbar a { color: var(--c-muted); display: inline-flex; align-items: center; gap: .4rem; }
.topbar a:hover { color: var(--c-teal); }
.topbar .ic { color: var(--c-green); }
.topbar__spacer { margin-right: auto; }
.topbar__social { display: inline-flex; gap: .5rem; }
.topbar__social a { width: 26px; height: 26px; border-radius: 50%; background: var(--c-bg-soft); display: grid; place-items: center; color: var(--c-navy); font-size: .8rem; }
.topbar__social a:hover { background: var(--c-green); color: #fff; }
.langswitch { display: inline-flex; gap: .25rem; align-items: center; font-weight: 600; }
.langswitch a { padding: .15rem .45rem; border-radius: 4px; }
.langswitch a.is-active { background: var(--c-green); color: #fff; }

/* ===================== Header / nav ===================== */
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.97); backdrop-filter: blur(10px); border-bottom: 1px solid var(--c-line); }
.nav { display: flex; align-items: center; gap: 1.25rem; min-height: var(--header-h); }
.nav__logo img { height: 44px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: .15rem; margin-left: auto; list-style: none; padding: 0; }
.nav__item { position: relative; }
.nav__link { display: inline-flex; align-items: center; gap: .35rem; padding: .6rem .7rem; font-family: var(--ff-head); font-weight: 500; font-size: .92rem; color: var(--c-navy); border-radius: 6px; }
.nav__link:hover, .nav__item:hover > .nav__link { color: var(--c-green); }
.nav__item--has-children > .nav__link::after { content: ""; width: 6px; height: 6px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-top: -3px; transition: transform .2s; }
.nav__item--has-children:hover > .nav__link::after { transform: rotate(225deg); margin-top: 2px; }
.nav__dropdown { position: absolute; top: calc(100% + 6px); left: 0; min-width: 260px; background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); padding: .4rem; list-style: none; margin: 0; opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s; }
.nav__item--has-children:hover > .nav__dropdown, .nav__item--has-children:focus-within > .nav__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dropdown a { display: block; padding: .55rem .8rem; border-radius: 6px; color: var(--c-text); font-size: .9rem; font-weight: 400; }
.nav__dropdown a:hover { background: var(--c-bg-soft); color: var(--c-green); }
.nav__cta { margin-left: .4rem; }
.nav__lang-mobile { display: none; }
.nav__toggle { display: none; margin-left: auto; background: none; border: 0; cursor: pointer; padding: .5rem; }
.nav__toggle span { display: block; width: 26px; height: 3px; background: var(--c-navy); border-radius: 3px; margin: 5px 0; transition: .25s; }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===================== Home hero (diagonal + video) ===================== */
.home-hero { position: relative; background: var(--c-navy); color: #fff; overflow: hidden; }
.home-hero::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: var(--c-green); z-index: 4; }
.home-hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 2rem; min-height: 480px; }
.home-hero__content { position: relative; z-index: 3; padding-block: clamp(2.5rem, 5vw, 4rem); max-width: 560px; }
.home-hero__content h1 { color: #fff; text-wrap: balance; }
.home-hero__content h1 .grad { white-space: nowrap; }
.home-hero__content p { color: #c8cdd3; font-size: 1.05rem; max-width: 480px; }
.home-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.6rem; }
.home-hero__media { position: absolute; top: 0; right: 0; bottom: 0; width: 52%; z-index: 1; }
.home-hero__media::before { content: ""; position: absolute; inset: 0; left: -2px; background: var(--c-navy); clip-path: polygon(0 0, 14% 0, 0 100%, 0% 100%); z-index: 2; }
.home-hero__media .video-frame { position: absolute; inset: 0; clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%); }
.home-hero__media iframe { width: 100%; height: 100%; border: 0; }
.home-hero__media img { width: 100%; height: 100%; object-fit: cover; }

/* Standard page hero */
.page-hero { background: linear-gradient(120deg, var(--c-navy), var(--c-navy-2)); color: #fff; position: relative; }
.page-hero::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--c-green); }
.page-hero .hero__inner { padding-block: clamp(2.5rem, 6vw, 4.5rem); max-width: 820px; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #c8cdd3; font-size: clamp(1rem, 1.4vw, 1.15rem); }
.breadcrumbs { font-size: .85rem; color: #aeb6bf; margin-bottom: .5rem; }
.breadcrumbs a { color: #aeb6bf; }
.breadcrumbs a:hover { color: #fff; }

/* ===================== Grid & cards ===================== */
.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; height: 100%; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card__media { aspect-ratio: 16/10; overflow: hidden; background: var(--c-bg-soft-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card__media img { transform: scale(1.05); }
.card__icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(101,188,123,.12); color: var(--c-green); display: grid; place-items: center; font-size: 1.6rem; margin: 1.4rem 1.4rem 0; transition: .25s; }
.card:hover .card__icon { background: var(--c-green); color: #fff; }
.card__body { padding: 1.4rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.card__body h3 { margin: 0; }
.card__body p { color: var(--c-muted); font-size: .94rem; margin: 0; white-space: pre-line; }
.card__link { margin-top: auto; font-weight: 600; font-family: var(--ff-head); color: var(--c-teal); display: inline-flex; gap: .4rem; align-items: center; padding-top: .6rem; }
.card__link::after { content: "→"; transition: transform .2s; }
.card:hover .card__link::after { transform: translateX(4px); }

/* Feature (icon) cards */
.feature { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); padding: 1.6rem; height: 100%; transition: .2s; }
.feature:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.feature__ic { width: 54px; height: 54px; border-radius: 50%; background: rgba(101,188,123,.12); color: var(--c-green); display: grid; place-items: center; margin-bottom: 1rem; font-weight: 700; font-size: 1.3rem; }
.feature h3 { font-size: 1.08rem; }
.feature p { color: var(--c-muted); font-size: .93rem; margin: 0; }

/* Industry tiles */
.tile { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; display: flex; align-items: flex-end; color: #fff; }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(18,30,40,.9) 0%, rgba(18,30,40,.1) 65%); }
.tile:hover img { transform: scale(1.07); }
.tile__label { position: relative; z-index: 2; padding: 1.2rem; font-family: var(--ff-head); font-weight: 600; font-size: 1.05rem; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: var(--gap); text-align: center; }
.stat__value { font-family: var(--ff-head); font-weight: 800; font-size: clamp(2.2rem, 4vw, 3rem); color: var(--c-green); line-height: 1; }
.stat__label { color: #aeb6bf; margin-top: .4rem; }

/* Logos strip */
.logos { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1rem; align-items: center; }
.logos__item { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-sm); padding: 1rem; height: 96px; display: grid; place-items: center; }
.logos__item img { max-height: 60px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .7; transition: .25s; }
.logos__item:hover img { filter: none; opacity: 1; }

/* Quotes */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--gap); }
.quote { background: #fff; border: 1px solid var(--c-line); border-top: 3px solid var(--c-green); border-radius: var(--radius); padding: 1.6rem; position: relative; }
.quote__text { font-size: .98rem; color: #3a3a3a; font-style: italic; }
.quote__author { font-weight: 700; font-family: var(--ff-head); color: var(--c-navy); margin-top: .9rem; }
.quote__role { color: var(--c-muted); font-size: .85rem; font-weight: 400; }

/* Richtext */
.richtext { max-width: 880px; }
.richtext.is-narrow { margin-inline: auto; }
.richtext p { color: #444; }
.prose h2 { margin-top: 1.6em; }
.prose img { border-radius: var(--radius); margin: 1.5rem 0; }
.prose ul { padding-left: 1.25rem; }
.prose a:not(.btn) { color: var(--c-teal); text-decoration: underline; }
.btn { text-decoration: none; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.gallery a { border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--c-line); background: var(--c-bg-soft); }
.gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform .3s; }
.gallery a:hover img { transform: scale(1.05); }

/* Video */
.video-wrap { position: relative; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #000; }
.video-wrap iframe, .video-wrap video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; }
.home-hero__media video { width: 100%; height: 100%; object-fit: cover; background: #000; display: block; }
/* YouTube facade (local poster + click to load) */
.ytf { position: absolute; inset: 0; width: 100%; height: 100%; cursor: pointer; background: #000; overflow: hidden; }
.ytf__poster { width: 100%; height: 100%; object-fit: cover; }
.ytf__play { position: absolute; inset: 0; margin: auto; width: 68px; height: 48px; border: 0; background: none; padding: 0; cursor: pointer; }
.ytf__play svg { width: 68px; height: 48px; }
.ytf__bg { fill: #212121; opacity: .8; transition: fill .2s, opacity .2s; }
.ytf:hover .ytf__bg, .ytf:focus-within .ytf__bg { fill: #c00; opacity: 1; }
.ytf iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--c-teal), var(--c-navy)); color: #fff; border-radius: var(--radius); padding: clamp(2rem, 5vw, 3.5rem); text-align: center; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 15%, rgba(101,188,123,.35), transparent 50%); }
.cta-band > * { position: relative; z-index: 2; }
.cta-band--image { background-size: cover; background-position: center; }
.cta-band--image::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(120deg, rgba(18,123,171,.93) 0%, rgba(33,41,52,.9) 100%); }
.cta-band h2 { color: #fff; max-width: 760px; margin-inline: auto; }
.cta-band p { color: #e6edf3; max-width: 640px; margin-inline: auto 1.5rem; }

/* ===================== Forms ===================== */
.form { display: grid; gap: 1.1rem; max-width: 680px; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 500; font-size: .9rem; color: var(--c-navy); font-family: var(--ff-head); }
.field input, .field textarea, .field select { font: inherit; font-size: .96rem; padding: .8rem 1rem; border: 1px solid var(--c-line); border-radius: var(--radius-sm); background: #fff; color: var(--c-text); transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--c-teal); box-shadow: 0 0 0 3px rgba(18,123,171,.15); }
.field textarea { min-height: 150px; resize: vertical; }
.field--check { flex-direction: row; align-items: flex-start; gap: .6rem; }
.field--check input { width: 18px; height: 18px; margin-top: .25rem; }
.field--check label { font-weight: 400; font-family: var(--ff); font-size: .85rem; color: var(--c-muted); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.loc { border: 1px solid var(--c-line); border-radius: var(--radius); padding: 1.4rem; margin-bottom: 1rem; }
.loc h3 { font-size: 1.05rem; margin-bottom: .5rem; color: var(--c-teal); }
.loc p { margin: 0 0 .3rem; color: var(--c-muted); font-size: .92rem; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--c-line); aspect-ratio: 16/9; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* News */
.post-card__meta { font-size: .78rem; color: var(--c-green); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }

/* News toolbar */
.news-toolbar { display: flex; gap: 1rem; justify-content: space-between; align-items: center; flex-wrap: wrap; margin-bottom: 2rem; }
.news-search { flex: 1; min-width: 240px; max-width: 380px; }
.news-search input { width: 100%; font: inherit; padding: .7rem 1rem; border: 1px solid var(--c-line); border-radius: 999px; }
.news-search input:focus { outline: none; border-color: var(--c-teal); box-shadow: 0 0 0 3px rgba(18,123,171,.15); }
.chips { display: flex; gap: .5rem; flex-wrap: wrap; }
.chip { font: inherit; font-size: .88rem; font-weight: 600; padding: .5rem 1rem; border-radius: 999px; border: 1px solid var(--c-line); background: #fff; color: var(--c-muted); cursor: pointer; transition: .2s; }
.chip:hover { border-color: var(--c-green); color: var(--c-green); }
.chip.is-active { background: var(--c-green); border-color: var(--c-green); color: #fff; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Related posts */
.related { margin-top: 3rem; }
.related h2 { font-size: 1.4rem; margin-bottom: 1.2rem; }

/* Article */
.article { max-width: 820px; margin-inline: auto; }
.article__cover { border-radius: var(--radius); margin: 1.5rem 0; box-shadow: var(--shadow); }
.article__meta { color: var(--c-muted); font-size: .9rem; margin-bottom: 1rem; }
.article .prose { font-size: 1.02rem; }

/* Accordion */
.acc__item { border: 1px solid var(--c-line); border-radius: var(--radius-sm); margin-bottom: .75rem; overflow: hidden; }
.acc__head { width: 100%; text-align: left; background: #fff; border: 0; padding: 1rem 1.2rem; font-family: var(--ff-head); font-weight: 600; font-size: 1rem; cursor: pointer; display: flex; justify-content: space-between; gap: 1rem; color: var(--c-navy); }
.acc__head::after { content: "+"; color: var(--c-green); font-size: 1.3rem; line-height: 1; }
.acc__item.is-open .acc__head::after { content: "–"; }
.acc__panel { display: none; padding: 0 1.2rem 1.1rem; color: var(--c-muted); }
.acc__item.is-open .acc__panel { display: block; }

/* ===================== Footer ===================== */
.site-footer { position: relative; background: var(--c-navy); color: #aeb4ba; padding-block: clamp(3rem, 6vw, 4.5rem) 0; font-size: .9rem; }
.site-footer__accent { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--c-green), var(--c-teal)); }
.footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr 1.3fr; gap: 2rem; }
.footer__brand { max-width: 32ch; }
.footer__col h4 { color: #fff; font-size: .98rem; margin-bottom: 1rem; font-family: var(--ff-foot); }
.footer__logo img { height: 50px; width: auto; margin-bottom: 1rem; }
.footer__about { color: #8b9197; }
.footer__contact-list li { display: flex; gap: .55rem; align-items: flex-start; }
.footer__contact-list .ic { color: var(--c-green); margin-top: .25rem; }
.footer__contact .btn { margin-top: 1rem; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; font-family: var(--ff-foot); }
.footer__links { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.footer__links a { color: #aeb4ba; }
.footer__links a:hover { color: var(--c-green); }
.footer__contact a { color: #fff; }
.footer__social { display: flex; gap: .6rem; margin-top: 1rem; }
.footer__social a { width: 40px; height: 40px; border-radius: 8px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; }
.footer__social a:hover { background: var(--c-green); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.5rem; padding-block: 1.4rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .85rem; color: #7c8288; }
.footer__bottom a { color: #aeb4ba; }
.footer__bottom-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* Floating contact menu (right side) */
.float-menu { position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 900; display: flex; flex-direction: column; gap: 2px; }
.float-menu a { width: 46px; height: 46px; display: grid; place-items: center; color: #fff; font-size: 1.1rem; transition: width .2s, background .2s; }
.float-menu a:hover { color: #fff; }
.float-menu .fm-fb { background: #1877f2; }
.float-menu .fm-in { background: #0a66c2; }
.float-menu .fm-wa { background: #25d366; }
.float-menu .fm-ph { background: var(--c-teal); }
.float-menu .fm-em { background: var(--c-green); }
.float-menu a:first-child { border-radius: 8px 0 0 0; }
.float-menu a:last-child { border-radius: 0 0 0 8px; }

/* Cookie banner */
.cookie { position: fixed; left: 50%; transform: translateX(-50%); bottom: 1rem; width: min(94vw, 760px); background: #fff; border: 1px solid var(--c-line); box-shadow: var(--shadow-lg); border-radius: var(--radius); padding: 1rem 1.25rem; z-index: 1500; display: none; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: space-between; }
.cookie.is-visible { display: flex; }
.cookie p { font-size: .88rem; color: var(--c-muted); margin: 0; flex: 1; min-width: 240px; }
.cookie__actions { display: flex; gap: .6rem; flex-wrap: wrap; }

/* Scroll reveal (progressive enhancement — flag set before paint; no-JS = always visible) */
html.js-reveal .card, html.js-reveal .feature, html.js-reveal .tile,
html.js-reveal .section__head, html.js-reveal .quote, html.js-reveal .logos__item,
html.js-reveal .stat, html.js-reveal .map-embed, html.js-reveal .loc {
  opacity: 0; transform: translateY(22px); will-change: opacity, transform;
}
html.js-reveal .is-visible { opacity: 1 !important; transform: none !important; transition: opacity .6s ease, transform .6s ease; }
@media (prefers-reduced-motion: reduce) {
  html.js-reveal .card, html.js-reveal .feature, html.js-reveal .tile,
  html.js-reveal .section__head, html.js-reveal .quote, html.js-reveal .logos__item,
  html.js-reveal .stat, html.js-reveal .map-embed, html.js-reveal .loc { opacity: 1; transform: none; }
}

/* Testimonial carousel */
.quotes.is-carousel { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: var(--gap); padding-bottom: .5rem; scroll-behavior: smooth; scrollbar-width: none; }
.quotes.is-carousel::-webkit-scrollbar { display: none; }
.quotes.is-carousel .quote { flex: 0 0 calc(33.333% - var(--gap)); scroll-snap-align: start; }
.carousel { position: relative; }
.carousel__nav { display: flex; gap: .5rem; justify-content: center; margin-top: 1.2rem; }
.carousel__btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--c-line); background: #fff; color: var(--c-navy); cursor: pointer; display: grid; place-items: center; transition: .2s; }
.carousel__btn:hover { background: var(--c-green); color: #fff; border-color: var(--c-green); }
@media (max-width: 820px) { .quotes.is-carousel .quote { flex-basis: 86%; } }

/* Form error / validation */
.form__error { background: #fff4f4; border: 1px solid #f3c2c2; color: #b3261e; border-radius: var(--radius-sm); padding: .7rem 1rem; font-size: .9rem; }
.field.has-error input, .field.has-error textarea, .field.has-error select { border-color: #d33; box-shadow: 0 0 0 3px rgba(211,51,51,.12); }

/* Utilities */
.text-center { text-align: center; }
.mt-2 { margin-top: 1.5rem; }
.hide { display: none !important; }

/* ===================== Modern UI ===================== */
/* Gradient text + heading underline */
.grad { background: linear-gradient(110deg, var(--c-teal), var(--c-green)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section__head h2::after { background: linear-gradient(90deg, var(--c-green), var(--c-teal)); }

/* Subtle gradient on primary buttons */
.btn--primary { background: linear-gradient(135deg, var(--c-teal) 0%, #1597bf 100%); }
.btn--primary:hover { background: linear-gradient(135deg, var(--c-teal-hi) 0%, #1aa7c9 100%); }

/* Scroll progress bar */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--c-teal), var(--c-green)); z-index: 1200; }

/* Sticky header shadow on scroll */
.site-header { transition: box-shadow .25s, background .25s; }
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(16,24,40,.1); background: rgba(255,255,255,.98); }

/* Animated nav underline */
.nav__link { position: relative; }
.nav__link::before { content: ""; position: absolute; left: .7rem; right: .7rem; bottom: .3rem; height: 2px; background: var(--c-green); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.nav__item:hover > .nav__link::before, .nav__link:focus-visible::before { transform: scaleX(1); }

/* Hero aurora — disabled; hero uses the flat brand navy/grey background */
.home-hero__aurora { display: none; }
.home-hero__aurora--off { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.home-hero__aurora::before, .home-hero__aurora::after { content: ""; position: absolute; width: 46vw; height: 46vw; max-width: 640px; max-height: 640px; border-radius: 50%; filter: blur(90px); opacity: .30; }
.home-hero__aurora::before { background: var(--c-teal); top: -12%; left: -8%; animation: aurora1 16s ease-in-out infinite alternate; }
.home-hero__aurora::after { background: var(--c-green); bottom: -16%; left: 28%; animation: aurora2 19s ease-in-out infinite alternate; }
@keyframes aurora1 { to { transform: translate(18%, 12%) scale(1.15); } }
@keyframes aurora2 { to { transform: translate(-14%, -10%) scale(1.1); } }

/* Hero text entrance */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.reveal-up { animation: fadeUp .7s ease both; }
.reveal-up--2 { animation-delay: .12s; }
.reveal-up--3 { animation-delay: .24s; }

/* Floating hero stats */
.hero-stats-wrap { position: relative; z-index: 5; margin-top: -3.2rem; }
.hero-stats { background: rgba(255,255,255,.98); border: 1px solid var(--c-line); border-radius: var(--radius); box-shadow: var(--shadow-lg); display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; }
.hero-stat { padding: 1.5rem 1rem; text-align: center; border-right: 1px solid var(--c-line); }
.hero-stat:last-child { border-right: 0; }
.hero-stat__value { font-family: var(--ff-head); font-weight: 800; font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1; background: linear-gradient(135deg, var(--c-teal), var(--c-green)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-stat__label { color: var(--c-muted); font-size: .9rem; margin-top: .35rem; }

/* Logo marquee */
.logos-marquee { overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.logos-track { display: flex; gap: 1rem; width: max-content; animation: marquee 38s linear infinite; }
.logos-track .logos__item { flex: 0 0 auto; width: 165px; }
.logos-marquee:hover .logos-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Hexagon motif on dark sections */
.section--dark { background-color: var(--c-navy); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.045'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5z'/%3E%3C/g%3E%3C/svg%3E"); }

/* Angled section dividers (echo the hero diagonal) */
.section--dark, .section--gradient { clip-path: polygon(0 1.6vw, 100% 0, 100% 100%, 0 100%); }
.section--dark + .section--dark, .section--gradient + .section--gradient { clip-path: none; }

/* Card hover accent */
.card:hover { border-color: var(--c-green); }

/* Back to top */
.to-top { position: fixed; right: 18px; bottom: 84px; width: 46px; height: 46px; border-radius: 50%; border: 0; background: var(--c-navy); color: #fff; cursor: pointer; font-size: 1.25rem; opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .25s, transform .25s, background .2s; z-index: 850; }
.to-top:hover { background: var(--c-green); }
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }

/* Sticky mobile CTA (hidden on desktop) */
.mobile-cta { display: none; }

@media (prefers-reduced-motion: reduce) {
  .home-hero__aurora::before, .home-hero__aurora::after, .reveal-up, .logos-track { animation: none; }
  .reveal-up { opacity: 1; transform: none; }
}

/* ===================== QA polish ===================== */
/* CTA band: white button so it never blends into the gradient */
.cta-band .btn--primary { background: #fff; color: var(--c-teal); }
.cta-band .btn--primary:hover { background: var(--c-green); color: #fff; }

/* Testimonial cards — uniform client-logo size */
.t-card { background: #fff; border: 1px solid var(--c-line); border-top: 3px solid var(--c-green); border-radius: var(--radius); padding: 1.6rem; display: flex; flex-direction: column; gap: 1rem; height: 100%; margin: 0; }
.t-card__logo { height: 64px; display: flex; align-items: center; justify-content: flex-start; }
.t-card__logo img { max-height: 52px; max-width: 160px; width: auto; object-fit: contain; }
.t-card__text { margin: 0; font-style: italic; color: #3a3a3a; font-size: .96rem; position: relative; }
.t-card__who { font-family: var(--ff-head); font-weight: 700; color: var(--c-navy); font-size: .92rem; }

/* Improved quote (Păreri clienți) */
.quote { padding-top: 2.6rem; }
.quote::before { content: "\201C"; position: absolute; top: .2rem; left: 1.2rem; font-family: Georgia, serif; font-size: 4rem; line-height: 1; color: var(--c-green); opacity: .35; }
.quote__text { position: relative; z-index: 1; }

/* Timeline (Istoric) */
.timeline { position: relative; max-width: 820px; margin: 0 auto; }
.timeline::before { content: ""; position: absolute; left: 90px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--c-green), var(--c-teal)); }
.tl-row { position: relative; padding-left: 130px; padding-bottom: 2.4rem; }
.tl-row:last-child { padding-bottom: 0; }
.tl-year { position: absolute; left: 0; top: 0; width: 74px; text-align: right; font-family: var(--ff-head); font-weight: 800; font-size: 1.35rem; color: var(--c-teal); }
.tl-row::before { content: ""; position: absolute; left: 84px; top: 6px; width: 14px; height: 14px; border-radius: 50%; background: var(--c-green); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--c-green); }
.tl-body { display: grid; gap: 1rem; }
.tl-card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); padding: 1.2rem 1.4rem; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; }
.tl-card:hover { transform: translateX(4px); box-shadow: var(--shadow-lg); }
.tl-card h3 { font-size: 1.05rem; margin: 0 0 .35rem; color: var(--c-navy); }
.tl-card p { margin: 0; color: var(--c-muted); font-size: .95rem; }
@media (max-width: 620px) {
  .timeline::before { left: 7px; }
  .tl-row { padding-left: 34px; }
  .tl-year { position: static; width: auto; text-align: left; margin-bottom: .5rem; }
  .tl-row::before { left: 1px; top: 4px; }
}

/* ===================== Polish pass ===================== */
/* Brand micro-touches */
::selection { background: var(--c-teal); color: #fff; }
html { scrollbar-color: var(--c-teal) #e9edf1; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: #eef1f4; }
::-webkit-scrollbar-thumb { background: var(--c-teal); border-radius: 8px; border: 2px solid #eef1f4; }
:target, [id] { scroll-margin-top: calc(var(--header-h) + 20px); }

/* Inner-page hero: hexagon motif + teal glow */
.page-hero { background-image: linear-gradient(120deg, var(--c-navy), var(--c-navy-2)); position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(circle at 88% 12%, rgba(18,123,171,.45), transparent 42%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.05'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5z'/%3E%3C/g%3E%3C/svg%3E"); }
.page-hero .hero__inner, .page-hero .container { position: relative; z-index: 1; }

/* Photo duotone — subtle teal cohesion, clears on hover */
.card__media, .article__cover { position: relative; }
.card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,123,171,0) 40%, rgba(18,123,171,.28)); mix-blend-mode: multiply; opacity: .55; transition: opacity .3s; pointer-events: none; z-index: 1; }
.card:hover .card__media::after { opacity: 0; }

/* Card hover: animated gradient top accent */
.card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--c-teal), var(--c-green)); transform: scaleX(0); transform-origin: left; transition: transform .35s ease; z-index: 4; }
.card:hover::before { transform: scaleX(1); }

/* Icon gradient ring */
.card__icon, .feature__ic { background: linear-gradient(135deg, rgba(18,123,171,.14), rgba(101,188,123,.18)); color: var(--c-teal); }
.card:hover .card__icon, .feature:hover .feature__ic { background: linear-gradient(135deg, var(--c-teal), var(--c-green)); color: #fff; }

/* Hero stat icons */
.hero-stat__ic { color: var(--c-green); font-size: 1.1rem; margin-bottom: .35rem; }
.hero-stat__ic .ic { width: 1.3em; height: 1.3em; }

/* Testimonials: avatar + stars + quote mark */
.t-card__head { display: flex; align-items: center; gap: .7rem; }
.t-card__avatar { width: 42px; height: 42px; border-radius: 50%; flex: none; display: grid; place-items: center; color: #fff; font-family: var(--ff-head); font-weight: 700; font-size: .95rem; background: linear-gradient(135deg, var(--c-teal), var(--c-green)); }
.t-card__stars { color: #f5a623; letter-spacing: 1px; font-size: .85rem; }
.t-card__text { position: relative; }
.quote__stars { color: #f5a623; letter-spacing: 1px; font-size: .85rem; margin-bottom: .4rem; }
.t-card__head .quote__author { display: block; line-height: 1.25; }
.t-card__head .quote__role { display: block; font-size: .82rem; color: var(--c-muted); font-weight: 400; font-family: var(--ff); }

/* File upload polish */
.field input[type="file"] { padding: .6rem; cursor: pointer; background: var(--c-bg-soft); border-style: dashed; }
.field input[type="file"]::file-selector-button { font: inherit; font-weight: 600; font-family: var(--ff-head); background: var(--c-teal); color: #fff; border: 0; padding: .5rem .9rem; border-radius: 6px; margin-right: .8rem; cursor: pointer; }
.field input[type="file"]::file-selector-button:hover { background: var(--c-teal-hi); }

/* Hero scroll cue + trust bar */
.hero-cue { position: absolute; left: 50%; bottom: 1.1rem; transform: translateX(-50%); z-index: 4; color: rgba(255,255,255,.7); font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: .3rem; }
.hero-cue span { width: 22px; height: 34px; border: 2px solid rgba(255,255,255,.5); border-radius: 12px; position: relative; }
.hero-cue span::before { content: ""; position: absolute; left: 50%; top: 6px; width: 4px; height: 7px; background: #fff; border-radius: 2px; transform: translateX(-50%); animation: cue 1.6s ease-in-out infinite; }
@keyframes cue { 0%,100% { opacity: .3; transform: translate(-50%, 0); } 50% { opacity: 1; transform: translate(-50%, 8px); } }
.trust-bar { background: var(--c-bg-soft); border-bottom: 1px solid var(--c-line); padding: 1rem 0; }
.trust-bar__inner { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.trust-bar__label { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--c-muted); font-weight: 600; }
.trust-bar img { height: 30px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .65; }

/* Section eyebrow already styled (.eyebrow) */

/* ===================== Dark mode ===================== */
:root { --surface: #ffffff; --surface-2: var(--c-bg-soft); --on-surface: var(--c-text); }
[data-theme="dark"] {
  --c-bg: #11161c; --c-bg-soft: #161d25; --c-bg-soft-2: #1c2530;
  --c-text: #d7dce1; --c-muted: #9aa3ad; --c-line: #2a323c;
  --surface: #19212a; --surface-2: #11161c; --on-surface: #d7dce1;
}
[data-theme="dark"] body { background: var(--c-bg); color: var(--c-text); }
[data-theme="dark"] h1, [data-theme="dark"] h2, [data-theme="dark"] h3, [data-theme="dark"] h4 { color: #f1f4f7; }
[data-theme="dark"] .site-header { background: rgba(17,22,28,.96); border-bottom-color: var(--c-line); }
[data-theme="dark"] .nav__link { color: #e4e8ec; }
[data-theme="dark"] .topbar { background: #11161c; border-bottom-color: var(--c-line); }
[data-theme="dark"] .card, [data-theme="dark"] .feature, [data-theme="dark"] .t-card, [data-theme="dark"] .tl-card, [data-theme="dark"] .quote, [data-theme="dark"] .logos__item, [data-theme="dark"] .loc, [data-theme="dark"] .acc__item { background: var(--surface); border-color: var(--c-line); }
[data-theme="dark"] .acc__head { background: var(--surface); color: #f1f4f7; }
[data-theme="dark"] .section--soft { background: var(--surface-2); }
[data-theme="dark"] .nav__dropdown { background: var(--surface); border-color: var(--c-line); }
[data-theme="dark"] .nav__dropdown a { color: var(--c-text); }
[data-theme="dark"] .field input, [data-theme="dark"] .field textarea, [data-theme="dark"] .field select { background: var(--surface); border-color: var(--c-line); color: var(--c-text); }
[data-theme="dark"] .chip, [data-theme="dark"] .news-search input { background: var(--surface); color: var(--c-text); border-color: var(--c-line); }
[data-theme="dark"] .card__media img, [data-theme="dark"] .logos__item img { filter: none; }
[data-theme="dark"] .cookie { background: var(--surface); border-color: var(--c-line); }
[data-theme="dark"] .nav.is-open .nav__menu { background: var(--surface); }
.theme-toggle { background: none; border: 0; cursor: pointer; color: var(--c-navy); width: 34px; height: 34px; border-radius: 8px; display: grid; place-items: center; font-size: 1.05rem; }
.theme-toggle:hover { background: var(--c-bg-soft); color: var(--c-teal); }
[data-theme="dark"] .theme-toggle { color: #e4e8ec; }
[data-theme="dark"] .theme-toggle:hover { background: var(--surface); }
.nav__logo .logo-dark { display: none; }
[data-theme="dark"] .nav__logo .logo-light { display: none; }
[data-theme="dark"] .nav__logo .logo-dark { display: inline; }
.theme-toggle .ico-light { display: none; }
[data-theme="dark"] .theme-toggle .ico-dark { display: none; }
[data-theme="dark"] .theme-toggle .ico-light { display: inline; }

/* ===================== Responsive ===================== */
@media (max-width: 1024px) {
  .home-hero__inner { grid-template-columns: 1fr; min-height: 0; }
  .home-hero__content { max-width: none; padding-block: 2.5rem; }
  .home-hero__media { position: relative; width: 100%; aspect-ratio: 16/9; }
  .home-hero__media::before { display: none; }
  .home-hero__media .video-frame { clip-path: none; position: relative; height: 100%; }
}
@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__brand { grid-column: 1 / -1; max-width: 60ch; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .topbar { display: none; }            /* declutter + predictable header height */
  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed; inset: var(--header-h) 0 0 0; width: 100%;
    background: #fff; flex-direction: column; align-items: stretch; gap: 0;
    padding: 1.2rem 1.4rem 6rem; box-shadow: var(--shadow-lg); transform: translateX(100%);
    transition: transform .3s; overflow-y: auto; margin: 0; height: calc(100vh - var(--header-h)); max-height: none;
  }
  .nav__link { font-size: 1.05rem; padding: 1rem .25rem; }
  .nav__dropdown a { font-size: .98rem; padding: .7rem .8rem; }
  .nav.is-open .nav__menu { transform: translateX(0); }
  .nav.is-open::after { content: ""; position: fixed; inset: var(--header-h) 0 0 0; background: rgba(0,0,0,.4); z-index: -1; }
  .nav__lang-mobile { display: flex !important; gap: .5rem; padding: 1rem .5rem 0; }
  .nav__lang-mobile a { flex: 1; text-align: center; padding: .6rem; border: 1px solid var(--c-line); border-radius: 8px; font-weight: 600; }
  .nav__lang-mobile a.is-active { background: var(--c-green); color: #fff; border-color: var(--c-green); }
  .nav__item { width: 100%; }
  .nav__link { width: 100%; padding: .9rem .5rem; border-bottom: 1px solid var(--c-line); }
  .nav__dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; border-left: 2px solid var(--c-green); border-radius: 0; margin: 0 0 .5rem .5rem; padding: 0 0 0 .5rem; display: none; }
  .nav__item--open > .nav__dropdown { display: block; }
  .nav__item--has-children > .nav__link::after { margin-left: auto; }
  .nav__cta { margin: .75rem 0 0; }
  .nav__cta .btn { width: 100%; justify-content: center; }
  .float-menu { top: auto; bottom: 0; right: 0; transform: none; flex-direction: row; width: 100%; }
  .float-menu a { flex: 1; border-radius: 0 !important; }
}
@media (max-width: 620px) {
  .grid--4, .grid--3, .grid--2, .footer__grid { grid-template-columns: 1fr; }
  .topbar__spacer { display: none; }
  .topbar .container { justify-content: center; }
}

/* Hero stats responsive */
@media (max-width: 860px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat:nth-child(2) { border-right: 0; }
  .hero-stat:nth-child(1), .hero-stat:nth-child(2) { border-bottom: 1px solid var(--c-line); }
  .hero-stats-wrap { margin-top: -1.8rem; }
}

/* Mobile: sticky CTA bar + tidy floats */
@media (max-width: 820px) {
  .mobile-cta {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000;
    background: var(--c-green); color: #fff; justify-content: center; align-items: center;
    padding: .95rem; font-family: var(--ff-head); font-weight: 600; font-size: 1rem;
    box-shadow: 0 -4px 16px rgba(0,0,0,.14); text-decoration: none;
  }
  .mobile-cta:hover { color: #fff; }
  .float-menu { display: none; }
  body { padding-bottom: 56px; }
  .to-top { bottom: 70px; right: 14px; }
  .cookie { bottom: 70px; }
}

@media (max-width: 420px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat__value { font-size: 1.6rem; }
  h1 { font-size: 1.8rem; }
  .container { padding-inline: 1.1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ===================== Print ===================== */
@media print {
  .topbar, .site-header, .site-footer, .float-menu, .to-top, .mobile-cta, .cookie, .scroll-progress, .home-hero__media, .ytf, .carousel__nav, .nav__toggle, .hero__actions, .home-hero__actions { display: none !important; }
  body { color: #000; font-size: 11pt; }
  .section, .home-hero, .page-hero { padding-block: 1rem !important; background: #fff !important; color: #000 !important; }
  .page-hero h1, .home-hero h1, h1, h2, h3 { color: #000 !important; }
  .section--dark, .section--gradient, .cta-band { background: #fff !important; color: #000 !important; -webkit-print-color-adjust: exact; }
  .section--dark *, .section--gradient *, .cta-band * { color: #000 !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
  .card, .feature, .t-card, .tl-card, .quote { break-inside: avoid; border: 1px solid #ccc !important; box-shadow: none !important; }
}
