/* ===========================================================================
   Comensio — foaie de stil partajată (marketing HTML, onepager)
   Scrisă MOBILE-FIRST: stilurile de bază țintesc telefonul, iar fiecare
   @media (min-width) adaugă progresiv pentru ecrane mai mari.

   Breakpoint-uri (min-width):
     base    telefon (fără media query)
     480px   fold / phablet
     540px   timeline mărit
     680px   grile pe 2 coloane
     768px   tabletă
     1024px  laptop
     1200px  pricing pe 4 coloane
     1440px  desktop
   =========================================================================== */

/* ===== FONTS (self-hosted — CSP permite doar font-src 'self') ===== */
@font-face{font-family:'Mulish';font-style:normal;font-weight:400 900;font-display:swap;src:url(/assets/fonts/Mulish-Variable-latin.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
@font-face{font-family:'Mulish';font-style:normal;font-weight:400 900;font-display:swap;src:url(/assets/fonts/Mulish-Variable-latin-ext.woff2) format('woff2');unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}

/* ===== TOKENS ===== */
:root {
  --orange: #E65A2F;
  --orange-600: #d24a20;
  --orange-100: #FFE9DC;
  --orange-50: #FFF4EC;
  --navy: #1A2332;
  --navy-700: #2A3346;
  --gray-700: #4A5565;
  --gray-500: #6B7585;
  --gray-300: #C8CED6;
  --gray-200: #E4E8EE;
  --gray-100: #F2F4F7;
  --gray-50:  #F8F9FB;
  --bg: #FEFBF8;
  --bg-peach: #FFF6EE;
  --white: #ffffff;
  --green: #1F8A5B;
  --shadow-sm: 0 1px 2px rgba(26, 35, 50, .06);
  --shadow-md: 0 8px 24px -8px rgba(26, 35, 50, .12), 0 2px 4px rgba(26, 35, 50, .04);
  --shadow-lg: 0 24px 48px -12px rgba(26, 35, 50, .18), 0 4px 8px rgba(26, 35, 50, .04);
  --shadow-orange: 0 12px 28px -8px rgba(230, 90, 47, .45);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --container: 1240px;
}

/* ===== BAZĂ ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Mulish', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 500;
  color: var(--navy);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(900px 540px at 84% -2%, rgba(254, 137, 60, .10), transparent 60%),
    radial-gradient(820px 640px at -8% 40%, rgba(230, 90, 47, .05), transparent 55%),
    radial-gradient(900px 660px at 110% 92%, rgba(254, 137, 60, .07), transparent 55%);
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 900; letter-spacing: -0.02em; color: var(--navy); line-height: 1.05; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
address { font-style: normal; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 4px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--navy); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0; z-index: 100; }
.skip-link:focus { left: 0; }

/* cod inline (adrese de tip subdomeniu) */
.inline-code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 14px; color: var(--orange); font-weight: 700; }
.inline-code-sm { font-size: 13px; }
.link-accent { color: var(--orange); font-weight: 800; }

/* ===== BUTOANE ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: clamp(.75rem, .6875rem + .28vw, .9375rem) clamp(1.25rem, 1.083rem + .74vw, 1.75rem);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: clamp(.9375rem, .917rem + .09vw, 1rem);
  border: 1.5px solid transparent;
  transition: transform .2s cubic-bezier(.4,0,.2,1), box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 26px -10px rgba(230,90,47,.6);
}
.btn-primary:hover { background: var(--orange-600); transform: translateY(-2px); box-shadow: 0 18px 34px -10px rgba(230,90,47,.62); }
.btn-ghost {
  background: var(--white);
  color: var(--navy);
  border-color: var(--gray-200);
}
.btn-ghost:hover { border-color: #cfd4dc; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-sm { padding: 12px 20px; font-size: 15px; }
.btn-arrow { transition: transform .2s ease; }
.btn:hover .btn-arrow { transform: translateX(3px); }
/* varianta „ghost" pe fundal navy (secțiunea CTA finală) */
.btn-cta-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.18); }
.btn-cta-ghost:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
}
.site-header::after {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.site-header.scrolled::after {
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--gray-200);
}
.header-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 74px;
}
.logo { display: flex; align-items: center; margin-right: auto; }
.logo img { height: 40px; width: auto; }
.header-end { display: flex; align-items: center; gap: 10px; }
.header-cta { display: none; }

/* hamburger */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  cursor: pointer;
  flex: none;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--navy);
  margin: 0 auto;
  border-radius: 2px;
}

/* drawer mobil */
.primary-nav {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: min(86vw, 360px);
  background: #fff;
  z-index: 95;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: 0 24px 70px -18px rgba(26, 35, 50, .5);
  transform: translateX(-100%);
  visibility: hidden;
  transition: transform .32s cubic-bezier(.4,0,.2,1), visibility .32s;
}
body.nav-open .primary-nav { transform: translateX(0); visibility: visible; }
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 17px 20px;
  border-bottom: 1px solid var(--gray-200);
}
.drawer-head .logo { margin-right: 0; }
.drawer-head .logo img { height: 44px; }
.nav-close {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--bg-peach);
  border: 1px solid var(--gray-200);
  color: var(--navy);
  cursor: pointer;
  flex: none;
}
.nav-close svg { width: 18px; height: 18px; }
.nav-list { display: flex; flex-direction: column; padding: 4px 20px; }
.nav-list a {
  display: block;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  padding: 11px 4px;
  border-bottom: 1px solid var(--gray-200);
  transition: color .2s ease;
}
.nav-list li:last-child a { border-bottom: none; }
.nav-list a:hover { color: var(--orange); }
.nav-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding: 12px 20px 20px;
}
.nav-login {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  text-align: center;
  padding: 9px;
  border-radius: var(--radius-pill);
  transition: color .2s ease;
}
.nav-login:hover { color: var(--orange); }
.nav-cta { width: 100%; padding: 11px 22px; font-size: 15px; }
.nav-divider { height: 1px; border: 0; background: var(--gray-200); margin: 6px 0; }
.nav-social { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.nav-social a {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--bg-peach);
  border: 1px solid var(--gray-200);
  color: var(--navy);
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.nav-social a:hover { color: var(--orange); background: var(--orange-50); border-color: var(--orange); }
.nav-social svg { width: 17px; height: 17px; }

/* overlay nav */
.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(16, 21, 32, .5);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: opacity .32s, visibility .32s;
}
body.nav-open .nav-overlay { opacity: 1; visibility: visible; }
body.nav-open { overflow: hidden; }

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  /* Înălțime full-viewport: conținutul centrat vertical, cu offset pentru
     header-ul fix (74px) ca să rămână optic echilibrat. `svh` evită saltul
     barei de adrese pe mobil; `vh` e fallback. */
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(74px + clamp(2rem, 1rem + 3vw, 4rem)) 0 clamp(2rem, 1rem + 3vw, 4rem);
  background: radial-gradient(1100px 480px at 70% -60px, rgba(254, 137, 60, .12), transparent);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(230, 90, 47, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230, 90, 47, .06) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 78%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 78%, transparent);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  text-align: center;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-50);
  color: var(--orange);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 28px;
}
.eyebrow .ico {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: 14px; height: 14px;
}
.eyebrow .ico span {
  background: var(--orange);
  border-radius: 2px;
}
.hero h1 {
  font-size: clamp(36px, 6.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--orange); }
.hero p.lede {
  color: var(--gray-700);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 36px;
  font-weight: 500;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-checks {
  display: flex;
  gap: 24px 36px;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--gray-700);
  font-size: 15px;
  font-weight: 600;
}
.hero-checks li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-checks svg { color: var(--green); flex-shrink: 0; }
.play-ico {
  display: inline-grid;
  place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--navy);
}
.play-ico svg { width: 8px; height: 8px; }

/* ===== PRIMITIVE DE SECȚIUNE ===== */
main > section { padding: 96px 0; }
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.section-eyebrow {
  display: inline-block;
  color: var(--orange);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
  margin: 0 0 16px;
}
.section-head h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.section-head h2 .accent { color: var(--orange); }
/* :not(.section-eyebrow) — eticheta e tot un <p>, dar are stilul ei propriu */
.section-head p:not(.section-eyebrow) {
  color: var(--gray-700);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
}

/* ===== DUREREA (PAIN) ===== */
.problems {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.feature.pain .icon { background: #fde7e3; color: #b13a1c; }
.pain-bridge {
  margin: 44px auto 0;
  max-width: 980px;
  background: linear-gradient(180deg, #fff8f2 0%, var(--white) 100%);
  border: 1px solid #fcd5be;
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.pain-bridge .dot {
  flex: none; width: 42px; height: 42px;
  border-radius: 12px; background: var(--orange);
  color: #fff; display: grid; place-items: center;
}
.pain-bridge p { color: var(--gray-700); font-size: 16.5px; line-height: 1.6; }
.pain-bridge strong { color: var(--navy); }

/* ===== FUNCȚIONALITĂȚI ===== */
.features {
  background: var(--bg);
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.feature {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
}
.feature .star {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--orange-50);
  color: var(--orange);
  font-weight: 800;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.feature .icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--orange-50);
  color: var(--orange);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.feature.starred {
  background: linear-gradient(180deg, #fff8f2 0%, var(--white) 100%);
  border-color: #fcd5be;
}
.feature h3 {
  font-size: 20px;
  margin-bottom: 8px;
  line-height: 1.2;
}
.feature p {
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.55;
}

/* ===== SOLUȚIA ===== */
.solution { background: var(--white); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.solution-copy { max-width: 820px; margin: 0 auto; text-align: center; }
.solution-copy h2 { font-size: clamp(32px, 4.2vw, 48px); line-height: 1.05; margin-bottom: 18px; }
.solution-copy h2 .accent { color: var(--orange); }
.solution-copy p:not(.section-eyebrow) { color: var(--gray-700); font-size: 16.5px; line-height: 1.65; margin-bottom: 16px; }
.solution-copy h3 { font-size: 21px; margin: 26px 0 10px; }

/* ===== CUM FUNCȚIONEAZĂ (SETUP, 3 PAȘI) ===== */
.how {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}
.how-head { max-width: none; }
.setup-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.setup-card { position: relative; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px; }
.setup-card .num { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: var(--orange); color: #fff; font-weight: 900; font-size: 18px; margin-bottom: 18px; }
.setup-card h3 { font-size: 21px; margin-bottom: 10px; line-height: 1.2; }
.setup-card p { color: var(--gray-700); font-size: 15px; line-height: 1.55; }
.setup-note { margin: 32px auto 0; max-width: 720px; text-align: center; color: var(--gray-700); font-size: 16px; line-height: 1.6; }
.setup-note strong { color: var(--navy); }

/* ===== TIMELINE (COMANDĂ DE LA MASĂ) ===== */
.timeline { position: relative; max-width: 720px; margin: 0 auto; }
.tl-step {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 18px;
  padding-bottom: 30px;
}
.tl-step:last-child { padding-bottom: 0; }
/* șină continuă: fiecare segment merge din centrul nodului curent până la următorul */
.tl-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 24px;
  transform: translateX(-1px);
  top: 24px;
  height: 100%;
  width: 2px;
  background: var(--gray-200);
}
.tl-node {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 900;
  font-size: 19px;
  border: 4px solid var(--white);
  box-shadow: 0 10px 22px -8px rgba(230,90,47,.55);
  position: relative;
  z-index: 1;
}
.tl-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.tl-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--gray-300); }
/* crestătură care arată din card spre șină */
.tl-card::before {
  content: "";
  position: absolute;
  left: -7px; top: 20px;
  width: 12px; height: 12px;
  background: var(--white);
  border-left: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  transform: rotate(45deg);
}
.tl-step .lbl {
  display: inline-block;
  white-space: nowrap;
  color: var(--orange);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.tl-card h3 { font-size: 20px; margin-bottom: 8px; line-height: 1.22; }
.tl-card p { color: var(--gray-700); font-size: 15.5px; line-height: 1.6; }

/* ===== STATISTICI (BEYOND) ===== */
.beyond {
  background: var(--bg);
}
.beyond-copy { max-width: 820px; margin: 0 auto; text-align: center; }
.beyond-copy h2 {
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.05;
  margin-bottom: 18px;
}
.beyond-copy h2 .accent { color: var(--orange); }
.beyond-copy p.lede {
  color: var(--gray-700);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 28px;
}
.beyond-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.beyond-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  text-align: left;
}
.beyond-list .dot {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--orange-50);
  color: var(--orange);
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.beyond-list strong { color: var(--navy); font-weight: 800; }
.beyond-list span { color: var(--gray-700); }
.beyond-note { margin: 24px 0 0; font-size: 14.5px; color: var(--gray-500); line-height: 1.6; }
.beyond-note strong { color: var(--navy); }

/* ===== ANPC ===== */
.anpc { background: var(--white); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.anpc-copy { max-width: 820px; margin: 0 auto; text-align: center; }
.anpc-copy h2 { font-size: clamp(32px, 4.2vw, 48px); line-height: 1.05; margin-bottom: 18px; }
.anpc-copy h2 .accent { color: var(--orange); }
.anpc-copy p:not(.section-eyebrow) { color: var(--gray-700); font-size: 16px; line-height: 1.65; margin-bottom: 16px; }
.anpc-note { max-width: 640px; margin: 24px auto 0; padding-top: 14px; border-top: 1px solid var(--gray-200); line-height: 1.55; }
.anpc-copy p.anpc-note { font-size: 13.5px; color: var(--gray-500); margin-bottom: 0; }

/* ===== PENTRU CINE (VERTICALE) ===== */
.verticals { background: var(--bg); }
.vert-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.vert { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 24px; display: flex; gap: 16px; align-items: flex-start; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.vert:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gray-300); }
.vert .icon { flex: none; width: 46px; height: 46px; border-radius: var(--radius-md); background: var(--orange-50); color: var(--orange); display: grid; place-items: center; }
.vert h3 { font-size: 18px; margin-bottom: 6px; }
.vert p { color: var(--gray-700); font-size: 14.5px; line-height: 1.55; }

/* ===== PRICING ===== */
.pricing {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.billing-toggle {
  display: inline-flex;
  background: var(--gray-100);
  border-radius: var(--radius-pill);
  padding: 4px;
  margin: 0 auto 48px;
  align-items: center;
}
.billing-toggle-wrap { text-align: center; }
.billing-toggle button {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 14px;
  color: var(--gray-500);
  transition: all .15s ease;
}
.billing-toggle button.active {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.billing-toggle .save {
  display: inline-block;
  margin-left: 6px;
  background: var(--green);
  color: white;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 800;
}
.plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.plan {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: border-color .2s ease, transform .2s ease;
}
.plan:hover { border-color: var(--gray-300); }
.plan.featured {
  border-color: var(--orange);
  background: linear-gradient(180deg, #fff8f2 0%, var(--white) 60%);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.plan.featured .pop {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.plan h3 {
  font-size: 20px;
  margin-bottom: 6px;
}
.plan .tagline {
  color: var(--gray-700);
  font-size: 14px;
  line-height: 1.5;
}
.plan .price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.plan .price .amount {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1;
}
.plan .price .amount-text { font-size: 30px; }
.plan .price .unit {
  color: var(--gray-500);
  font-size: 14px;
  font-weight: 700;
}
.plan .price-sub {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 4px;
  min-height: 18px;
}
.plan .price-sub strong { color: var(--green); }
.plan ul.features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--gray-200);
  padding-top: 20px;
}
.plan ul.features-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--navy);
  line-height: 1.5;
  font-weight: 600;
}
.plan ul.features-list li svg { color: var(--green); flex-shrink: 0; margin-top: 3px; }
.plan .btn {
  margin-top: auto;
  justify-content: center;
  padding: 14px 20px;
  font-size: 15px;
}
.plan-ghost {
  background: var(--white); color: var(--navy);
  border: 1.5px solid var(--gray-300);
  box-shadow: none;
}
.plan-ghost:hover { border-color: var(--navy); }

/* note sub planuri */
.pricing-notes { max-width: 900px; margin: 44px auto 0; display: flex; flex-direction: column; gap: 14px; }
.pricing-note { display: flex; gap: 14px; align-items: flex-start; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 18px 22px; }
.pricing-note .ck { flex: none; width: 28px; height: 28px; border-radius: 8px; background: #d9f1e6; color: var(--green); display: grid; place-items: center; }
.pricing-note p { color: var(--gray-700); font-size: 15px; line-height: 1.5; }
.pricing-note strong { color: var(--navy); }
.pricing-trust { text-align: center; margin-top: 22px; color: var(--gray-500); font-size: 14px; font-weight: 600; }

/* ===== RECENZII ===== */
.reviews { background: var(--bg); }
.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.review {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow-sm);
}
.review blockquote {
  margin: 0;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 600;
  flex: 1;
}
.review .who {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-200);
}
.review .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange-50);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 16px;
}
.review .who-name { font-weight: 800; color: var(--navy); font-size: 15px; line-height: 1.2; }
.review .who-role { font-size: 13px; color: var(--gray-500); margin-top: 2px; }

/* ===== FAQ ===== */
.faq { background: var(--white); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .2s ease, background .2s ease;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 800;
  font-size: 17px;
  color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .chev {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: grid;
  place-items: center;
  transition: transform .25s ease;
}
.faq-item[open] { background: var(--white); border-color: var(--orange-100); }
.faq-item[open] .chev { transform: rotate(180deg); background: var(--orange); color: white; border-color: var(--orange); }
.faq-item .body {
  padding: 0 24px 22px;
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.65;
}

/* ===== CTA FINAL ===== */
.final-cta {
  padding: 96px 0;
  background:
    radial-gradient(ellipse 60% 100% at 50% 0%, rgba(230,90,47,.18), transparent 70%),
    var(--navy);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000 30%, transparent 100%);
}
.final-cta .inner { position: relative; max-width: 760px; margin: 0 auto; }
.final-cta h2 {
  color: white;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}
.final-cta h2 .accent { color: var(--orange); }
.final-cta p {
  color: rgba(255,255,255,.78);
  font-size: 18px;
  margin-bottom: 36px;
}
.final-cta .hero-ctas { margin-bottom: 0; }
.final-cta .hero-checks { color: rgba(255,255,255,.7); justify-content: center; margin-top: 28px; }
.final-cta .hero-checks svg { color: #2bd07f; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 15px;
  max-width: 320px;
  line-height: 1.6;
  margin-top: 18px;
}
.footer-brand .logo-wrap img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-col h4 {
  color: white;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 15px; transition: color .15s ease; }
.footer-col a:hover { color: white; }
.footer-contact { margin-top: 20px; display: flex; flex-direction: column; gap: 6px; font-size: 14px; }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  font-size: 14px;
  text-align: center;
}
.footer-bottom .legal {
  display: flex; gap: 24px; flex-wrap: wrap; justify-content: center;
}
.footer-legal-note { font-size: 12.5px; color: rgba(255,255,255,.45); line-height: 1.55; max-width: 640px; margin-top: 6px; }

/* ===== REVEAL LA SCROLL =====
   Gated pe html.js: fără JS conținutul rămâne 100% vizibil (SEO/no-JS). */
html.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
html.js .reveal.is-in { opacity: 1; transform: none; }

/* ===========================================================================
   RESPONSIVE — mobile-first
   =========================================================================== */

/* fold / phablet — min 480px */
@media (min-width: 480px) {
  .header-cta { display: inline-flex; }
}

/* timeline mărit — min 540px */
@media (min-width: 540px) {
  .tl-step { grid-template-columns: 56px 1fr; column-gap: 26px; }
  .tl-step:not(:last-child)::before { left: 28px; top: 28px; }
  .tl-node { width: 56px; height: 56px; font-size: 22px; }
  .tl-card { padding: 20px 24px; }
}

/* grile pe 2 coloane — min 680px */
@media (min-width: 680px) {
  .vert-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
}

/* tabletă — min 768px */
@media (min-width: 768px) {
  .feature-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .setup-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .plans { grid-template-columns: 1fr 1fr; gap: 20px; }
  .review-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 56px; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* laptop — min 1024px */
@media (min-width: 1024px) {
  .menu-toggle { display: none; }
  .header-end { display: none; }
  .nav-overlay { display: none; }
  .drawer-head { display: none; }
  body.nav-open { overflow: visible; }
  .header-bar { display: flex; align-items: center; gap: 0; }
  .logo { margin-right: 0; }
  .logo img { height: 48px; }
  .primary-nav {
    position: static;
    width: auto;
    flex-direction: row;
    align-items: center;
    background: transparent;
    box-shadow: none;
    transform: none;
    visibility: visible;
    overflow: visible;
    flex: 1;
  }
  .nav-list { margin: 0 auto; flex-direction: row; padding: 0; gap: 22px; }
  .nav-list a { border-bottom: none; padding: 8px 2px; font-size: 15px; font-weight: 600; white-space: nowrap; }
  .nav-actions { flex-direction: row; align-items: center; gap: 14px; margin: 0; padding: 0; }
  .nav-divider, .nav-social { display: none; }
  .nav-login { padding: 10px 6px; font-size: 15px; border-radius: 0; }
  .nav-cta { width: auto; padding: 12px 22px; font-size: 15px; }

  .feature-grid { grid-template-columns: 1fr 1fr 1fr; }
  /* „Problema" are 4 carduri — pe desktop stau 2 pe rând, nu 3 */
  .problems .feature-grid { grid-template-columns: 1fr 1fr; max-width: 1080px; margin: 0 auto; }
  .vert-grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* pricing pe 4 coloane — min 1200px */
@media (min-width: 1200px) {
  .plans { grid-template-columns: repeat(4, 1fr); }
  .plan.featured { transform: translateY(-12px); }
}

/* desktop — min 1440px */
@media (min-width: 1440px) {
  .logo img { height: 56px; }
}

/* ===== MIȘCARE REDUSĂ ===== */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
  html.js .reveal { opacity: 1; transform: none; }
}
