/* ============================================================
   Top Credite IFN — topcrediteifn.ro
   Design: fintech minimal (alb curat, accent smarald, umbre moi)
   ============================================================ */

:root {
  /* Palete — cald (crem) + roșu */
  --ink: #292524;            /* text principal / butoane secundare */
  --ink-2: #44403c;
  --muted: #78716c;          /* text secundar */
  --border: #eae2d6;
  --bg: #f7f2ea;             /* fundal secțiuni alternative */
  --white: #fffdf9;
  --dark: #2a1815;           /* footer, secțiuni închise (espresso cald) */
  --accent: #dc2626;         /* roșu — culoarea de accent */
  --accent-dark: #b91c1c;
  --accent-soft: #fef2f2;
  --green: #16a34a;          /* verde semantic (pozitiv) */
  --green-dark: #15803d;
  --green-soft: #f0fdf4;
  --amber: #d97706;
  --red: #dc2626;

  /* Aliasuri (compatibilitate cu componentele existente) */
  --navy: var(--ink);
  --navy-dark: var(--dark);
  --blue: var(--accent);
  --blue-light: #f3ede3;
  --green-light: var(--green-soft);
  --orange: var(--amber);
  --text: #57534e;
  --text-muted: var(--muted);

  --radius: 24px;
  --radius-sm: 15px;
  --shadow-sm: 0 1px 2px rgba(41, 37, 36, .05);
  --shadow: 0 6px 24px rgba(41, 37, 36, .07);
  --shadow-lg: 0 24px 60px rgba(41, 37, 36, .13);
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: #faf6ef;
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; }
.center { text-align: center; }
.accent { color: var(--accent); }

h1, h2, h3 { line-height: 1.2; color: var(--ink); letter-spacing: -0.02em; }

a { color: var(--accent); }
a:hover { color: var(--accent-dark); }

/* ============ Butoane ============ */
.btn {
  display: inline-block;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  letter-spacing: -0.01em;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease, color .18s;
}
.btn:active { transform: scale(.98); }

/* Secundar: ink solid */
.btn-primary {
  background: var(--ink);
  color: var(--white);
  padding: 11px 22px;
  font-size: 15px;
  border-radius: 100px;
}
.btn-primary:hover { background: var(--ink-2); color: var(--white); }

/* Principal: smarald solid */
.btn-cta {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 55%, #c51f1f 100%);
  color: var(--white);
  width: 100%;
  padding: 16px 26px;
  font-size: 16.5px;
  font-weight: 700;
  border-radius: 100px;
  box-shadow: 0 1px 2px rgba(220, 38, 38, .28), 0 6px 18px rgba(220, 38, 38, .2);
}
.btn-cta:hover {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 60%, #a51818 100%);
  color: var(--white);
  box-shadow: 0 2px 4px rgba(220, 38, 38, .28), 0 10px 26px rgba(220, 38, 38, .28);
  transform: translateY(-1px);
}

.btn-inline { width: auto; padding: 16px 36px; }

.btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.35); border-radius: 100px; }
.btn-ghost:hover { border-color: rgba(255,255,255,.7); color: var(--white); }
.btn-sm { padding: 8px 18px; font-size: 14px; }

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 239, .88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-right: auto;
}
/* Logo: doar text (fără iconiță) */
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-size: 21px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.logo-ifn { color: var(--accent); }
.logo-sub {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #8d8781; /* đủ tương phản trên nền trắng ấm (WCAG ~3.5) */
  margin-top: 4px;
}
.loading-logo .logo-sub { display: none; }
.logo-text strong { font-weight: 800; color: var(--ink); }
.logo-main { display: inline-block; }


.main-nav { display: flex; gap: 6px; }
.main-nav a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 10px;
  transition: background .15s, color .15s;
}
.main-nav > a:hover, .main-nav .nav-item > a:hover { background: var(--bg); color: var(--ink); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: .2s;
}

/* Dropdown navigație */
.nav-item { position: relative; }
.nav-item > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-item > a .caret { font-size: 8px; color: var(--muted); transition: transform .2s; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 110;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-item.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-item:hover > a .caret, .nav-item.open > a .caret { transform: rotate(180deg); }
.nav-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
}
.nav-dropdown a:hover { background: var(--accent-soft); color: var(--accent-dark); }

/* ============ Hero (pagina principală, fundal deschis) ============ */
.hero {
  position: relative;
  background: #faf6ef;
  padding: 76px 0 88px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(640px 340px at 10% -10%, rgba(220, 38, 38, .07), transparent 60%),
    radial-gradient(720px 420px at 95% 15%, rgba(217, 119, 6, .08), transparent 65%),
    linear-gradient(180deg, #faf6ef 0%, var(--white) 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-soft);
  border: 1px solid #fbd9d3;
  color: var(--accent-dark);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 26px;
}

.hero h1 {
  color: var(--ink);
  font-size: clamp(29px, 3.4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero h1 .accent { color: var(--accent); }

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 520px;
  line-height: 1.65;
}
.hero-sub strong { color: var(--ink); }

.hero-benefits { list-style: none; margin-bottom: 30px; }
.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 7px 0;
  font-size: 16px;
  color: var(--ink-2);
}
.hero-benefits strong { color: var(--ink); }
.hero-ic {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: var(--accent-soft);
  border: 1px solid #fbd9d3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-ic .ic { width: 16px; height: 16px; color: var(--accent-dark); vertical-align: 0; }

/* Atenție: selectorul trebuie să fie "> span" — un "span" simplu ar
   lovi și iconițele .ic din interior (mask pe background: currentColor). */
.trust-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-chips > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--ink-2);
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}
.trust-chips .ic { color: var(--green-dark); }

/* ============ Card formular / calculator ============ */
.form-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 34px 30px;
  color: var(--text);
  scroll-margin-top: 90px;
}
.form-card-head { text-align: center; margin-bottom: 24px; }
.form-card-head h2 { font-size: 23px; font-weight: 800; }
.form-card-head p { color: var(--muted); font-size: 13.5px; margin-top: 5px; }

.slider-group { margin-bottom: 22px; }
.slider-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.slider-label label { font-size: 14px; font-weight: 600; color: var(--ink-2); }
.slider-label output {
  font-size: 19px;
  font-weight: 800;
  color: var(--accent-dark);
  background: var(--accent-soft);
  padding: 4px 14px;
  border-radius: 9px;
  letter-spacing: -0.01em;
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 100px;
  background: linear-gradient(to right, var(--accent) 0%, var(--accent) 25%, var(--border) 25%, var(--border) 100%);
  outline: none;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--accent);
  box-shadow: 0 2px 8px rgba(15, 23, 42, .18);
  cursor: grab;
}
input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--accent);
  box-shadow: 0 2px 8px rgba(15, 23, 42, .18);
  cursor: grab;
}
.slider-minmax {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

.estimate-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 20px;
}
.estimate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-2);
}
.estimate-row strong { font-size: 21px; color: var(--accent-dark); letter-spacing: -0.01em; }
/* Al doilea rând (cost pe zile) — mai discret, separat printr-o linie fină */
.estimate-row-alt {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--border);
  font-size: 13px;
}
.estimate-row-alt strong { font-size: 16px; color: var(--green-dark); }
.estimate-note { font-size: 11.5px; color: var(--muted); margin-top: 8px; line-height: 1.5; }
.estimate-note strong { color: var(--green-dark); font-weight: 700; }

.checkbox-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
  cursor: pointer;
  line-height: 1.5;
}
/* Rândul opțional (marketing) — vizual mai discret decât cel obligatoriu */
.checkbox-row.optional { font-size: 12.5px; opacity: .85; }
.checkbox-row input {
  margin-top: 3px;
  width: 16px; height: 16px;
  accent-color: var(--accent);
  flex-shrink: 0;
  cursor: pointer;
}

.form-error {
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

.form-secure {
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 14px;
}
.form-social-proof {
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 6px;
}

/* ============ Bara de încredere ============ */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.trust-item { position: relative; }
.trust-item + .trust-item::before {
  content: "";
  position: absolute;
  left: -10px; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 60%;
  background: var(--border);
}
.trust-item strong {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.trust-item span { font-size: 13.5px; color: var(--muted); }

/* ============ Overlay încărcare ============ */
.loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(11, 17, 32, 0.6);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  padding: 20px;
}
.loading-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 42px 38px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.loading-logo {
  margin: 0 auto 18px;
  background: none;
}
.loading-logo .logo-text { font-size: 26px; animation: breathe 1.4s ease-in-out infinite; display: inline-flex; }
@keyframes breathe {
  0%, 100% { opacity: 1; }
  50% { opacity: .55; }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220, 38, 38, .3); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 16px rgba(220, 38, 38, 0); }
}
.loading-card h3 { font-size: 20px; margin-bottom: 8px; }
.loading-summary { font-size: 14px; color: var(--muted); margin-bottom: 22px; }

.progress-track {
  height: 8px;
  background: var(--bg);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 24px;
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 100px;
  transition: width .3s ease;
}

.loading-steps { list-style: none; text-align: left; }
.loading-steps li {
  padding: 7px 0;
  font-size: 14.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color .3s;
}
.loading-steps li.done { color: var(--ink); font-weight: 600; }
.loading-steps li.done .step-icon { color: var(--accent); }
.step-icon { font-weight: 800; }

/* ============ Modal date contact ============ */
.lead-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(11, 17, 32, 0.6);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  padding: 20px;
}
.lead-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 38px 34px 28px;
  max-width: 450px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  animation: leadIn .25s ease;
  max-height: 92vh;
  overflow-y: auto;
  scrollbar-width: none;
}
.lead-card::-webkit-scrollbar { display: none; }
.lead-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ef4444, #b91c1c);
}
@keyframes leadIn {
  from { opacity: 0; transform: translateY(14px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.lead-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .15s, color .15s;
}
.lead-close:hover { background: var(--border); color: var(--ink); }
/* Stepper 3 pași */
.lead-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 2px 24px 20px 0;
}
.ls {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
}
.ls i {
  font-style: normal;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10.5px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--muted);
}
.ls.done i { background: var(--green-soft); border-color: #bbf7d0; color: var(--green-dark); }
.ls.done { color: var(--green-dark); }
.ls.active i { background: var(--accent); border-color: var(--accent); color: var(--white); }
.ls.active { color: var(--ink); }
.ls-line { flex: 1; height: 2px; background: repeating-linear-gradient(90deg, var(--border) 0 6px, transparent 6px 11px); }

.lead-head { text-align: center; margin-bottom: 20px; padding-right: 0; }
.lead-head h3 { font-size: 22px; margin-bottom: 8px; letter-spacing: -0.02em; }
.lead-sub { font-size: 13.5px; color: var(--muted); margin-bottom: 12px; }
.lead-summary {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
}
.lead-field { margin-bottom: 14px; }
.lead-field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink-2);
}
/* Marcaj câmp obligatoriu */
.req { color: var(--accent); font-weight: 700; }
.req-note {
  font-size: 11.5px;
  color: var(--muted);
  text-align: right;
  margin: -6px 0 8px;
}
.lead-input { position: relative; }
.lead-input .ic {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px; height: 17px;
  color: #b3aca1;
  pointer-events: none;
}
.lead-input input { padding-left: 42px !important; }
.lead-field input {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--border);
  border-radius: 14px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--ink);
  background: #fdfbf7;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.lead-field input:focus {
  outline: none;
  background: var(--white);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, .1);
}
.lead-field input:focus + .ic, .lead-input:focus-within .ic { color: var(--accent); }
.lead-field input.invalid { border-color: var(--red); box-shadow: 0 0 0 4px rgba(220, 38, 38, .1); }
.lead-card .checkbox-row {
  padding: 8px 10px;
  border-radius: 10px;
  margin-bottom: 6px;
  transition: background .15s;
}
.lead-card .checkbox-row:hover { background: var(--bg); }
.lead-error {
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}
.lead-note {
  font-size: 11.5px;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* ============ Popup oferte ============ */
.offers-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(42, 24, 21, 0.6);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  padding: 22px;
}
.offers-panel {
  position: relative;
  background: var(--bg);
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
  max-width: 1000px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  padding: 34px 34px 28px;
  animation: leadIn .28s ease;
  scrollbar-width: none;
}
.offers-panel::-webkit-scrollbar { display: none; }
.offers-close {
  position: sticky;
  top: 0;
  margin-left: auto;
  display: grid;
  z-index: 5;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.offers-close-bottom { text-align: center; margin-top: 22px; }
.offers-head {
  text-align: center;
  margin: -22px 0 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.offers-found-badge {
  display: inline-block;
  background: var(--green-soft);
  color: var(--green-dark);
  border: 1px solid #bbf7d0;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.offers-head h2 { font-size: 30px; font-weight: 800; margin-bottom: 8px; }
.offers-head p { color: var(--muted); font-size: 15px; }

.offers-list { display: flex; flex-direction: column; gap: 18px; max-width: 920px; margin: 0 auto; }

.offer-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: box-shadow .18s ease, border-color .18s;
}
.offer-card:hover { box-shadow: var(--shadow); border-color: #e3c9c0; }

.offer-card.featured { border: 2px solid var(--accent); box-shadow: 0 8px 30px rgba(220, 38, 38, .1); }
.offer-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 100px;
}
.offer-badge.badge-popular { background: var(--amber); }

/* --- Rândul 1: logo · nume + rating · promoție --- */
.offer-head { display: flex; align-items: center; gap: 18px; }
/* Cadru dreptunghiular uniform pentru toate logo-urile IFN */
.offer-logo-img {
  width: 200px;
  height: 88px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.offer-card .offer-logo-img {
  width: 156px;
  height: 68px;
  padding: 10px 16px;
  background: #fff;
}
.offer-id { min-width: 0; }
.offer-id h3 { font-size: 19px; margin: 0 0 4px; letter-spacing: -0.01em; }
.offer-meta {
  display: flex;
  align-items: baseline;
  gap: 7px;
  font-size: 12.5px;
  color: var(--muted);
  white-space: nowrap;
}
.offer-rating {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.offer-rating .star { color: #d97706; font-size: 14px; }
.offer-rating small { color: var(--muted); font-weight: 600; font-size: 11.5px; }
.offer-rating:hover { color: var(--accent-dark); }
.offer-card .offer-tagline {
  margin: 0 0 0 auto;
  background: var(--green-soft);
  border: 1px solid #bbf7d0;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.offer-tagline {
  color: var(--green-dark);
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* --- Rândul 2: bandă cu 4 indicatori, separați prin linii fine --- */
.offer-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.offer-stat { padding: 11px 18px 12px; }
.offer-stat + .offer-stat { border-left: 1px solid var(--border); }
.offer-stat span {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
  margin-bottom: 3px;
}
.offer-stat strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* --- Rândul 3: beneficii + notă (stânga) · buton (dreapta) --- */
.offer-foot { display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.offer-foot-info { flex: 1; min-width: 0; }
.offer-features { display: flex; flex-wrap: wrap; gap: 6px; }
.offer-features span {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 100px;
}
.offer-features span.highlight {
  background: var(--green-soft);
  border-color: #bbf7d0;
  color: var(--green-dark);
  font-weight: 600;
}
.offer-note {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
  margin: 9px 0 0;
}

.offer-action { width: 216px; flex-shrink: 0; text-align: center; }
.offer-action .btn-cta { width: 100%; font-size: 15px; padding: 13px 20px; }
.offer-action small {
  display: block;
  margin-top: 7px;
  font-size: 11px;
  color: var(--muted);
}
.offer-review-link {
  display: block;
  margin-top: 9px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--accent-dark);
  text-decoration: none;
}
.offer-review-link:hover { text-decoration: underline; }

/* Buton "Vezi încă N oferte" */
.offers-more-wrap { text-align: center; padding-top: 4px; }
.offers-more {
  width: auto;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 32px;
}
.offers-more:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
  background: var(--accent-soft);
}
.popular-rating { justify-content: center; display: flex; margin-bottom: 8px; }

.offers-disclaimer {
  max-width: 920px;
  margin: 32px auto 0;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
}

/* ============ Cum funcționează ============ */
.how-section { padding: 96px 0; background: var(--white); scroll-margin-top: 70px; }

.section-title { text-align: center; font-size: 36px; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.025em; }
.section-sub { text-align: center; color: var(--muted); margin-bottom: 52px; font-size: 16.5px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  position: relative;
  transition: transform .18s, box-shadow .18s;
}
.step-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.step-num {
  position: absolute;
  top: 16px; left: 16px;
  width: 28px; height: 28px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 13px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.step-emoji { font-size: 36px; margin-bottom: 14px; }
.step-card h3 { font-size: 17px; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--muted); }

/* ============ Avantaje ============ */
.benefits-section { padding: 96px 0; background: var(--bg); scroll-margin-top: 70px; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s, box-shadow .18s;
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.benefit-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--accent-soft);
  border-radius: 14px;
  font-size: 24px;
  margin-bottom: 16px;
}
.benefit-card h3 { font-size: 17px; margin-bottom: 8px; }
.benefit-card p { font-size: 14px; color: var(--muted); }

/* ============ Testimoniale ============ */
.testimonials-section { padding: 96px 0; background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
}
.stars { color: #d97706; font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card p { font-size: 14.5px; color: var(--ink-2); margin-bottom: 18px; }
.testimonial-author strong { display: block; font-size: 14.5px; color: var(--ink); }
.testimonial-author span { font-size: 13px; color: var(--muted); }

/* ============ FAQ ============ */
.faq-section { padding: 96px 0; background: var(--bg); scroll-margin-top: 70px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item:hover { border-color: #d7dce6; }
.faq-item[open] { border-color: var(--accent); box-shadow: var(--shadow); }
.faq-item summary {
  padding: 18px 22px;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 56px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  background: var(--bg);
  border-radius: 50%;
  text-align: center;
  line-height: 26px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-2);
  transition: background .2s, color .2s;
}
.faq-item[open] summary::after { content: '−'; background: var(--accent); color: var(--white); }
.faq-item p {
  padding: 0 22px 18px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item[open] p { animation: fadeUp .28s ease; }

/* ============ CTA final (secțiune închisă) ============ */
.final-cta {
  background: var(--dark);
  padding: 88px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(560px 280px at 50% 0%, rgba(220, 38, 38, .22), transparent 65%);
  pointer-events: none;
}
.final-cta .container { position: relative; }
.final-cta h2 { color: var(--white); font-size: 32px; margin-bottom: 12px; letter-spacing: -0.025em; }
.final-cta strong { color: var(--white); }
.final-cta .btn-cta, .final-cta .btn-cta:hover { color: var(--white); }
.final-cta p { color: rgba(255,255,255,.65); margin-bottom: 30px; font-size: 16px; }

/* ============ Footer ============ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.6);
  padding: 64px 0 28px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr;
  gap: 40px 36px;
  margin-bottom: 40px;
}
/* Coloana „despre" ocupă tot rândul de sus; restul coloanelor curg dedesubt */
.footer-about { grid-column: 1 / -1; max-width: 640px; }
.footer-grid { grid-template-columns: repeat(4, 1fr); }
.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  padding: 4px 0;
  font-size: 13.5px;
  transition: color .15s;
}
.footer-col a:hover { color: #fca5a5; }
.footer-about p { font-size: 13.5px; line-height: 1.7; margin: 16px 0; }
.footer-about strong { color: rgba(255,255,255,.9); }
.logo-footer .logo-text { color: #f87171; }
.logo-footer .logo-text strong { color: var(--white); }
.logo-footer .logo-ifn { color: #f87171; }
.logo-footer .logo-sub { color: rgba(255,255,255,.4); }
.footer-hours { font-size: 13px; margin-top: 8px; }
.site-footer .trust-chips > span {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
  box-shadow: none;
}
.site-footer .trust-chips .ic { color: rgba(255,255,255,.7); }

.footer-legal {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  font-size: 12px;
  line-height: 1.65;
  color: rgba(255,255,255,.4);
}
.footer-legal p { margin-bottom: 10px; }
.footer-legal strong { color: rgba(255,255,255,.65); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 16px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}

/* ============ Cookie banner ============ */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 150;
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  color: var(--ink-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow-lg);
  font-size: 13.5px;
}
.cookie-banner a { color: var(--accent-dark); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner .btn-ghost { color: var(--muted); border-color: var(--border); }
.cookie-banner .btn-ghost:hover { color: var(--ink); border-color: var(--muted); }

/* ============ Pagini legale ============ */
.legal-page { background: var(--white); }
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}
.legal-content h1 { font-size: 34px; margin-bottom: 8px; }
.legal-updated { color: var(--muted); font-size: 13.5px; margin-bottom: 36px; }
.legal-content h2 { font-size: 21px; margin: 34px 0 12px; }
.legal-content p, .legal-content li { font-size: 15px; color: var(--text); margin-bottom: 12px; }
.legal-content ul { padding-left: 22px; margin-bottom: 14px; }
.legal-back {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

/* ============================================================
   PAGINI DE CONȚINUT
   ============================================================ */

/* ---- Breadcrumbs ---- */
.breadcrumbs {
  font-size: 13px;
  color: var(--muted);
  padding: 14px 0 0;
}
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumbs li + li::before { content: "›"; margin-right: 6px; color: #cbd5e1; }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--accent-dark); }
.breadcrumbs [aria-current] { color: var(--ink-2); font-weight: 500; }

/* ---- Hero pagini interioare (fundal deschis) ---- */
.page-hero {
  position: relative;
  background: #faf6ef;
  border-bottom: 1px solid var(--border);
  padding: 34px 0 44px;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(560px 280px at 90% -20%, rgba(220, 38, 38, .06), transparent 60%),
    linear-gradient(180deg, #faf6ef 0%, var(--white) 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero h1 {
  color: var(--ink);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 14px 0 14px;
  max-width: 860px;
}
.page-hero .page-hero-sub { color: var(--muted); font-size: 16.5px; max-width: 760px; line-height: 1.65; }
.page-hero .breadcrumbs { padding: 0; }
.page-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; font-size: 12.5px; color: var(--muted); }
.page-meta span {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 5px 13px;
  border-radius: 100px;
}

/* ---- Layout articol ---- */
.article-wrap { background: var(--white); }
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 56px;
  padding: 48px 0 88px;
  align-items: start;
}
.article-body { min-width: 0; max-width: 100%; }
.article-body > p, .article-body > ul, .article-body > ol { font-size: 16px; margin-bottom: 18px; color: var(--text); }
.article-body > p { line-height: 1.8; }
.article-body li { margin-bottom: 8px; }
.article-body h2 {
  font-size: 26px;
  position: relative;
  padding-bottom: 14px;
  margin: 52px 0 20px;
  scroll-margin-top: 96px;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h2::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 48px; height: 3px;
  border-radius: 100px;
  background: var(--accent);
}
.article-body h3 {
  font-size: 19px;
  margin: 30px 0 12px;
  scroll-margin-top: 96px;
  padding-left: 12px;
  border-left: 3px solid var(--accent);
}
.article-body a:not(.btn) { color: var(--accent-dark); text-decoration-color: rgba(220,38,38,.35); text-underline-offset: 2px; }
/* Nút trong articol: chữ luôn trắng, không gạch chân */
.article-body .btn, .article-body .btn:hover { text-decoration: none; }
.article-body .btn-cta, .article-body .btn-cta:hover { color: var(--white); }
.article-body .btn-primary, .article-body .btn-primary:hover { color: var(--white); }
.article-body strong { color: var(--ink); }

/* Liste cu buline */
.article-body > ul { list-style: none; padding-left: 4px; }
.article-body > ul > li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
}
.article-body > ul > li::before {
  content: "";
  position: absolute;
  left: 6px; top: .6em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

/* Pași numerotați */
.article-body > ol {
  list-style: none;
  padding-left: 0;
  counter-reset: steps;
  display: grid;
  gap: 10px;
}
.article-body > ol > li {
  counter-increment: steps;
  position: relative;
  padding: 15px 18px 15px 60px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0;
  transition: border-color .15s, box-shadow .15s;
}
.article-body > ol > li:hover { border-color: #d7dce6; box-shadow: var(--shadow-sm); }
.article-body > ol > li::before {
  content: counter(steps);
  position: absolute;
  left: 16px; top: 16px;
  width: 30px; height: 30px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

/* Răspuns direct (AEO) */
.direct-answer {
  background: #fbf5ea;
  border: 1px solid #efe3cd;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 28px;
  font-size: 16.5px;
  line-height: 1.7;
  position: relative;
  margin-top: 16px;
}
.direct-answer::before {
  content: "";
  position: absolute;
  top: -15px; left: 22px;
  width: 32px; height: 32px;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23dc2626' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18h6m-4 4h2'/%3E%3Cpath d='M12 2a7 7 0 0 1 4.9 11.9c-.7.7-.9 1.6-.9 2.1H8c0-.5-.2-1.4-.9-2.1A7 7 0 0 1 12 2z'/%3E%3C/svg%3E") no-repeat center / 16px;
  border: 1px solid var(--border);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}
.direct-answer strong { color: var(--ink); }

/* Casete informative */
.info-box {
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin: 22px 0;
  font-size: 14.5px;
  line-height: 1.65;
  border: 1px solid var(--border);
  border-left-width: 3px;
  background: var(--bg);
}
.info-box.tip { background: var(--green-soft); border-color: #d1fae5; border-left-color: var(--green); }
.info-box.warning { background: #fffbeb; border-color: #fde68a; border-left-color: var(--amber); }
.info-box.note { background: var(--bg); border-left-color: var(--ink-2); }
.info-box strong { color: var(--ink); }

/* Tabele */
.table-scroll {
  overflow-x: auto;
  max-width: 100%;
  min-width: 0;
  margin: 24px 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  -webkit-overflow-scrolling: touch;
}
.compare-table { width: 100%; border-collapse: collapse; font-size: 14px; background: var(--white); min-width: 640px; }
.compare-table th {
  background: var(--bg);
  color: var(--muted);
  text-align: left;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
  border-bottom: 1px solid var(--border);
}
.compare-table td { padding: 14px 16px; border-top: 1px solid var(--border); vertical-align: top; color: var(--text); }
.compare-table tr:first-child td { border-top: none; }
.compare-table tbody tr td { transition: background .15s; }
.compare-table tbody tr:hover td { background: #fafbfd; }
.compare-table .ct-name { font-weight: 700; color: var(--ink); white-space: nowrap; }
.compare-table .ct-good { color: var(--green-dark); font-weight: 600; }
.compare-table a.btn { padding: 8px 14px; font-size: 13px; white-space: nowrap; }

/* CTA banner în articol (card închis, minimal) */
.cta-banner {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 30px 32px;
  margin: 36px 0;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  right: -60px; top: -80px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 38, 38, .28), transparent 68%);
  pointer-events: none;
}
.cta-banner > div, .cta-banner > a { position: relative; z-index: 1; }
.cta-banner h3 { color: var(--white); font-size: 19px; margin-bottom: 6px; letter-spacing: -0.02em; }
.cta-banner strong, .cta-banner .ic { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,.6); font-size: 14px; }
.cta-banner .btn-cta { width: auto; padding: 14px 28px; flex-shrink: 0; }

/* Sidebar / TOC */
.article-sidebar { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 18px; }
.toc-box, .sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px;
  box-shadow: var(--shadow-sm);
}
.toc-box h2 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 14px; }
.toc-box ol { list-style: none; counter-reset: toc; }
.toc-box li { margin-bottom: 2px; }
.toc-box a {
  display: flex;
  gap: 8px;
  align-items: baseline;
  padding: 6px 0 6px 12px;
  font-size: 13.5px;
  color: var(--muted);
  text-decoration: none;
  border-left: 2px solid var(--border);
  transition: color .15s, border-color .15s;
}
.toc-box a::before {
  counter-increment: toc;
  content: counter(toc, decimal-leading-zero);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.toc-box a:hover { color: var(--ink); border-left-color: #cbd5e1; }
.toc-box a.active {
  color: var(--ink);
  font-weight: 600;
  border-left-color: var(--accent);
}
.sidebar-card h3 { font-size: 16px; margin-bottom: 8px; }
.sidebar-card p { font-size: 13.5px; color: var(--muted); margin-bottom: 14px; }
.sidebar-card .btn-cta { font-size: 14.5px; padding: 12px 18px; }
.sidebar-card .btn-primary { display: block; }

/* Caseta autor */
.author-box {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 40px 0 0;
  font-size: 14px;
}
.author-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.author-box strong { display: block; color: var(--ink); }
.author-box span { color: var(--muted); font-size: 13px; line-height: 1.6; }

/* Pro / Contra */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 22px 0; }
.pros, .cons {
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  font-size: 14px;
  background: var(--white);
  border: 1px solid var(--border);
}
.pros { border-top: 3px solid var(--green); }
.cons { border-top: 3px solid #f87171; }
.pros h4, .cons h4 {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12.5px;
  margin-bottom: 12px;
}
.pros h4 { background: var(--green-soft); color: var(--green-dark); }
.cons h4 { background: #fef2f2; color: #b91c1c; }
.pros ul, .cons ul { list-style: none; }
.pros li, .cons li { padding: 4px 0; color: var(--text); }

/* Card recenzie IFN (hub) */
.ifn-review {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 26px 0;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  scroll-margin-top: 96px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .18s;
}
.ifn-review:hover { box-shadow: var(--shadow); }
.ifn-review::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
}
.ifn-review-head { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 16px; }
.ifn-review-head .offer-logo-badge {
  width: auto;
  min-width: 130px;
  padding: 14px 18px;
  font-size: 17px;
  text-align: center;
  border-radius: var(--radius-sm);
  font-weight: 800;
}
.ifn-review-head h3 { font-size: 20px; margin: 0; }
.ifn-review-head .ifn-rating { margin-left: auto; text-align: right; }
.ifn-rating .stars { margin-bottom: 0; font-size: 15px; }
.ifn-rating small { color: var(--muted); font-size: 12px; }
.ifn-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 16px 0;
}
.ifn-fact {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 12px;
  color: var(--muted);
}
.ifn-fact strong { display: block; font-size: 14.5px; color: var(--ink); margin-top: 2px; }
.ifn-review .btn-cta { width: auto; padding: 13px 26px; font-size: 15px; }
.ifn-review-cta { display: flex; align-items: center; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.ifn-review-cta small { color: var(--muted); font-size: 12px; }

/* ---- Calculatoare ---- */
.calc-tool {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  margin: 30px 0;
}
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.calc-results {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.calc-results h3 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 16px; }
.calc-result-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
  color: var(--ink-2);
}
.calc-result-row:last-of-type { border-bottom: none; }
.calc-result-row strong { font-size: 19px; color: var(--ink); letter-spacing: -0.01em; }
.calc-result-row.calc-main strong { font-size: 28px; color: var(--accent-dark); }
.calc-note { font-size: 12px; color: var(--muted); margin-top: 14px; line-height: 1.55; }
.calc-field { margin-bottom: 18px; }
.calc-field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--ink-2); }
.calc-field input[type="number"], .calc-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
}
.calc-field input:focus, .calc-field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, .1);
}

.amort-toggle { margin: 20px 0 0; text-align: center; }
.amort-table-wrap { max-height: 420px; overflow-y: auto; margin-top: 18px; }
.amort-table-wrap .compare-table { min-width: 520px; }

/* ---- Grile de linkuri interne ---- */
.links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 26px 0; }
.link-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform .18s, box-shadow .18s, border-color .18s;
  display: block;
}
.link-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #d7dce6; }
.link-card .link-emoji { font-size: 26px; margin-bottom: 12px; display: block; }
.link-card .stars { font-size: 14px; margin-bottom: 10px; display: block; }
.link-card h3 { font-size: 16px; margin-bottom: 6px; color: var(--ink); }
.link-card p { font-size: 13.5px; color: var(--muted); }
.link-card .link-more { display: inline-block; margin-top: 12px; font-size: 13.5px; font-weight: 700; color: var(--accent-dark); }

.resources-section { padding: 96px 0; background: var(--white); }

/* ============================================================
   BỐ CỤC MỚI TRANG CHỦ
   ============================================================ */

/* Eyebrow deasupra titlurilor */
.eyebrow {
  text-align: center;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

/* Bandă parteneri sub hero */
.partners-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 26px 0;
}
.partners-strip p {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 34px;
}
.partners-logos img {
  height: 26px;
  width: auto;
  filter: grayscale(1) opacity(.55);
  transition: filter .2s;
}
.partners-logos img:hover { filter: grayscale(0) opacity(1); }

/* Bara de încredere: card plutitor */
.trust-bar { background: transparent; border: none; padding: 44px 0 0; }
.trust-bar-inner {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 20px;
}

/* Oferte populare pe prima pagină */
.popular-section { padding: 84px 0 10px; background: transparent; }
.popular-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.popular-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .18s, box-shadow .18s;
}
.popular-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.popular-card .offer-badge { top: -12px; left: 22px; }
.popular-card .offer-logo-img { width: 100%; max-width: 190px; height: 76px; margin: 0 auto 14px; display: block; }
.popular-card h3 { font-size: 17px; text-align: center; margin-bottom: 4px; }
.popular-card .offer-tagline { text-align: center; margin-bottom: 14px; }
.popular-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}
.popular-stats div {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 11.5px;
  color: var(--muted);
  text-align: center;
}
.popular-stats strong { display: block; font-size: 14px; color: var(--ink); }
.popular-card .btn-cta { margin-top: auto; }
.popular-card small { text-align: center; margin-top: 8px; font-size: 11.5px; color: var(--muted); }
.popular-more { text-align: center; margin-top: 26px; font-size: 14.5px; }
.popular-more a { font-weight: 700; }

/* Pași ca "timeline" cu conector */
.steps-grid { position: relative; }
.steps-grid::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 12%; right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0 10px, transparent 10px 18px);
}
.step-card { border: none; background: transparent; box-shadow: none; padding-top: 12px; }
.step-card:hover { transform: none; box-shadow: none; }
.step-num {
  position: relative;
  top: auto; left: auto;
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  font-size: 19px;
  background: var(--white);
  border: 2px solid var(--accent);
  color: var(--accent);
  box-shadow: 0 4px 14px rgba(220, 38, 38, .14);
  z-index: 1;
}
.step-emoji { display: none; }

/* Avantaje: 2 coloane, iconiță la stânga */
.benefits-grid { grid-template-columns: repeat(2, 1fr); }
.benefit-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  column-gap: 18px;
  align-items: start;
}
.benefit-icon { grid-row: 1 / span 2; margin-bottom: 0; }
.benefit-card h3, .benefit-card p { grid-column: 2; }

/* Testimoniale cu ghilimele */
.testimonial-card { position: relative; padding-top: 54px; }
.testimonial-card::before {
  content: "\201D";
  position: absolute;
  top: 6px; left: 20px;
  font-size: 72px;
  line-height: 1;
  font-weight: 800;
  color: var(--accent);
  opacity: .18;
  font-family: Georgia, serif;
}

/* FAQ împărțit în două coloane */
.faq-split {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.faq-split .section-title,
.faq-split .section-sub,
.faq-split .eyebrow { text-align: left; }
.faq-split .section-sub { margin-bottom: 26px; }
.faq-intro { position: sticky; top: 100px; }
.faq-contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}
.faq-contact-card h3 { font-size: 16px; margin-bottom: 6px; }
.faq-contact-card p { font-size: 13.5px; color: var(--muted); margin-bottom: 14px; }

/* CTA final: card rotunjit în container */
.final-cta { background: transparent; padding: 40px 0 96px; }
.final-cta .container {
  background: var(--dark);
  border-radius: 32px;
  padding: 72px 48px;
  overflow: hidden;
  position: relative;
}
.final-cta::before { display: none; }
.final-cta .container::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(480px 260px at 15% 0%, rgba(220, 38, 38, .3), transparent 65%),
    radial-gradient(420px 240px at 90% 100%, rgba(217, 119, 6, .18), transparent 65%);
  pointer-events: none;
}
.final-cta .container > * { position: relative; }

/* ---- Bară progres citire + buton sus ---- */
.reading-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--accent);
  z-index: 300;
  transition: width .1s linear;
}
.back-to-top {
  position: fixed;
  bottom: 22px; right: 22px;
  width: 46px; height: 46px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 17px;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s, transform .2s, visibility .2s, background .2s, color .2s;
  z-index: 140;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--ink); color: var(--white); }

/* ---- Animație la scroll ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: no-preference) {
  .in-view { animation: fadeUp .45s ease both; }
}

/* ============================================================
   SISTEM DE ICONIȚE SVG (înlocuiesc emoji-urile)
   Iconițe stil "line" (Lucide/Feather), colorabile via currentColor
   ============================================================ */
.ic {
  display: inline-block;
  width: 1.05em;
  height: 1.05em;
  background-color: currentColor;
  -webkit-mask: var(--i) no-repeat center / contain;
  mask: var(--i) no-repeat center / contain;
  vertical-align: -0.16em;
  flex-shrink: 0;
}
.ic-zap { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M13 2 3 14h9l-1 8 10-12h-9l1-8z'/%3E%3C/svg%3E"); }
.ic-star { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='m12 2 3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01z'/%3E%3C/svg%3E"); }
.ic-id { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='5' width='20' height='14' rx='2'/%3E%3Ccircle cx='8' cy='10.5' r='2'/%3E%3Cpath d='M5.5 15.5c.6-1.6 4.4-1.6 5 0'/%3E%3Cpath d='M14 9h6m-6 4h4'/%3E%3C/svg%3E"); }
.ic-refresh { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 12a9 9 0 1 1-2.64-6.36'/%3E%3Cpath d='M21 3v6h-6'/%3E%3C/svg%3E"); }
.ic-gift { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='8' width='18' height='4'/%3E%3Cpath d='M12 8v13m7-9v9H5v-9'/%3E%3Cpath d='M12 8s-1.5-6-5-4 5 4 5 4zm0 0s1.5-6 5-4-5 4-5 4z'/%3E%3C/svg%3E"); }
.ic-trophy { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9a6 6 0 0 0 12 0V3H6z'/%3E%3Cpath d='M6 5H3v2a4 4 0 0 0 4 4m11-6h3v2a4 4 0 0 1-4 4'/%3E%3Cpath d='M12 15v4m-4 2h8'/%3E%3C/svg%3E"); }
.ic-calc { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='2' width='16' height='20' rx='2'/%3E%3Cpath d='M8 6h8'/%3E%3Cpath d='M8 11h.01M12 11h.01M16 11h.01M8 15h.01M12 15h.01M16 15h.01M8 19h.01M12 19h.01M16 19h.01'/%3E%3C/svg%3E"); }
.ic-chart { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 20V10m6 10V4m6 16v-6'/%3E%3C/svg%3E"); }
.ic-book { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20'/%3E%3Cpath d='M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z'/%3E%3C/svg%3E"); }
.ic-sliders { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 21v-7m0-4V3m8 18v-9m0-4V3m8 18v-5m0-4V3M1 14h6m2-6h6m2 8h6'/%3E%3C/svg%3E"); }
.ic-help { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3'/%3E%3Cpath d='M12 17h.01'/%3E%3C/svg%3E"); }
.ic-bank { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 22h18M6 18v-7m4 7v-7m4 7v-7m4 7v-7M12 2 3 7h18z'/%3E%3C/svg%3E"); }
.ic-lock { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E"); }
.ic-check { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpath d='m22 4-10 10.01-3-3'/%3E%3C/svg%3E"); }
.ic-phone { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='2' width='14' height='20' rx='2'/%3E%3Cpath d='M12 18h.01'/%3E%3C/svg%3E"); }
.ic-search { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E"); }
.ic-money { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='6' width='20' height='12' rx='2'/%3E%3Ccircle cx='12' cy='12' r='2.5'/%3E%3Cpath d='M6 12h.01M18 12h.01'/%3E%3C/svg%3E"); }
.ic-calendar { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E"); }
.ic-clock { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E"); }
.ic-pen { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 20h9'/%3E%3Cpath d='M16.5 3.5a2.12 2.12 0 0 1 3 3L7 19l-4 1 1-4z'/%3E%3C/svg%3E"); }
.ic-mail { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='m22 6-10 7L2 6'/%3E%3C/svg%3E"); }
.ic-cookie { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M8.5 8.5h.01M15 10h.01M10 15h.01M14.5 14.5h.01'/%3E%3C/svg%3E"); }
.ic-bulb { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18h6m-4 4h2'/%3E%3Cpath d='M12 2a7 7 0 0 1 4.9 11.9c-.7.7-.9 1.6-.9 2.1H8c0-.5-.2-1.4-.9-2.1A7 7 0 0 1 12 2z'/%3E%3C/svg%3E"); }
.ic-alert { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10.29 3.86 1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z'/%3E%3Cpath d='M12 9v4m0 4h.01'/%3E%3C/svg%3E"); }
.ic-pin { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 17v5'/%3E%3Cpath d='M9 10.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16h14v-.76a2 2 0 0 0-1.11-1.79l-1.78-.9A2 2 0 0 1 15 10.76V6h1a2 2 0 0 0 0-4H8a2 2 0 0 0 0 4h1z'/%3E%3C/svg%3E"); }
.ic-file { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpath d='M14 2v6h6M16 13H8m8 4H8'/%3E%3C/svg%3E"); }
.ic-target { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Ccircle cx='12' cy='12' r='6'/%3E%3Ccircle cx='12' cy='12' r='2'/%3E%3C/svg%3E"); }
.ic-percent { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 5 5 19'/%3E%3Ccircle cx='6.5' cy='6.5' r='2.5'/%3E%3Ccircle cx='17.5' cy='17.5' r='2.5'/%3E%3C/svg%3E"); }
.ic-flame { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8.5 14.5A2.5 2.5 0 0 0 11 12c0-1.38-.5-2-1-3-1.072-2.143-.224-4.054 2-6 .5 2.5 2 4.9 4 6.5 2 1.6 3 3.5 3 5.5a7 7 0 1 1-14 0c0-1.153.433-2.294 1-3a2.5 2.5 0 0 0 2.5 2.5z'/%3E%3C/svg%3E"); }
.ic-flag { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1zm0 7v-7'/%3E%3C/svg%3E"); }
.ic-x { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m15 9-6 6m0-6 6 6'/%3E%3C/svg%3E"); }
.ic-user { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 21c0-4 3.6-6 8-6s8 2 8 6'/%3E%3C/svg%3E"); }
.ic-users { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E"); }
.ic-shield { --i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E"); }

/* Dimensiuni și culori pe context */
.nav-dropdown .ic { color: var(--accent); margin-right: 4px; }
.hero-badge .ic { color: var(--accent-dark); }
.step-emoji { display: flex; justify-content: center; color: var(--accent); }
.step-emoji .ic { width: 34px; height: 34px; }
.benefit-icon { color: var(--accent-dark); }
.benefit-icon .ic { width: 24px; height: 24px; }
.link-emoji { color: var(--accent); }
.link-emoji .ic { width: 26px; height: 26px; }
.offer-badge .ic { width: .9em; height: .9em; }
.offers-found-badge .ic { margin-right: 4px; }
.offer-tagline .ic { margin-right: 4px; }
.page-meta .ic { margin-right: 5px; color: var(--accent-dark); }
.sidebar-card h3 .ic { color: var(--accent); margin-right: 4px; }
.info-box .ic { margin-right: 3px; }
.info-box.warning .ic { color: var(--amber); }
.info-box.tip .ic { color: var(--accent-dark); }
.lead-summary .ic, .loading-summary .ic, .offers-head p .ic { margin-right: 4px; color: var(--accent-dark); }
.cookie-banner .ic { color: var(--accent-dark); margin-right: 4px; }
.footer-col a .ic { margin-right: 6px; }
.form-secure .ic, .lead-note .ic { margin-right: 3px; }

/* ============ Responsive ============ */
@media (max-width: 960px) {
  .hero { padding: 56px 0 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .offer-head { flex-wrap: wrap; }
  .offer-card .offer-tagline { margin-left: 0; white-space: normal; }
  .article-layout { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .article-sidebar { position: static; }
  .calc-grid { grid-template-columns: 1fr; gap: 24px; }
  .links-grid { grid-template-columns: repeat(2, 1fr); }
  .ifn-facts { grid-template-columns: repeat(2, 1fr); }
  .how-section, .benefits-section, .testimonials-section, .faq-section, .resources-section { padding: 72px 0; }
  .popular-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .faq-split { grid-template-columns: 1fr; gap: 28px; }
  .faq-intro { position: static; }
  .benefits-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
}

/* Meniu mobil/tabletă: hamburger sub 960px (meniul orizontal + dropdown-uri
   nu încap și ies în afara ecranului pe tabletă). */
@media (max-width: 960px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 10px 20px 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    z-index: 200;
    max-height: calc(100vh - 66px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 4px; border-bottom: 1px solid var(--border); border-radius: 0; }
  .main-nav a:last-child { border-bottom: none; }
  .nav-toggle { display: flex; }
  .btn-header { display: none; }

  /* Dropdown-uri deschise inline în meniul mobil */
  .nav-item .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--border);
    border-radius: 0;
    padding: 0 0 0 14px;
    margin: 4px 0 8px;
    min-width: 0;
  }
  .nav-item > a .caret { display: none; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .hero { padding: 44px 0 56px; }
  .form-card { padding: 26px 20px; }

  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
  .trust-item + .trust-item::before { display: none; }
  .trust-item strong { font-size: 24px; }

  .steps-grid, .benefits-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .offers-head h2 { font-size: 23px; }
  .offers-overlay { padding: 10px; }
  .offers-panel { padding: 20px 14px 18px; border-radius: 20px; max-height: 94vh; }
  .offer-card { gap: 14px; padding: 22px 16px 18px; }
  .offer-head { gap: 12px; }
  .offer-card .offer-logo-img { width: 118px; height: 54px; padding: 7px 10px; }
  .offer-id h3 { font-size: 17px; }
  .offer-stats { grid-template-columns: 1fr 1fr; }
  .offer-stat { padding: 9px 14px 10px; }
  .offer-stat:nth-child(3) { border-left: none; }
  .offer-stat:nth-child(n+3) { border-top: 1px solid var(--border); }
  .offer-stat strong { white-space: normal; font-size: 14px; }
  .offer-foot { flex-direction: column; align-items: stretch; gap: 14px; }
  .offer-action { width: 100%; }

  .section-title { font-size: 27px; }
  .how-section, .benefits-section, .testimonials-section, .faq-section, .resources-section { padding: 60px 0; }
  .partners-logos { gap: 12px 22px; }
  .partners-logos img { height: 20px; }
  .final-cta .container { padding: 52px 24px; border-radius: 24px; }
  .popular-section { padding: 60px 0 0; }
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-actions { justify-content: center; }

  .page-hero h1 { font-size: 26px; }
  .links-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; align-items: flex-start; padding: 26px 22px; }
  .ifn-review-head .ifn-rating { margin-left: 0; text-align: left; }
  .calc-tool { padding: 20px 16px; }

  /* ---------- Optimizări mobil homepage ---------- */
  /* Hero mai compact: titlu mai mic, spații reduse, calculatorul urcă mai sus */
  .hero { padding: 24px 0 40px; }
  .hero-inner { gap: 28px; }
  .hero h1 { font-size: 27px; margin-bottom: 14px; line-height: 1.18; }
  .hero-badge { margin-bottom: 18px; font-size: 12px; padding: 6px 13px; }
  .hero-sub { font-size: 16px; margin-bottom: 22px; }
  .hero-benefits { margin-bottom: 22px; }
  .hero-benefits li { font-size: 15px; padding: 5px 0; gap: 11px; }
  .hero-ic { width: 30px; height: 30px; border-radius: 9px; }
  .hero-ic .ic { width: 14px; height: 14px; }
  .form-card-head h2 { font-size: 21px; }

  /* Secțiuni mai strânse pe verticală */
  .how-section, .benefits-section, .testimonials-section, .faq-section, .resources-section { padding: 48px 0; }
  .section-title { font-size: 24px; }
  .section-sub, .how-section > .container > p { font-size: 15px; }
  .eyebrow { margin-bottom: 8px; }

  /* Timeline pași: fără linia orizontală (e pe o coloană), spații mai mici */
  .steps-grid { gap: 8px; }
  .steps-grid::before { display: none; }
  .step-card { padding-top: 4px; padding-bottom: 4px; }
  .step-num { width: 46px; height: 46px; font-size: 17px; margin-bottom: 10px; }
  .step-emoji { display: none; }

  /* Trust-bar compact */
  .trust-bar { padding: 24px 0 0; }
  .trust-bar-inner { gap: 20px 12px; padding: 22px 18px; }
  .trust-item strong { font-size: 22px; }
  .trust-item span { font-size: 12.5px; }

  /* Card oferte populare: valori care nu se rup urât */
  .popular-stats div strong { font-size: 14px; }
  .partners-strip { padding: 30px 0; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 24px; }
  .section-title { font-size: 22px; }
  .offer-stat strong, .popular-stats div strong { font-size: 13px; }
}
