/* =========================================================
   FLEXIOM: Tema vizuală proprie
   Site de prezentare aparate self-pay
   ========================================================= */

/* ---------- Variabile / Design tokens ---------- */
:root {
  /* Paletă brand */
  --navy-950: #0a1230;
  --navy-900: #0e1a44;
  --navy-800: #142457;
  --navy-700: #1d3270;
  --blue-500: #2f6bff;
  --blue-400: #4f86ff;
  --cyan-400: #25e0c8;
  --cyan-300: #5cf0dc;
  --amber-400: #ffb020;
  --amber-300: #ffc24d;

  /* Neutre */
  --ink: #0c1430;
  --slate-700: #38456b;
  --slate-500: #5a678c;
  --slate-300: #aeb7cf;
  --line: #e6e9f4;
  --bg: #ffffff;
  --bg-soft: #f5f7fd;
  --bg-softer: #eef2fb;
  --white: #ffffff;

  /* Tipografie */
  --font-sans: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;

  /* Spațiere & formă */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(14, 26, 68, .06);
  --shadow: 0 18px 40px -18px rgba(14, 26, 68, .28);
  --shadow-lg: 0 40px 80px -30px rgba(14, 26, 68, .45);
  --container: 1180px;
  --gradient-brand: linear-gradient(120deg, var(--blue-500), var(--cyan-400));
  --gradient-deep: radial-gradient(120% 120% at 80% 0%, #1c3a8f 0%, var(--navy-900) 45%, var(--navy-950) 100%);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; /* previne scroll orizontal pe mobil */
}
/* Câmp honeypot anti-spam, ascuns vizual și pentru cititoarele de ecran */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 .4em; letter-spacing: -.02em; }
p { margin: 0 0 1em; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--soft { background: var(--bg-soft); }
.section--deep { background: var(--gradient-deep); color: #eaf0ff; }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-500);
  background: var(--bg-softer);
  padding: 7px 14px; border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.section--deep .eyebrow { color: var(--cyan-300); background: rgba(255,255,255,.08); }
.section-head { max-width: 720px; margin: 0 auto 56px; }
.section-head.center { text-align: center; }
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; }
.section-sub { font-size: 18px; color: var(--slate-500); margin-bottom: 0; }
.section--deep .section-sub { color: var(--slate-300); }

/* ---------- Butoane ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 16px; cursor: pointer;
  padding: 14px 26px; border-radius: var(--radius-pill);
  border: 1.5px solid transparent; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--gradient-brand); color: #06122e;
  box-shadow: 0 14px 28px -12px rgba(47,107,255,.7);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 20px 36px -12px rgba(47,107,255,.8); }
.btn--amber { background: linear-gradient(120deg, var(--amber-400), var(--amber-300)); color: #3a2600; }
.btn--amber:hover { transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--blue-400); color: var(--blue-500); }
.btn--light { background: #fff; color: var(--navy-900); }
.btn--light:hover { transform: translateY(-2px); }
.btn--lg { padding: 17px 32px; font-size: 17px; }
.btn--block { width: 100%; }

/* ---------- Header / Navigație ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 21px; letter-spacing: -.02em; }
.brand__mark {
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--gradient-brand);
  display: grid; place-items: center; color: #06122e; font-weight: 900; font-size: 20px;
  box-shadow: var(--shadow-sm);
}
.brand__name { color: var(--navy-900); }
.brand__name b { color: var(--blue-500); }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { font-weight: 600; font-size: 15.5px; color: var(--slate-700); transition: color .15s; }
.nav__links a:hover { color: var(--blue-500); }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 24px; height: 2.5px; background: var(--navy-900); border-radius: 2px; margin: 5px 0; transition: .25s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--gradient-deep); color: #eef3ff;
  padding: 92px 0 110px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 26px 26px; opacity: .5; pointer-events: none;
}
.hero__glow {
  position: absolute; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,224,200,.35), transparent 65%);
  top: -160px; right: -120px; filter: blur(20px); pointer-events: none;
}
.hero__grid {
  position: relative; display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 56px; align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16);
  padding: 8px 16px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 600; color: #d8e3ff; margin-bottom: 24px;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan-400); box-shadow: 0 0 0 4px rgba(37,224,200,.25); }
.hero h1 { font-size: clamp(34px, 5.2vw, 60px); font-weight: 800; letter-spacing: -.03em; }
.hero h1 .grad { background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__lead { font-size: 19px; color: #c4d1f2; max-width: 560px; margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }
.hero__stats { display: flex; gap: 38px; flex-wrap: wrap; }
.hero__stat .num { font-size: 30px; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.hero__stat .lbl { font-size: 14px; color: #9fb0d8; }

/* Mock terminal */
.terminal {
  position: relative; margin: 0 auto;
  width: 300px; background: linear-gradient(180deg, #14224f, #0c1838);
  border-radius: 28px; padding: 18px; border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow-lg);
}
.terminal__screen {
  background: linear-gradient(160deg, #1b2c63, #0f1c44);
  border-radius: 18px; padding: 22px 20px; min-height: 360px;
  border: 1px solid rgba(255,255,255,.08); display: flex; flex-direction: column;
}
.terminal__brand { display: flex; align-items: center; gap: 8px; font-weight: 800; color: #fff; font-size: 15px; margin-bottom: 22px; }
.terminal__brand i { width: 22px; height: 22px; border-radius: 7px; background: var(--gradient-brand); display: inline-block; }
.terminal__row { display: flex; align-items: center; gap: 12px; padding: 13px 14px; border-radius: 12px; background: rgba(255,255,255,.05); margin-bottom: 10px; }
.terminal__row .ic { width: 34px; height: 34px; border-radius: 9px; background: rgba(37,224,200,.16); display: grid; place-items: center; font-size: 17px; }
.terminal__row .tx { font-size: 13.5px; color: #d6e0fb; font-weight: 600; }
.terminal__row .tx small { display: block; color: #8fa1cd; font-weight: 500; font-size: 11.5px; }
.terminal__pay { margin-top: auto; background: var(--gradient-brand); color: #06122e; font-weight: 800; text-align: center; padding: 14px; border-radius: 12px; font-size: 15px; }
.terminal__float {
  position: absolute; background: #fff; color: var(--ink);
  border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow);
  font-weight: 700; font-size: 14px; display: flex; align-items: center; gap: 10px;
}
.terminal__float .pin { width: 30px; height: 30px; border-radius: 9px; background: var(--gradient-brand); display: grid; place-items: center; color:#06122e; }
.terminal__float--a { top: 30px; left: -54px; }
.terminal__float--b { bottom: 50px; right: -58px; }
.terminal__float small { display:block; color: var(--slate-500); font-weight: 600; font-size: 11.5px; }

/* ---------- Logo strip ---------- */
.trust { padding: 34px 0; border-bottom: 1px solid var(--line); background: var(--bg); }
.trust__row { display: flex; align-items: center; justify-content: center; gap: 16px 40px; flex-wrap: wrap; }
.trust__label { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-500); }
.trust__item { display: flex; align-items: center; gap: 9px; font-weight: 700; color: var(--slate-700); font-size: 16px; opacity: .9; }
.trust__item .ic { width: 30px; height: 30px; border-radius: 8px; background: var(--bg-softer); display: grid; place-items: center; color: var(--blue-500); }

/* ---------- Secțiune furnizori (logo-uri) ---------- */
.payers { padding: 64px 0; border-bottom: 1px solid var(--line); background: var(--bg); }
.payers__head { max-width: 720px; margin: 0 auto 38px; }
.payers__title { font-size: clamp(22px, 3vw, 32px); font-weight: 800; }
.payers__cat { margin-bottom: 30px; }
.payers__catname { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--slate-700); margin-bottom: 14px; }
.payers__catname .ic { width: 30px; height: 30px; border-radius: 8px; background: var(--bg-softer); display: grid; place-items: center; font-size: 16px; }
.logo-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.logo-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; height: 74px;
  display: flex; align-items: center; justify-content: center; gap: 10px; padding: 0 16px; text-align: center;
  box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.logo-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--blue-400); }
.logo-ico { width: 24px; height: 24px; object-fit: contain; flex: none; border-radius: 6px; }
.logo-wm { font-weight: 800; font-size: 16px; letter-spacing: -.01em; color: var(--slate-700); white-space: nowrap; transition: color .2s ease; }
.logo-card:hover .logo-wm { color: var(--blue-500); }
.payers__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.payers__chips span { background: var(--bg-softer); color: var(--slate-700); font-weight: 600; font-size: 14px; padding: 9px 15px; border-radius: var(--radius-pill); }
.payers__note { text-align: center; color: var(--slate-500); font-size: 15px; margin: 26px 0 4px; }
.payers__legal { text-align: center; color: var(--slate-300); font-size: 12.5px; margin: 0; }
@media (max-width: 960px) { .logo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .logo-grid { grid-template-columns: repeat(2, 1fr); } .logo-card { height: 64px; } .logo-wm { font-size: 16px; } }

/* ---------- Cum funcționează ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 28px; position: relative; box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step__num {
  counter-increment: step; width: 46px; height: 46px; border-radius: 13px;
  background: var(--gradient-brand); color: #06122e; font-weight: 900; font-size: 20px;
  display: grid; place-items: center; margin-bottom: 18px;
}
.step__num::before { content: counter(step); }
.step h3 { font-size: 20px; }
.step p { color: var(--slate-500); margin-bottom: 0; font-size: 16px; }
.step__line { position: absolute; top: 56px; right: -26px; width: 26px; border-top: 2px dashed var(--line); }

/* ---------- Beneficii ---------- */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.benefit__ic {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  font-size: 24px; margin-bottom: 16px; background: var(--bg-softer); color: var(--blue-500);
}
.benefit h3 { font-size: 19px; }
.benefit p { color: var(--slate-500); margin-bottom: 0; font-size: 15.5px; }

/* ---------- CTA bandă ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band__inner {
  background: var(--gradient-deep); color: #fff; border-radius: var(--radius-lg);
  padding: 56px 56px; display: grid; grid-template-columns: 1.4fr auto; gap: 30px; align-items: center;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.cta-band__inner::after {
  content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,224,200,.3), transparent 65%);
  bottom: -180px; left: -80px;
}
.cta-band h2 { font-size: clamp(26px, 3.4vw, 36px); position: relative; }
.cta-band p { color: #c4d1f2; margin-bottom: 0; max-width: 540px; position: relative; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; }

/* ---------- Formular contact ---------- */
.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: 52px; align-items: start; }
.contact__intro h2 { font-size: clamp(28px, 3.6vw, 40px); }
.contact__intro p { color: var(--slate-500); font-size: 17px; }
.contact__list { margin-top: 26px; display: grid; gap: 16px; }
.contact__item { display: flex; align-items: center; gap: 14px; }
.contact__item .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--bg-softer); color: var(--blue-500); display: grid; place-items: center; flex: none; }
.contact__item b { display: block; font-size: 16px; }
.contact__item span { color: var(--slate-500); font-size: 15px; }

.form {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px; box-shadow: var(--shadow);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 14.5px; margin-bottom: 7px; color: var(--slate-700); }
.field label .req { color: #e0444a; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 16px; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--bg-soft); transition: border-color .15s, box-shadow .15s, background .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--blue-400); background: #fff;
  box-shadow: 0 0 0 4px rgba(47,107,255,.12);
}
.field textarea { resize: vertical; min-height: 110px; }
.form__note { font-size: 13.5px; color: var(--slate-500); margin: 6px 0 18px; }
.form__msg { display: none; padding: 14px 16px; border-radius: var(--radius-sm); font-weight: 600; font-size: 15px; margin-bottom: 16px; }
.form__msg--ok { display: block; background: #e7faf4; color: #0a7d63; border: 1px solid #a9ecd9; }
.form__msg--err { display: block; background: #fdecec; color: #b3262c; border: 1px solid #f3c2c4; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-950); color: #c2cde9; padding: 64px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand__name { color: #fff; }
.footer__about { color: #95a3cb; font-size: 15px; max-width: 320px; margin-top: 16px; }
.footer__contact { margin-top: 18px; display: grid; gap: 9px; }
.footer__contact li { color: #aab6db; font-size: 14.5px; line-height: 1.5; }
.footer__contact a { color: #aab6db; transition: color .15s; }
.footer__contact a:hover { color: var(--cyan-300); }
.footer h4 { color: #fff; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.footer ul li { margin-bottom: 11px; }
.footer ul a { color: #aab6db; font-size: 15px; transition: color .15s; }
.footer ul a:hover { color: var(--cyan-300); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 24px; font-size: 14px; color: #8190ba; }
.footer__bottom a:hover { color: var(--cyan-300); }

/* ---------- Pagini legale ---------- */
.legal { padding: 64px 0 90px; }
.legal__wrap { max-width: 820px; margin: 0 auto; }
.legal h1 { font-size: clamp(30px, 4vw, 44px); }
.legal .updated { color: var(--slate-500); font-size: 15px; margin-bottom: 32px; }
.legal__placeholder {
  background: var(--bg-soft); border: 1px dashed var(--slate-300); border-radius: var(--radius);
  padding: 28px; color: var(--slate-500); margin-bottom: 28px;
}
.legal h2 { font-size: 24px; margin-top: 36px; }
.legal p, .legal li { color: var(--slate-700); }
.legal ul.bul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.legal ul.bul li { margin-bottom: 8px; }
.back-link { display:inline-flex; align-items:center; gap:8px; color: var(--blue-500); font-weight:700; margin-bottom: 28px; }

/* ---------- Consimțământ formular (checkbox) ---------- */
.consent { display: flex; align-items: flex-start; gap: 11px; margin: 4px 0 18px; }
.consent input[type="checkbox"] { width: 20px; height: 20px; flex: none; margin-top: 2px; accent-color: var(--blue-500); cursor: pointer; }
.consent label { font-size: 13.5px; color: var(--slate-500); line-height: 1.5; }
.consent a { color: var(--blue-500); font-weight: 600; text-decoration: underline; }

/* ---------- Tabel cookie-uri ---------- */
.cookie-table { width: 100%; border-collapse: collapse; margin: 18px 0 28px; font-size: 14.5px; }
.cookie-table th, .cookie-table td { border: 1px solid var(--line); padding: 11px 13px; text-align: left; vertical-align: top; }
.cookie-table th { background: var(--bg-softer); color: var(--navy-900); font-weight: 700; font-size: 13.5px; }
.cookie-table tr:nth-child(even) td { background: var(--bg-soft); }
.cookie-cat { display:inline-block; font-size:12px; font-weight:700; padding:3px 9px; border-radius: var(--radius-pill); }
.cookie-cat--nec { background:#e7faf4; color:#0a7d63; }
.cookie-cat--fun { background:#eaf1ff; color:#2f6bff; }
.cookie-cat--ana { background:#fff4e0; color:#a86a00; }
.cookie-cat--mkt { background:#fdeaf0; color:#b3245a; }

/* ---------- Banner consimțământ cookies ---------- */
.cc-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 1000;
  max-width: 920px; margin: 0 auto;
  background: #fff; color: var(--ink); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 22px 24px; display: none;
}
.cc-banner.show { display: block; animation: cc-up .35s ease; }
@keyframes cc-up { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.cc-banner h3 { font-size: 18px; margin-bottom: 6px; }
.cc-banner p { font-size: 14.5px; color: var(--slate-500); margin-bottom: 16px; }
.cc-banner p a { color: var(--blue-500); font-weight: 600; text-decoration: underline; }
.cc-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cc-actions .btn { padding: 12px 20px; font-size: 15px; }
.cc-btn-ghost { background: transparent; color: var(--navy-900); border: 1.5px solid var(--line); }
.cc-btn-ghost:hover { border-color: var(--blue-400); color: var(--blue-500); }
.cc-settings { margin-top: 18px; border-top: 1px solid var(--line); padding-top: 16px; display: none; }
.cc-settings.show { display: block; }
.cc-cat { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--bg-softer); }
.cc-cat:last-child { border-bottom: 0; }
.cc-cat__txt b { font-size: 15px; }
.cc-cat__txt span { display: block; font-size: 13px; color: var(--slate-500); margin-top: 2px; }
.cc-switch { position: relative; width: 46px; height: 26px; flex: none; }
.cc-switch input { opacity: 0; width: 0; height: 0; }
.cc-slider { position: absolute; inset: 0; background: var(--slate-300); border-radius: 999px; transition: .25s; cursor: pointer; }
.cc-slider::before { content: ""; position: absolute; width: 20px; height: 20px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: .25s; }
.cc-switch input:checked + .cc-slider { background: var(--blue-500); }
.cc-switch input:checked + .cc-slider::before { transform: translateX(20px); }
.cc-switch input:disabled + .cc-slider { background: var(--cyan-400); cursor: not-allowed; opacity: .85; }
.cc-reopen {
  position: fixed; left: 16px; bottom: 16px; z-index: 999;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
  width: 44px; height: 44px; border-radius: 50%; display: none; align-items: center; justify-content: center;
  cursor: pointer; font-size: 20px; padding: 0;
}
.cc-reopen.show { display: flex; }
@media (max-width: 560px) {
  .cc-actions .btn { flex: 1 1 100%; }
  .cc-banner { padding: 20px 18px; }
}

/* ---------- Reveal animație ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { order: -1; }
  .steps, .benefits { grid-template-columns: 1fr 1fr; }
  .step__line { display: none; }
  .contact { grid-template-columns: 1fr; gap: 36px; }
  .cta-band__inner { grid-template-columns: 1fr; text-align: center; }
  .cta-band__actions { justify-content: center; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .nav__links, .nav__cta .btn--ghost { display: none; }
  .nav__toggle { display: block; }
  .site-header.open .nav__links {
    display: flex; flex-direction: column; gap: 4px; position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 14px 24px 22px; box-shadow: var(--shadow);
  }
  .site-header.open .nav__links a { padding: 13px 0; min-height: 44px; display: flex; align-items: center; width: 100%; border-bottom: 1px solid var(--bg-softer); }
  /* Zone de atingere ≥44px pentru link-urile din footer pe mobil */
  .footer ul a, .footer__contact a { display: inline-block; padding: 7px 0; min-height: 44px; }
  .footer__bottom a { display: inline-block; padding: 6px 0; }
  .steps, .benefits { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .hero__stats { gap: 26px; }
  .terminal__float--a { left: -20px; }
  .terminal__float--b { right: -16px; }
  .cta-band__inner { padding: 40px 26px; }
}
