/* ===== Root & base ===== */
:root{
  --ink:#0b0c0f; --muted:#616a78; --brand:#0a74ff; --accent:#34c759; --paper:#fff;
  --ring:0 0 0 10px rgba(10,116,255,.12);
  --radius:20px; --shadow:0 10px 30px rgba(14,24,64,.08); --elev:0 12px 28px rgba(14,24,64,.12);
  --container:1140px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0; color:var(--ink);
  font:16px/1.6 -apple-system,BlinkMacSystemFont,Segoe UI,Inter,Roboto,system-ui,Arial,sans-serif;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
  background:
    radial-gradient(900px 600px at 60% 12%, rgba(10,116,255,.08), transparent 60%),
    radial-gradient(1200px 800px at 0% 100%, rgba(52,199,89,.06), transparent 65%),
    linear-gradient(180deg,#f7f9ff 0%,#eef3ff 50%, #f7f9ff 100%);
  overflow-x:hidden;
}
/* Blochează selecția textului, dar nu la inputuri */
body, body *:not(input):not(textarea):not(button) {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

a{color:var(--brand); text-decoration:none; cursor: pointer;}
.container{width:min(var(--container), 100% - 28px); margin-inline:auto}
button{cursor: pointer;}
/* ===== Mouse glow (single) ===== */
.mouse-glow{
  position:fixed; width:36vmin; height:36vmin; border-radius:50%; pointer-events:none; z-index:999;
  background:radial-gradient(closest-side, rgba(10,116,255,.12), transparent 70%);
  filter:blur(12px); transform:translate(-50%,-50%); mix-blend-mode:multiply; opacity:.9; transition:opacity .2s ease
}

/* Hover/focus */
.hoverable{transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease}
.hoverable:hover{transform:translateY(-1px); box-shadow:var(--elev); border-color:rgba(10,116,255,.18)}
.focusable:focus-visible{outline:none; box-shadow:var(--ring), var(--elev)}

/* ===== Header ===== */
header{position:sticky; top:0; z-index:60}
.hdr-wrap{padding:10px 0}
.hdr{
  display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:12px;
  padding:12px 16px; border-radius:18px;
  background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(248,250,255,.78));
  border:1px solid rgba(14,24,64,.08); box-shadow:0 10px 30px rgba(14,24,64,.10);
  backdrop-filter:saturate(170%) blur(14px);
  transition:transform .2s ease, background .2s ease, box-shadow .2s ease
}
.hdr.shrink{transform:translateY(-4px); background:rgba(255,255,255,.9); box-shadow:0 14px 34px rgba(14,24,64,.14)}
.brand{display:flex; cursor:pointer !important;}
.brand svg{width:24px; height:24px;}
.nav{justify-self:center; display:flex; align-items:center; gap:22px}
/* Nav links – premium */
.nav a{
  position:relative;
  color:#0b0c0f;
  opacity:.85;
  text-decoration:none;          /* fără underline clasic */
  padding:6px 0;                 /* spațiu pt underline animat */
  font-weight:600;
  transition:color .25s ease, opacity .25s ease;
}
.nav a::after{
  content:"";
  position:absolute;
  left:50%;                      /* pornește din centru */
  bottom:-4px;
  width:0;
  height:2px;
  background:linear-gradient(90deg,#0a74ff,#4aa0ff);
  border-radius:4px;
  transition:width .25s ease,left .25s ease,opacity .25s ease;
  opacity:.9;
}
.nav a:hover{
  color:#0a74ff;
  opacity:1;
}
.nav a:hover::after{
  width:100%;
  left:0;
}

/* link activ (păstrează underline-ul) – adaugă .is-active pe linkul curent */
.nav a.is-active{
  color:#0a74ff;
  opacity:1;
}
.nav a.is-active::after{
  width:100%;
  left:0;
}

/* accesibilitate: focus vizibil, fără să sară layout-ul */
.nav a:focus-visible{
  outline:none;
  box-shadow:var(--ring);
  border-radius:10px;
}

.cta{justify-self:end}

.btn{display:inline-flex; align-items:center; gap:10px; height:44px; padding:0 18px; font-weight:800; letter-spacing:.2px; border-radius:14px; border:1px solid rgba(14,24,64,.12)}
.btn.primary{color:#fff; background:linear-gradient(90deg,#0a74ff,#4aa0ff); box-shadow:0 10px 24px rgba(10,116,255,.22), inset 0 1px 0 rgba(255,255,255,.35)}
.btn.primary:hover{box-shadow:0 14px 28px rgba(10,116,255,.26)}

/* ===== Hero ===== */
.hero{padding:64px 0 36px}
.heroGrid{display:grid; grid-template-columns:1.02fr .98fr; gap:28px; align-items:center}
.eyebrow{display:inline-flex; align-items:center; gap:8px; padding:6px 12px; border-radius:999px; border:1px solid rgba(14,24,64,.08); background:rgba(255,255,255,.88); box-shadow:var(--shadow); font-size:13px}
h1{font-size:clamp(28px,6vw,56px); line-height:1.06; letter-spacing:-.02em; margin:12px 0 8px}
h1 .tight{display:inline-block}
.lead{font-size:clamp(15px,3.7vw,19px); color:var(--muted)}
.actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px}
.grad{background:linear-gradient(90deg,#0a74ff,#4aa0ff,#34c759,#7ee7a8,#0a74ff); background-size:200% 100%; -webkit-background-clip:text; background-clip:text; color:transparent; animation:shift 9s ease infinite}

.hero-chips{display:flex; gap:8px; flex-wrap:wrap; margin-top:10px}
.chip{display:inline-flex; align-items:center; gap:6px; padding:6px 10px; border-radius:999px; background:#fff; border:1px solid rgba(14,24,64,.10); font-size:13px; opacity:.95}
.chip svg{width:14px; height:14px}

/* Hero right visuals */
.device{border-radius:18px; position:relative; overflow:hidden; background:linear-gradient(160deg,#fff,#f2f6ff); border:1px solid rgba(14,24,64,.08); box-shadow:var(--shadow)}
.deviceInner{padding:12px; display:grid; gap:10px}
.mgrid{display:grid; grid-template-columns:1fr 1fr; gap:10px}
.tile{border-radius:14px; background:linear-gradient(180deg,#fff,#f3f6ff); border:1px solid rgba(14,24,64,.08); box-shadow:var(--shadow); padding:12px}
.tile h4{margin:0 0 4px}
.sub{color:var(--muted)}
.list{list-style:none; margin:10px 0 0; padding:0}
.list li{display:flex; gap:8px; margin:8px 0; align-items:flex-start; word-break:break-word; overflow-wrap:anywhere}

section{padding:64px 0}
.title{font-size:clamp(22px,5.2vw,34px); margin:0 0 8px}
.card{background:#fff; border:1px solid rgba(14,24,64,.08); border-radius:16px; padding:16px; box-shadow:var(--shadow)}

.grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}

/* Tabs (Ce primești) */
.tabs{border:1px solid rgba(14,24,64,.08); border-radius:16px; background:#fff; box-shadow:var(--shadow)}
.tab-head{display:flex; gap:6px; padding:8px; border-bottom:1px solid rgba(14,24,64,.06)}
.tab-btn{flex:1; padding:10px 12px; border-radius:10px; background:#f6f8ff; border:1px solid rgba(14,24,64,.06); font-weight:600}
.tab-btn[aria-selected="true"]{background:#fff; border-color:rgba(10,116,255,.25); box-shadow:inset 0 0 0 1px rgba(10,116,255,.12)}
.tab-panels{padding:14px}
.tab-panel{display:none}
.tab-panel.tab-active{display:grid; grid-template-columns:1fr 1fr; gap:12px}
.tab-panel .card{min-height:120px}

/* Pricing + preview */
.pricing{display:grid; grid-template-columns:1fr 1fr; gap:16px; align-items:stretch}
.price{border-radius:24px; padding:22px; background:linear-gradient(160deg,#fff,#f6f8ff); border:1px solid rgba(14,24,64,.08); box-shadow:var(--shadow)}
.price .eyebrow{display:inline-block; padding:6px 12px; border-radius:999px; background:#fff; border:1px solid rgba(14,24,64,.08)}
.price .num{font-size:clamp(32px,6.5vw,52px); line-height:1; letter-spacing:-.4px; margin:6px 0 8px; background:linear-gradient(90deg,#0a74ff,#4aa0ff); -webkit-background-clip:text; background-clip:text; color:transparent}
.pay-modes{display:flex; gap:8px; flex-wrap:wrap}
.mode{padding:6px 10px; border-radius:999px; background:#fff; border:1px solid rgba(14,24,64,.12); font-size:13px; cursor:pointer}
.mode[aria-pressed="true"]{border-color:rgba(10,116,255,.36); box-shadow:inset 0 0 0 1px rgba(10,116,255,.18)}
.microcopy{font-size:12px; color:var(--muted)}

.feat{display:grid; gap:8px; margin-top:10px}
.feat-item{display:flex; align-items:center; gap:10px; padding:10px 12px; border-radius:12px; border:1px solid rgba(14,24,64,.06); background:#fff; cursor:pointer}
.feat-item.is-active{border-color:rgba(10,116,255,.28); box-shadow:0 6px 20px rgba(10,116,255,.12)}

.preview{border-radius:18px; padding:0; background:#fff; border:1px solid rgba(14,24,64,.08); box-shadow:var(--shadow); position:relative; min-height:clamp(280px, 48vh, 420px); overflow:hidden; display:grid}
.preview-pane{position:absolute; inset:0; opacity:0; transform:translateY(8px) scale(.98); transition:opacity .28s ease, transform .28s cubic-bezier(.2,.8,.2,1); pointer-events:none;}
.preview-pane.is-active{opacity:1; transform:translateY(0) scale(1); pointer-events:auto}

/* Mini-site mock */
.mini-site{
  border:1px solid #eef2ff;
  border-radius: 16px;
  overflow:hidden;
  background: linear-gradient(180deg,#ffffff,#fbfbff);
}
.ms-header{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 14px;
  background: linear-gradient(180deg,#f8faff,#eef2ff);
  border-bottom:1px solid #eef2ff;
}
.ms-brand{ font-weight:800; }
.ms-nav{ display:flex; gap:8px; }
.ms-pill{
  display:inline-flex; align-items:center; padding:6px 10px;
  border:1px solid #e5e7eb; border-radius:999px; font-size:12px; color:#334155;
  background:#fff;
}
.ms-pill.ghost{ background:#f7f8ff; border-color:#e9ecff; color:#3b4a7a; }

.ms-hero{ padding:18px 14px 20px; }
.ms-hero h3{ margin:0 0 12px; font-size: clamp(18px, 2.2vw, 22px); }
.ms-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:12px; margin-bottom:12px; }
.ms-blk {
  height: 120px;
  border-radius: 14px;
  background: linear-gradient(135deg,#f5f7ff,#eef1ff);
  background-image: url('/assets/mock-hero.svg');
  background-size: cover;
  background-position: center;
}
.ms-cta{ display:flex; align-items:center; gap:10px; }
.ms-btn{
  border:0; border-radius:12px; padding:10px 14px; font-weight:700; color:#eeeeee;
  background: linear-gradient(90deg,var(--brand),var(--brand-2));
  box-shadow: 0 8px 18px rgba(37,99,235,.16);
}

.ms-section{ padding:14px; border-top:1px solid #f0f3ff; }
.ms-cards{ display:grid; grid-template-columns: repeat(3,1fr); gap:10px; }
.ms-card{
  border:1px solid #eef2ff; border-radius:14px; padding:10px 12px; font-size:14px;
  background:#fff; box-shadow: 0 1px 0 rgba(16,24,40,.02);
}
.ms-gallery{ display:grid; grid-template-columns: repeat(4,1fr); gap:8px; }
.ms-ph {
  border-radius: 12px;
  height: 90px;
  background: linear-gradient(135deg, #fafbff, #eef1ff);
  display: grid;
  place-items: center;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 600;
}
.ms-ph::after {
  content: "Imagine demo";
}

.ms-footer{ padding:10px 14px; font-size:12px; color:#667085; background:#fafbff; border-top:1px solid #eef2ff; }


/* Google map preview */
.map-wrap{
  position:relative; border-radius:16px; overflow:hidden;
  border:1px solid #eef2ff; height:100%; background:#f2f5ff;
}
.map-frame{ width:100%; height:100%; border:0; background:#eaf0ff; }
.map-dim{position:absolute; inset:0; background:rgba(8,12,20,.35)}
.map-pinlbl{position:absolute; left:50%; top:50%; transform:translate(-50%,-38%); display:grid; place-items:center; pointer-events:none}
.pin{width:28px; height:28px; background:#ff4d6d; border-radius:50% 50% 50% 0; rotate:-45deg; box-shadow:0 6px 14px rgba(255,77,109,.35)}
.pin::after{content:""; position:absolute; inset:6px; border-radius:50%; background:#fff}
.lbl{margin-top:5px; margin-bottom:10px; padding:6px 10px; border-radius:10px; background:rgb(255, 255, 255); color:#34a1fa; border:1px solid rgba(255,255,255,.28); font-weight:700; box-shadow:0 6px 16px rgba(14,24,64,.25)}

/* Facebook mock */
.mock-fb{ border:1px solid #eef2ff; border-radius:16px; overflow:hidden; background:#fff; }
.fb-cover{ height:92px; background: linear-gradient(90deg,#c7d2fe,#dbeafe); position:relative; }
.fb-avatar{ width:64px; height:64px; border-radius:50%; background:#fff; position:absolute; left:16px; bottom:-32px; border:3px solid #fff; box-shadow: var(--shadow); }
.fb-bar{ padding:42px 16px 12px; display:flex; align-items:center; justify-content:space-between; border-bottom:1px solid #eef2ff; }
.fb-title{ font-weight:800; }
.fb-actions{ display:flex; gap:8px; }
.fb-chip{ background:#f1f5ff; border:1px solid #e4e9ff; padding:6px 10px; border-radius:999px; font-size:12px; }
.fb-tabs{ display:flex; gap:12px; padding:10px 16px; border-bottom:1px solid #eef2ff; color:#3b4a7a; }
.fb-feed{ padding:12px 16px; display:grid; gap:12px; }
.fb-post{ border:1px solid #eef2ff; border-radius:14px; padding:12px; background:#fff; }
.fb-media{ height:120px; background: linear-gradient(135deg,#f6f7ff,#eef2ff); border-radius:12px; }


/* Reviews mock */
.mock-rev{height:100%; display:grid; place-items:center}
.rev-card{display:grid; gap:10px; justify-items:center; text-align:center}
.qr{ width:120px; height:120px; background: repeating-linear-gradient(45deg,#111 0 6px,#fff 6px 12px); border-radius:10px; }
.line-strong{ font-weight:700; }
.nfc-card{ border:1px dashed #cbd5e1; border-radius:14px; padding:12px; display:grid; place-items:start; background:#fbfcff; }
.nfc-wave{ width:100%; height:6px; background: linear-gradient(90deg,transparent,rgba(124,58,237,.25),transparent); border-radius:99px; animation: wave 1.6s infinite; }
.nfc-title{ font-weight:700; margin-top:6px; }
.nfc-note{ color: var(--muted); font-size:12px; }
@keyframes wave{ 0%{transform: translateX(-40%)} 50%{transform: translateX(40%)} 100%{transform: translateX(-40%)} }


/* Reports (SVG) */
.mock-rap{ border:1px solid #eef2ff; border-radius:16px; background:#fff; overflow:hidden; }
.rap-head{ padding:14px 14px 0; display:flex; align-items:center; justify-content:space-between; }
.rap-title{ font-weight:800; }
.legend{ display:flex; gap:8px; }
.lgd{
  display:inline-flex; align-items:center; gap:8px; border:1px solid #e5e7eb; background:#fff; padding:6px 10px; border-radius:999px; font-size:12px;
}
.lgd.is-on{ border-color:#c7d2fe; background:#f7f9ff; }
.dotc{ width:10px; height:10px; border-radius:50%; display:inline-block; }
.dotc.blue{ background:#2563eb; } .dotc.green{ background:#34c759; }

.kpis{ display:grid; grid-template-columns: repeat(3,1fr); gap:10px; padding:12px 14px; }
.kpi{ border:1px solid #eef2ff; border-radius:12px; padding:10px 12px; background:#fff; }
.kpi .lbl{ color:#475569; font-size:12px; }
.kpi .v{ font-weight:800; font-size:20px; }

.chart{ position:relative; border-top:1px solid #eef2ff; background:#fcfdff; }
.chart svg{ width:100%; height:240px; display:block; }
.line{ fill:none; stroke-width:2.5; }
.line.blue{ stroke:#2563eb; } .line.green{ stroke:#34c759; }
.vguide{ stroke: rgba(2,6,23,.15); stroke-width:1; }
.tooltip{
  position:absolute; transform: translate(-50%,-120%);
  background:#111827; color:#fff; padding:6px 8px; border-radius:8px; font-size:12px; pointer-events:none; box-shadow: 0 8px 18px rgba(0,0,0,.18);
}

.report-notes{ padding:12px 16px 16px 35px; color:#475569; font-size:14px; display:grid; gap:6px; }

/* ===== FAQ styles ===== */
.faq{
  padding: clamp(28px,6vw,64px) 16px;
  
}
.faq .container{ max-width: 1100px; margin: 0 auto; }

.faq-head{
  display:flex; align-items:end; justify-content:space-between; gap:16px;
  margin-bottom: 18px;
}
.faq .title{ margin:0; font-size: clamp(26px, 3.6vw, 40px); }
.trust{ display:flex; gap:12px; list-style:none; margin:0; padding:0; color:#475569; }
.trust li{
  background:#fff; border:1px solid #e6e9f5; border-radius:999px; padding:8px 12px;
  box-shadow: 0 6px 18px rgba(16,24,40,.06);
  font-size:14px;
}

.faq-list{ display:grid; gap:12px; }
.faq-item{
  border:1px solid #e8ecfb; border-radius:16px; overflow:hidden;
  background:#fff;
  box-shadow: 0 8px 22px rgba(16,24,40,.05);
}

/* Summary button */
.faq-item > summary{
  list-style: none;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding: 14px 16px;
  cursor:pointer; user-select:none;
  font-weight:700;
}
.faq-item > summary::-webkit-details-marker{ display:none; }

/* Chevron */
.chev{
  width:20px; height:20px; border-radius:6px;
  display:inline-grid; place-items:center;
  background:#f1f5ff; border:1px solid #e3e9ff;
  position:relative; transition: transform .2s ease;
}
.chev::before{
  content:""; width:6px; height:6px; border-right:2px solid #3b5ccc; border-bottom:2px solid #3b5ccc;
  transform: rotate(-45deg); display:block;
}
.faq-item[open] .chev{ transform: rotate(180deg); }

/* Answer with smooth expand */
.faq-item .answer{
  padding: 10px 16px 16px;
  color:#334155; line-height:1.6;
  display:grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s ease;
}
.faq-item[open] .answer{ grid-template-rows: 1fr; }
.faq-item .answer > *{ overflow:hidden; }

/* Divider */
.faq-item > summary + .answer{ border-top:1px solid #f0f3ff; }

/* Bottom CTA */
.faq-cta{
  margin-top:18px;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:14px; border:1px solid #e8ecfb; border-radius:16px; background:#ffffffcc;
  box-shadow: 0 8px 22px rgba(16,24,40,.05);
}
.faq-cta .cta-text{ font-weight:700; }
.faq-cta .cta-actions{ display:flex; gap:10px; }
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  border-radius:12px; padding:10px 14px; text-decoration:none; font-weight:700;
  border:1px solid transparent;
}
.btn.primary{ background: linear-gradient(90deg,#2563eb,#7c3aed); color:#fff; }
.btn.ghost{ background:#f7f9ff; border-color:#e6e9f5; color:#1f2937; }

@media (max-width: 720px){
  .faq-head{ flex-direction:column; align-items:flex-start; }
  .trust{ flex-wrap: wrap; }
  .faq-cta{ flex-direction:column; align-items:flex-start; }
}


.form{background:#fff; border:1px solid rgba(14,24,64,.08); border-radius:18px; padding:16px; box-shadow:var(--shadow)}
.field{display:grid; gap:6px; margin-bottom:12px}
.field input,.field select,.field textarea{height:44px; padding:12px 14px; border-radius:12px; border:1px solid rgba(14,24,64,.12); background:#fff; outline:none}
.field textarea{height:120px; resize:vertical}
.field input:focus,.field textarea:focus,.field select:focus{box-shadow:var(--ring); border-color:var(--brand)}
.form-actions{display:flex; gap:10px; align-items:center; flex-wrap:wrap}
.footer-flex{display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap}

/* ===== Responsive ===== */
@media (max-width:1200px){
  :root{ --container:1000px }
}
@media (max-width:980px){
  .nav{display:none}
  .hero{padding:42px 0 20px}
  .heroGrid{grid-template-columns:1fr; gap:16px}
  .heroGrid>div:first-child{text-align:center}
  .actions{justify-content:center}
  .btn{height:44px}
  .device{max-width:560px; margin:6px auto 0}
  .grid3{grid-template-columns:1fr 1fr}
  .tab-panel.tab-active{grid-template-columns:1fr}
  .pricing{grid-template-columns:1fr}
  h1 .tight{letter-spacing:0; line-height:1.02}
  .hero-chips{justify-content:center}
}
@media (max-width:760px){
  :root{ --container:720px }
  section{padding:52px 0}
  .grid3{grid-template-columns:1fr}
  .preview{min-height:clamp(260px, 52vh, 380px)}
}
@media (max-width:560px){
  .btn{height:44px}
  .chip{font-size:12px}
  .ms-cards{grid-template-columns:1fr}
  .ms-gallery{grid-template-columns:repeat(2,1fr)}
}

/* Motion accessibility */
@keyframes shift{0%{background-position:0 0}100%{background-position:200% 0}}
@media (prefers-reduced-motion: reduce){
  *{animation:none !important; transition:none !important}
}


/* ===== Toast (controlat din JS, fără keyframes) ===== */
.toast{
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(8px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0a74ff, #4aa0ff);
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 14px 34px rgba(14,24,64,.22);
  z-index: 9999;
  opacity: 0;                /* invizibil by default */
  pointer-events: none;
  transition: opacity .28s ease, transform .28s ease; /* DOAR tranziții */
}
.toast .t-ico{ font-size:18px; line-height:1; }
.toast.is-error{
  background: linear-gradient(135deg, #ff3b30, #ff6b6b);
  box-shadow: 0 14px 34px rgba(255,59,48,.22);
}

/* state-uri */
.toast.show{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast.hide{
  opacity: 0;
  transform: translateX(-50%) translateY(8px);
}

@media (max-width:560px){ .toast{ bottom:20px; } }

/* ===== Hero Right (wow) ===== */
.hero-right{
  position:relative; border-radius:20px; overflow:visible;
}
.hr-wrap{
  position:relative; padding:14px; display:grid; gap:12px;
  background:linear-gradient(160deg,#ffffff,#f1f5ff);
  border:1px solid rgba(14,24,64,.08); border-radius:20px;
  box-shadow:var(--shadow);
  transform-style:preserve-3d;
}

/* glow subtil în spate */
.hero-right::after{
  content:""; position:absolute; inset:-8px -12px -16px -12px; z-index:-1;
  background:radial-gradient(600px 260px at 80% 0%, rgba(10,116,255,.20), transparent 60%),
             radial-gradient(500px 220px at 0% 100%, rgba(52,199,89,.14), transparent 65%);
  filter:blur(16px);
}

/* carduri */
.hr-card{
  position:relative; border-radius:16px;
  background:linear-gradient(180deg,#fff,#f6f8ff);
  border:1px solid rgba(14,24,64,.08);
  box-shadow:var(--shadow);
  padding:14px; transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
  transform:translateZ(0);
}
.hr-card:hover{ transform:translateY(-2px); box-shadow:var(--elev); border-color:rgba(10,116,255,.20); }

/* feature mare */
.hr-feature{
  background:
    linear-gradient(180deg,rgba(255,255,255,.75),rgba(246,249,255,.9)),
    radial-gradient(120% 120% at 90% -10%, rgba(10,116,255,.18), rgba(255,255,255,0) 55%),
    radial-gradient(120% 120% at -5% 120%, rgba(52,199,89,.16), rgba(255,255,255,0) 50%);
  padding:18px; border-radius:18px;
}
.hr-feature .hr-badge{
  position:absolute; top:12px; right:12px;
  padding:6px 10px; border-radius:999px; font-weight:700; font-size:12px;
  background:#fff; border:1px solid rgba(10,116,255,.28); color:#0a74ff;
  box-shadow:0 10px 24px rgba(10,116,255,.14);
}
.hr-metric{
  display:flex; align-items:center; gap:10px;
}

.hr-metric .k{
  font-weight:900; font-size:28px;
  background:linear-gradient(90deg,#0a74ff,#4aa0ff);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}

.hr-metric .lbl{
  font-size:13px; font-weight:600;
  background:#fff; padding:4px 10px; border-radius:999px;
  border:1px solid rgba(14,24,64,.08);
  box-shadow:0 4px 10px rgba(14,24,64,.08);
  line-height:1;
  display:inline-block;
  margin-top: 0px;
  margin-bottom: 0px;
}


/* icon */
.hr-ico{ width:28px; height:28px; border-radius:12px; display:grid; place-items:center;
  background:linear-gradient(180deg,#eef4ff,#ffffff); border:1px solid rgba(14,24,64,.08);
  color:#0a74ff; margin-bottom:8px; box-shadow:0 8px 18px rgba(14,24,64,.08)
}
.hr-ico svg{ width:18px; height:18px }

/* grid secundar */
.hr-grid{ display:grid; grid-template-columns:1fr 1fr; gap:12px }

/* listă scurtă */
.hr-list{ display:flex; flex-wrap:wrap; gap:8px }
.hr-pill{ display:inline-grid; place-items:center; height:30px; padding:0 12px;
  background:#fff; border:1px solid rgba(14,24,64,.10); border-radius:999px; font-weight:600; font-size:13px }

/* intrare „stagger” */
.hr-card, .hr-pill { opacity:0; transform:translateY(10px); }
.hr-card.in-view, .hr-pill.in-view { opacity:1; transform:translateY(0); transition:opacity .5s ease, transform .5s ease; }
.hr-card.in-view:nth-child(1){ transition-delay:.05s }
.hr-card.in-view:nth-child(2){ transition-delay:.12s }
.hr-card.in-view:nth-child(3){ transition-delay:.18s }
.hr-card.in-view:nth-child(4){ transition-delay:.24s }
.hr-pill.in-view:nth-child(1){ transition-delay:.30s }
.hr-pill.in-view:nth-child(2){ transition-delay:.36s }
.hr-pill.in-view:nth-child(3){ transition-delay:.42s }

/* tilt subtil pe container */
#hrTilt{ will-change:transform; transition:transform .18s ease }
@media (hover:hover){
  #hrTilt:hover{ transform:perspective(900px) rotateX(var(--rx,0)) rotateY(var(--ry,0)) translateZ(0); }
}

/* accesibilitate mișcare */
@media (prefers-reduced-motion: reduce){
  #hrTilt, .hr-card, .hr-pill{ transition:none !important; transform:none !important; }
  .hr-card, .hr-pill{ opacity:1 !important; }
}

/* responsive */
@media (max-width:980px){
  .hr-grid{ grid-template-columns:1fr }
}

/* offset global pentru ancore */
:root{ --header-offset: 100px; }          /* fallback */
html{ scroll-padding-top: var(--header-offset); }
section{ scroll-margin-top: var(--header-offset); }

.btn,
a,
.btn * {
  cursor: pointer !important;
}

/* ===== Servicii incluse — polish + stagger ===== */
#servicii .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* Card */
#servicii .card{
  position: relative;
  border-radius:16px;
  background:#fff;
  border:1px solid rgba(14,24,64,.08);
  padding:18px 16px 16px;
  box-shadow:0 8px 24px rgba(14,24,64,.08);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, opacity .45s ease, translate .45s ease;
  will-change: transform, opacity, translate;
  min-height: 160px;

  /* state inițial pentru animatie */
  opacity: 0;
  translate: 0 10px;
}
#servicii .card.in-view{
  opacity: 1;
  translate: 0 0;
}
#servicii .card:hover{
  transform: translateY(-2px);
  border-color: rgba(10,116,255,.22);
  box-shadow:
    0 14px 34px rgba(14,24,64,.14),
    0 0 0 1px rgba(10,116,255,.06) inset;
}

/* Icon uniform */
#servicii .card .icon{
  width:28px; height:28px; border-radius:10px;
  display:grid; place-items:center; font-size:16px;
  background:linear-gradient(180deg,#eef4ff,#ffffff);
  border:1px solid rgba(14,24,64,.08);
  color:#0a74ff;
  box-shadow:0 6px 14px rgba(10,116,255,.10);
  margin-bottom:10px;
}

/* Value line (beneficiu scurt) */
#servicii .card .value{
  font-weight:700;
  margin:8px 0 6px;
  color:#0b0c0f;
}

/* Glow discret sub grid */
#servicii .container{ position:relative; }
#servicii .container::after{
  content:""; position:absolute; left:50%; transform:translateX(-50%);
  bottom:-18px; width:min(880px, 92%); height:80px; filter:blur(22px);
  background:radial-gradient(50% 80% at 50% 0%, rgba(10,116,255,.18), transparent 60%);
  pointer-events:none; z-index:-1;
}

/* Responsive */
@media (max-width: 980px){
  #servicii .grid{ grid-template-columns: 1fr 1fr; }
  #servicii .card{ min-height:auto; }
}
@media (max-width: 640px){
  #servicii .grid{ grid-template-columns: 1fr; }
}

/* A11y motion */
@media (prefers-reduced-motion: reduce){
  #servicii .card{
    transition: none !important;
    opacity: 1 !important;
    translate: 0 0 !important;
  }
}

/* Titlul cardului: mai „headline” */
#servicii .card h3{
  grid-column:2;
  margin:0 0 8px;
  font-size:18px;
  font-weight:800;
  letter-spacing:-.2px;
  color:#0b0c0f;
}

/* „Value line” devine o etichetă (chip) – clar diferită de titlu */
#servicii .card .value{
  grid-column:2;
  display:inline-block;
  margin:0 0 10px;
  padding:4px 10px;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
  line-height:1;
  color:#0a74ff;
  background:rgba(10,116,255,.08);
  border:1px solid rgba(10,116,255,.16);
}

/* Paragraful descriptiv: ton mai modest */
#servicii .card p{
  grid-column:2;
  margin:0;
  color:var(--muted);
}


/* Tabs: mobile-friendly, swipe to scroll */
.tabs{ position:relative; }
.tab-head{
  
  margin-right: 10px;
  margin-left: 10px;
  overflow-x:auto;
  scroll-snap-type:x proximity;
  scroll-padding-inline:14px;     /* centrează/aliniază corect la scrollIntoView */
  -webkit-overflow-scrolling:touch;
  display:flex; gap:8px; flex-wrap:nowrap;
}
.tab-head::-webkit-scrollbar{ display:none; }   /* ascunde bara pe mobile */

/* butoane mai compacte + fără rupere pe mai multe linii */
.tab-btn{
  flex:0 0 auto;                 /* nu se micșorează */
  white-space:nowrap;            /* tot textul pe o linie */
  scroll-snap-align:center;
}
/* Tabs – mobile sizing & feel */
@media (max-width: 640px){
  .tab-head{
    padding: 10px 0px;      /* mai mult spațiu în jur */
    gap: 10px;               /* distanță între butoane */
    scroll-padding-inline: 0;
  }
  .tab-head::before,
  .tab-head::after{ width: 22px; }  /* fade/gutter puțin mai late */

  .tab-btn{
    font-size: 14.5px;       /* +1 pt lizibilitate */
    padding: 10px 14px;      /* hit target mai mare */
    min-height: 44px;        /* guideline Apple/Google */
    line-height: 1;
    border-radius: 12px;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 6px 14px rgba(14,24,64,.06); /* plutire ușoară */
  }
  .tab-btn[aria-selected="true"]{

    border-color: rgba(10,116,255,.28);
    background: #fff;
  }
  .tab-btn:active{ transform: translateY(1px); } /* feedback pe tap */
}

/* foarte îngust (ex. 360px): ajustare fină */
@media (max-width: 380px){
  .tab-btn{ font-size: 13.8px; padding: 10px 12px; }
}


/* fade la margini (apare doar când e scroll) */
.tab-head::before, .tab-head::after{
  content:""; position:absolute; top:0; bottom:0; width:28px; pointer-events:none;
  opacity:0; transition:opacity .2s ease;
}
.tab-head::before{ left:0;  background:linear-gradient(90deg, rgba(255,255,255,1), rgba(255,255,255,0)); }
.tab-head::after { right:0; background:linear-gradient(270deg, rgba(255,255,255,1), rgba(255,255,255,0)); }
.tab-head.shadow-left::before{ opacity:1; }
.tab-head.shadow-right::after{ opacity:1; }

/* Mobile-first: scrollabil (deja setat) */

/* Desktop: taburi întinse pe toată lățimea */
@media (min-width: 768px){
  .tab-head{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap:10; overflow:visible; /* fără scroll */
  }
  .tab-btn{
    flex:unset;
    text-align:center;
    font-size:15px;
    padding:12px 0;
    white-space:normal;   /* permite 2 rânduri pe buton dacă e cazul */
  }

  /* scoatem fade-urile pe desktop */
  .tab-head::before,
  .tab-head::after{ display:none; }
}


/* HINT chip – apare DOAR pe mobil, scurt */
@media (max-width: 640px){
  .tab-head {
    position: relative;
    padding-bottom: 16px; /* loc pt bara de progres */
  }
  .tab-head .tabs-hint {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 8px;
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(14,24,64,.12);
    box-shadow: 0 6px 14px rgba(14,24,64,.10);
    color: #0a74ff;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    white-space: nowrap;
  }
  .tab-head.show-hint .tabs-hint { opacity: .95; }

  /* Bara de progres (1px) sub taburi */
  .tab-head::after{
    content:"";
    position:absolute;
    left:8px; right:8px; bottom:6px;
    height:2px;
    border-radius:2px;
    background: rgba(14,24,64,.08);
  }
  .tab-head::before{
    /* progress-ul propriu-zis – controlat din JS via --p (0..1) */
    content:"";
    position:absolute;
    left:8px; bottom:6px;
    height:2px;
    width: calc((100% - 16px) * var(--p, 0));
    border-radius:2px;
    background: linear-gradient(90deg,#0a74ff,#4aa0ff);
    transition: width .15s linear;
  }
}

/* respectă accesibilitatea */
@media (prefers-reduced-motion: reduce){
  .tab-head .tabs-hint{ transition: none; }
  .tab-head::before{ transition: none; }
}
/* Hint doar pe mobil */
@media (max-width: 768px){
  .tab-head .tabs-hint { display:block; }
}
@media (min-width: 769px){
  .tab-head .tabs-hint { display:none !important; }
}


@media (max-width: 640px){
  header .btn{
    height: 42px;
    padding: 0 14px;
    font-size: 14px;
  }
}


.ctaWrap{
  margin-top: 16px;
  display:flex; flex-direction:column; gap:8px;
}


.secure{ color: var(--muted); font-size: 12px; }


:root{
  /* tokens */
  --radius-lg: 20px;
  --radius-md: 16px;
  --space-sm: 12px;
  --space-md: 14px;
  --space-lg: 18px;

  --brand: #0a74ff;
  --brand-2: #4aa0ff;
  --accent: #34c759;
  --fg: #111827;
  --muted: #6b7280;
  --bg-card: linear-gradient(180deg,#fff,#f6f8ff);
  --bdr: rgba(14,24,64,.08);

  /* elevare */
  --shadow: 0 6px 18px rgba(14,24,64,.06);
  --elev:   0 14px 28px rgba(14,24,64,.12);

  /* focus ring */
  --ring: 0 0 0 3px rgba(10,116,255,.16), 0 0 0 1px rgba(10,116,255,.38);
}

/* focus accesibil (tastatură) */
.hr-card:focus-visible,
.hr-pill:focus-visible{
  outline: none;
  box-shadow: var(--elev), var(--ring);
  border-color: rgba(10,116,255,.30);
}

/* hover doar unde există */
@media (hover:hover){
  .hr-card:hover{ transform: translateY(-2px); box-shadow: var(--elev); }
  .hr-pill:hover{ transform: translateY(-1px); box-shadow: 0 6px 14px rgba(14,24,64,.10); }
}

/* contrast mai bun pentru metrica mare */
.hr-metric .k{
  background: linear-gradient(90deg,var(--brand),var(--brand-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 1px 0 rgba(255,255,255,.3); /* ajută contrastul pe ecrane slab calibrate */
}

/* glow: zonă mai mică + blur mai mic pt perf */
.hero-right::after{
  inset: -6px -10px -12px -10px;
  filter: blur(12px);
  background:
    radial-gradient(480px 200px at 80% 0%, rgba(10,116,255,.18), transparent 60%),
    radial-gradient(380px 180px at 0% 100%, rgba(52,199,89,.14), transparent 65%);
}

/* badge-uri de jos: focus/hover & hit-area mai mare */
.hr-pill{ padding: 0 14px; min-height: 32px; line-height: 32px; }
.hr-pill:active{ transform: translateY(0); }

/* stagger: pe mobile facem mai scurt pentru “snap” */
@media (max-width: 640px){
  .hr-card.in-view, .hr-pill.in-view{
    transition-duration: .35s;
  }
}

/* reduce transparențe dacă utilizatorul cere */
@media (prefers-reduced-transparency: reduce){
  .hero-right::after{ display:none; }
  .hr-card{ background:#fff; }
}

.pdf-offer a, 
.pdf-offer a span, 
.pdf-offer a svg {
  cursor: pointer;
}

.pdf-offer{
  margin-top:14px;
  display:flex; justify-content:center;
}
.pdf-offer a{
  display:flex; align-items:center; gap:8px;
  padding:10px 14px;
  cursor: pointer;
  border-radius:12px;
  background:linear-gradient(180deg,#fff,#f9fafc);
  border:1px solid rgba(14,24,64,.08);
  box-shadow:0 4px 12px rgba(14,24,64,.06);
  font-weight:600; font-size:14px; color:#0a74ff;
  text-decoration:none; transition:all .25s ease;
}
.pdf-offer a:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(14,24,64,.12);
  border-color:rgba(10,116,255,.24);
}
.pdf-ico{
  width:20px; height:20px; display:grid; place-items:center;
  color:#0a74ff;
}
.pdf-ico svg{ width:18px; height:18px; }


:root{
  --ink:#0b1220; --muted:#667085;
  --brand:#2563eb; --brand2:#7c3aed; --r:14px;
  --shadow:0 14px 36px rgba(16,24,40,.12), 0 2px 8px rgba(16,24,40,.06);
}

/* Natural: fără fundal de secțiune/chenar */
.tl{ padding: clamp(20px,5vw,48px) 16px 8px; }
.tl-head{ max-width:1120px; margin:0 auto 10px; }
.tl-head h2{ margin:0 0 6px; font-size: clamp(26px,3.6vw,40px); }
.tl-head p{ margin:0; color:var(--muted); }

/* Rail */
.tl-rail{
  max-width:1120px; margin:16px auto 0; position:relative;
  height: 320px;
  overflow-x:auto; overflow-y:hidden;
  display:flex; align-items:flex-start; gap:28px;
  padding:20px 16px 0;
  scroll-snap-type:x mandatory;
  overscroll-behavior-x:contain;
  scrollbar-width:none;
}
.tl-rail::-webkit-scrollbar{ display:none; }

/* când tragi cu mouse-ul: fluid, fără snap */
.tl-rail.dragging{
  scroll-snap-type: none;
  cursor: grabbing;
  user-select: none;
}

/* linia și cardurile (din versiunea ta curentă) */
.tl-line{ position:absolute; left:0; right:0; top:180px; height:4px;
  background:linear-gradient(90deg,#e9edff,#dbe3ff); border-radius:999px;
  box-shadow:inset 0 0 0 1px #eef2ff; pointer-events:none;
}

/* Badge de an */
.tl-year{
  flex: 0 0 auto; align-self: center; transform: translateY(-8px);
  background:#eef2ff; color:#233b8d; border:1px solid #dbe2ff;
  padding:6px 12px; border-radius:999px; font-weight:800; letter-spacing:.3px;
  text-transform:uppercase; font-size:12px;
  scroll-snap-align:center;
}

/* Card compact (previz mic) */
/* Cardurile */
.tl-card{ flex:0 0 auto; width:260px; scroll-snap-align:center;
  display:grid; gap:10px; position:relative; background:#fff;
  border:1px solid #eef2ff; border-radius:14px; box-shadow:0 8px 24px rgba(16,24,40,.08);
  padding:10px; margin-top:20px;
}
.tl-thumb{ position:relative; height:120px; border-radius:10px; overflow:hidden;
  border:1px solid #eef2ff; background:linear-gradient(135deg,#f6f8ff,#eef2ff);
}
.tl-thumb img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block; }

.tl-meta{ display:grid; grid-template-columns:20px 1fr; gap:8px; align-items:center; }
.tl-ico{ width:20px; height:20px; border-radius:4px; border:1px solid #eef2ff; background:#fff; }
.tl-title{ font-weight:700; line-height:1.2; }
.tl-domain{ grid-column:2; color:#64748b; font-size:12px; }

.tl-link{
  width:max-content; display:inline-flex; align-items:center; gap:8px;
  background: linear-gradient(90deg,var(--brand),var(--brand2)); color:#fff;
  text-decoration:none; font-weight:700; padding:8px 12px; border-radius:10px;
}

/* Tulpina care „prinde” cardul de linie */
.tl-stem{ position:absolute; left:50%; transform:translateX(-50%); top:-60px;
  width:2px; height:60px; background:#dbe3ff; border-radius:999px; }

@media (max-width: 720px){
  .tl-rail{ height: 300px; }
  .tl-card{ width: 230px; }
  .tl-thumb{ height: 110px; }
}


#tlScroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none; /* dezactivează selectarea textului */
}

#tlScroll.dragging {
  cursor: grabbing;
}

.tl-card img {
  pointer-events: none; /* nu mai poți „trage” imaginea */
  user-drag: none;
  -webkit-user-drag: none;
  cursor: grab !important;
}


#tlScroll.bounce-left {
  animation: bounceLeft 0.4s ease;
}
#tlScroll.bounce-right {
  animation: bounceRight 0.4s ease;
}

@keyframes bounceLeft {
  0%   { transform: translateX(0); }
  40%  { transform: translateX(30px); }   /* mai puternic */
  70%  { transform: translateX(-15px); }
  100% { transform: translateX(0); }
}

@keyframes bounceRight {
  0%   { transform: translateX(0); }
  40%  { transform: translateX(-30px); }  /* mai puternic */
  70%  { transform: translateX(15px); }
  100% { transform: translateX(0); }
}


/* ===== Procesul de lucru ===== */
.proc { padding: clamp(32px,6vw,64px) 0; }
.proc .sub { color: var(--muted); }
.proc-grid{
  list-style:none; margin: 22px 0 0; padding:0;
  display:grid; gap:14px;
  grid-template-columns: repeat(4, 1fr);
}
.proc-step{
  background:#fff; border:1px solid var(--bdr); border-radius:16px; padding:16px;
  box-shadow:var(--shadow); transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.proc-step:hover{ transform:translateY(-2px); box-shadow:var(--elev); border-color: rgba(10,116,255,.18); }
.proc-step h3{ margin:6px 0 6px; font-size:18px; letter-spacing:-.2px }
.proc-step p{ margin:0; color: var(--muted); }
.proc-ico{
  width:32px; height:32px; border-radius:12px; display:grid; place-items:center; font-size:16px;
  background:linear-gradient(180deg,#eef4ff,#ffffff); border:1px solid rgba(14,24,64,.08);
  color:#0a74ff; box-shadow:0 6px 14px rgba(10,116,255,.10);
}

@media (max-width:980px){ .proc-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width:640px){ .proc-grid{ grid-template-columns: 1fr; } }

/* ===== Mini stepper în formular ===== */
.form-steps{
  display:flex; gap:10px; align-items:center; justify-content:flex-start;
  padding:10px; margin: 8px 0 12px;
  border:1px solid rgba(14,24,64,.08); border-radius:14px; background:linear-gradient(180deg,#fff,#f7f9ff);
  box-shadow: var(--shadow);
}
.form-steps .fs-item{
  position:relative; display:flex; align-items:center; gap:8px; padding:6px 10px; border-radius:999px;
  background:#fff; border:1px solid rgba(14,24,64,.08); color:#1f2937; font-weight:600; font-size:13px;
  opacity:.85; transition:opacity .18s ease, transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.form-steps .fs-item .dot{
  width:10px; height:10px; border-radius:50%;
  background:#c7d2fe; box-shadow: inset 0 0 0 2px #eef2ff;
}
.form-steps .fs-item.is-active{ opacity:1; border-color: rgba(10,116,255,.26); box-shadow: 0 6px 16px rgba(10,116,255,.12); }
.form-steps .fs-item.is-active .dot{ background:#2563eb; }
.form-steps .fs-item.is-done{ opacity:1; border-color: rgba(52,199,89,.28); }
.form-steps .fs-item.is-done .dot{ background:#34c759; }
.form-steps .fs-item:not(:last-child)::after{
  content:""; width:22px; height:2px; background:linear-gradient(90deg,#e5e7eb,#e5e7eb);
  position:absolute; right:-16px; top:50%; transform:translateY(-50%);
}
@media (max-width:720px){
  .form-steps{ flex-wrap:wrap; }
  .form-steps .fs-item:not(:last-child)::after{ display:none; }
}





.company-slab{
  position:relative; background:#fff; border:1px solid var(--bdr); border-radius:16px; box-shadow:var(--elev);
  padding:16px; overflow:hidden;
}
.company-slab::after{
  content:""; position:absolute; right:-40px; top:-40px; width:220px; height:220px; border-radius:50%;
  background:radial-gradient(closest-side, rgba(10,116,255,.08), transparent 70%);
  pointer-events:none;
}
.slab-head{display:flex; align-items:center; gap:10px; margin-bottom:8px}
.slab-head h3{margin:0; font-size:18px}
.badge{border:1px solid var(--bdr); border-radius:999px; padding:4px 8px; font-size:12px; background:#fff}
.slab-grid{display:grid; grid-template-columns: repeat(2, minmax(220px, 1fr)); gap:6px 18px}
@media (max-width:720px){ .slab-grid{grid-template-columns:1fr} }


.company-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  padding: 24px;
}

.cc-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.cc-head h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
}

.badge {
  font-size: 12px;
  padding: 4px 10px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #f9fafb;
  color: #475569;
}

.cc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 12px 40px; /* spațiu vertical și orizontal */
}

.cc-grid p {
  margin: 6px 0;
  font-size: 15px;
  color: #374151;
}

.cc-grid strong {
  color: #111827;
}

.cc-grid a {
  color: #2563eb;
  text-decoration: none;
}

.cc-grid a:hover {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .cc-grid {
    grid-template-columns: 1fr;
  }
}


footer {
  background: #0a0a0a;
  color: #f5f5f5;
  padding: 48px 0 24px;
  font-size: 15px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
}

.footer-brand h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.footer-links h4,
.footer-social h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #e5e5e5;
}

.footer-links a {
  display: block;
  margin: 4px 0;
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #0a74ff;
}

.footer-social a {
  color: #bbb;
  margin-right: 8px;
  text-decoration: none;
}
.footer-social a:hover {
  color: #0a74ff;
}

.footer-social .badge {
  margin-top: 12px;
  display: inline-block;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #1e40af;
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  margin-top: 32px;
  padding-top: 16px;
  font-size: 14px;
  color: #aaa;
}

/* === Consent Banner (glass / premium) === */
.consent-banner{
  position: fixed; left: 0; right: 0; bottom: 16px; z-index: 999999999;
  display: grid; place-items: center; padding: 0 12px; animation: cb-in .35s ease both;
}
.cb-wrap{
  width: min(1000px, 96%); display: grid; grid-template-columns: 56px 1fr auto; gap: 14px;
  border: 1px solid rgba(14,24,64,.12); border-radius: 16px; backdrop-filter: blur(10px) saturate(140%);
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(250,252,255,.84));
  box-shadow: 0 18px 44px rgba(2,12,48,.18);
  padding: 14px 14px 14px 12px;
  pointer-events: auto;
}
.cb-ico{display:grid; place-items:center; color:#0a74ff; background: radial-gradient(60% 60% at 50% 30%, rgba(10,116,255,.12), transparent 70%); border-radius:12px}
.cb-ico svg{width:24px; height:24px}
.cb-body h3{margin:0 0 4px; font-size:16px; letter-spacing:-.2px}
.cb-body p{margin:0; color:#334155; font-size:14px}
.cb-link{background:none; border:0; color:#0a74ff; text-decoration:underline; cursor:pointer; padding:0}
.cb-actions{display:flex; gap:8px; align-items:center}
.consent-banner .btn{border-radius:12px; padding:10px 14px}
.consent-banner .btn.ghost{background:#fff; border:1px solid rgba(14,24,64,.12); color:#111827}
@keyframes cb-in{from{transform:translateY(16px);opacity:0}to{transform:translateY(0);opacity:1}}

@media (max-width:720px){
  .cb-wrap{grid-template-columns: 40px 1fr; row-gap:10px}
  .cb-actions{grid-column: 1 / -1; justify-content:flex-end}
}

/* === Preferences sheet (bottom sheet) === */
.consent-prefs{
  position: fixed; inset: 0; background: rgba(2,10,40,.32); z-index: 1001;
  display:grid; place-items:end center; animation: cpfade .2s ease both;
}
.cp-sheet{
  width: min(720px, 96%); background:#fff; border:1px solid rgba(14,24,64,.12);
  border-radius: 16px 16px 0 0; box-shadow: 0 -18px 44px rgba(2,12,48,.22);
  padding:14px; transform: translateY(12px); animation: cpslide .25s ease both;
}
.cp-head{display:flex; align-items:center; justify-content:space-between; margin-bottom:8px}
.cp-head h4{margin:0; font-size:16px}
.cp-x{border:0; background:#fff; width:28px; height:28px; border-radius:8px; cursor:pointer}
.cp-row{display:flex; align-items:center; justify-content:space-between; gap:12px; padding:10px 0; border-top:1px solid #eef2ff}
.cp-row:first-of-type{border-top:0}
.cp-row p{margin:4px 0 0; color:#475569; font-size:14px}
.cp-actions{display:flex; justify-content:flex-end; gap:8px; padding-top:10px}
@keyframes cpslide{from{transform:translateY(18px);opacity:.8}to{transform:translateY(0);opacity:1}}
@keyframes cpfade{from{opacity:0}to{opacity:1}}

/* switches */
.switch{display:inline-flex; align-items:center; gap:10px; cursor:pointer}
.switch input{display:none}
.switch .sw{width:44px; height:26px; background:#e5e7eb; border-radius:999px; position:relative; transition:background .18s}
.switch .sw::after{content:""; position:absolute; left:3px; top:3px; width:20px; height:20px; border-radius:50%; background:#fff; box-shadow:0 1px 2px rgba(0,0,0,.18); transition: transform .18s}
.switch input:checked + .sw{background:#2563eb}
.switch input:checked + .sw::after{transform:translateX(18px)}



/* Buton SEO Check – glass premium */
.btn.seo-check {
  padding: 10px 18px;
  margin-right: 5px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  color: #0b0c0f;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(207, 224, 255, 0.8);
  box-shadow: 0 8px 22px rgba(16, 24, 40, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.2s ease;
}
.btn.seo-check:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.12);
}

/* Buton Contact – solid contrast */
.btn.contact {
  padding: 10px 18px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(135deg, #4f7cff, #7a5cff);
  border: 1px solid #4f7cff;
  box-shadow: 0 8px 20px rgba(79, 124, 255, 0.25);
  transition: all 0.2s ease;
}
.btn.contact:hover {
  box-shadow: 0 10px 26px rgba(79, 124, 255, 0.35);
  transform: translateY(-1px);
}

/* Responsive polish */
@media (max-width: 480px) {
  .btn.seo-check {
display: none;
  }
}


/* FAB SEO — ascuns pe desktop */
.fab-seo {
  display: none; /* implicit ascuns */
}

/* Arătăm doar pe mobil */
@media (max-width: 768px) {
  .fab-seo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;

    padding: 14px 20px;
    border-radius: 999px;

    font-weight: 800;
    font-size: 14px;
    color: #fff;
    text-decoration: none;

    background: linear-gradient(135deg, #0a74ff, #6b8cff);
    box-shadow: 0 6px 20px rgba(10, 116, 255, 0.35);

    transition: transform 0.15s ease, box-shadow 0.2s ease;
  }

  .fab-seo:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(10, 116, 255, 0.45);
  }

  .fab-seo:active {
    transform: translateY(1px);
    box-shadow: 0 4px 12px rgba(10, 116, 255, 0.25);
  }
}


.footer-badges {
  display: flex;
  gap: 12px;
}

.footer-icon {
  height: 30px;  /* ajustezi dimensiunea */
  opacity: 0.85;
  transition: opacity 0.2s ease-in-out;
}

.footer-icon:hover {
  opacity: 1;
}


:root{
  --ink:#0f172a;
  --chip:#f5f8ff;
  --ring:#e8f1ff;
  --line:rgba(15,23,42,.10);
  --radius:16px;
}

*{box-sizing:border-box}
.wb-container{max-width:1200px;margin:0 auto;padding:0 20px}

/* HERO – aliniat la stânga, fără fundal dedicat */
.wb-hero{padding:84px 0 36px}
.wb-hero-left .wb-container{ text-align:left; }

/* Overline */
.wb-hero-overline{
  margin:0 0 10px;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-weight:700;
  font-size:.85rem;
  color:#6b7b90;
}

/* Titlu + badge */
.wb-hero-title{
  margin:0 0 14px;
  font-size:clamp(2.4rem, 5vw, 3.6rem);
  line-height:1.1;
  font-weight:900;
  letter-spacing:-.6px;
  color:var(--ink);
}
.wb-badge{
  display:inline-block; vertical-align:top;
  margin-left:10px; padding:6px 10px;
  font-size:.78rem; font-weight:700;
  color:#0b1a33; background:#fff;
  border:1px solid var(--ring); border-radius:999px;
  box-shadow:0 6px 18px rgba(10,116,255,.12);
}

/* Subtitlu */
.wb-hero-subtitle{
  margin:0 0 22px; max-width:760px;
  font-size:clamp(1.05rem, 2vw, 1.25rem);
  line-height:1.75; color:var(--muted);
}

/* Pills */
.wb-pills{
  display:flex; flex-wrap:wrap; gap:10px 12px;
  list-style:none; padding:0; margin:0 0 26px;
}
.wb-pills li{
  display:flex; align-items:center; gap:8px;
  padding:10px 14px; background:var(--chip);
  border:1px solid var(--ring); border-radius:999px;
  font-size:.95rem; color:#2b3444; font-weight:600;
}
.wb-pills .dot{
  width:10px; height:10px; border-radius:50%;
  background:linear-gradient(180deg,#12d1a5,#0a74ff);
  box-shadow:0 0 0 3px rgba(10,116,255,.10);
}

/* CTA */
.wb-hero-cta{display:flex; gap:12px; flex-wrap:wrap}
.wb-btn{
  display:inline-flex; align-items:center; justify-content:center;
  height:46px; padding:0 22px; border-radius:12px;
  text-decoration:none; font-weight:700; border:1px solid transparent;
  transition:.22s ease;
}
.wb-btn-primary{
  background:var(--brand); color:#fff;
  box-shadow:0 10px 24px rgba(10,116,255,.28);
}
.wb-btn-primary:hover{transform:translateY(-2px)}
.wb-btn-ghost{
  background:#fff; color:#0b1a33; border-color:var(--line);
}
.wb-btn-ghost:hover{
  border-color:rgba(10,116,255,.35);
  box-shadow:0 8px 20px rgba(2,6,23,.08);
}

/* Responsive */
@media (max-width:768px){
  .wb-hero{padding:64px 0 28px}
  .wb-pills li{font-size:.92rem; padding:9px 12px}
}


:root{
  --csf-brand:#0a74ff;
  --csf-ink:#0f172a;
  --csf-muted:#64748b;
  --csf-line:#e9eef6;
  --csf-chip:#f6f9ff;
  --csf-shadow:0 14px 40px rgba(2,6,23,.08);
  --csf-radius:16px;
}

.csf-container{max-width:1200px;margin:0 auto;padding:0 20px}

/* Section */
.csf-benefits{padding:56px 0 12px}
.csf-overline{
  margin:0 0 8px;
  font-size:.82rem; font-weight:800; letter-spacing:.18em;
  color:#6b7b90; text-transform:uppercase;
}
.csf-title{
  margin:0 0 10px;
  font-size:clamp(1.8rem,3.2vw,2.2rem);
  line-height:1.25; font-weight:900; letter-spacing:-.3px; color:var(--csf-ink);
}
.csf-lead{
  margin:0 0 28px; max-width:840px;
  font-size:1.05rem; line-height:1.75; color:var(--csf-muted);
}

/* Grid */
.csf-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:16px;
}

@media (max-width: 980px){
  .csf-grid{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px){
  .csf-grid{ grid-template-columns:1fr; }
}

/* Card */
.csf-card{
  position:relative;
  border:1px solid var(--csf-line);
  border-radius:var(--csf-radius);
  background:#fff;
  padding:20px 18px 18px 18px;
  box-shadow:0 1px 0 rgba(255,255,255,.9);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.csf-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--csf-shadow);
  border-color:rgba(10,116,255,.25);
}

/* Icon */
.csf-icon{
  width:44px; height:44px; border-radius:12px;
  display:grid; place-items:center; margin-bottom:14px;
  background:var(--csf-chip);
  box-shadow:inset 0 0 0 1px rgba(10,116,255,.25), 0 6px 16px rgba(2,6,23,.06);
  color:var(--csf-brand);
}
.csf-icon svg{width:24px;height:24px;display:block}

/* Titles & text */
.csf-card-title{
  margin:0 0 8px; font-size:1.06rem; font-weight:800; color:var(--csf-ink);
}
.csf-card-text{
  margin:0; color:#334155; line-height:1.7; font-size:0.98rem;
}


/* HERO tighten */
.wb-hero{padding:72px 0 24px}
.wb-hero-subtitle{max-width:720px}
.wb-pills li:nth-child(n+4){display:none} /* arată primele 3 */
.wb-hero-cta .wb-btn-ghost{display:none}  /* doar primary în fold */

/* Badge mai discret */
.wb-badge{padding:4px 8px; font-size:.72rem; box-shadow:0 4px 12px rgba(10,116,255,.16)}


.csf-package{padding:72px 0;}
.csf-container{max-width:1200px;margin:0 auto;padding:0 20px}

.csf-split{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center}
@media(max-width:900px){.csf-split{grid-template-columns:1fr;gap:32px}}

.csf-overline{
  font-size:.85rem;font-weight:700;text-transform:uppercase;
  letter-spacing:.15em;color:#64748b;margin-bottom:10px
}
.csf-title{
  font-size:clamp(1.8rem,3.5vw,2.4rem);
  font-weight:900;line-height:1.25;color:var(--csf-ink);
  margin-bottom:20px
}
.csf-checklist{
  list-style:none;padding:0;margin:18px 0 28px;display:grid;gap:14px
}
.csf-checklist li{
  display:flex;align-items:center;gap:12px;
  font-size:1.05rem;color:#1e293b;font-weight:500;
}
.csf-checklist .check{
  width:22px;height:22px;flex:0 0 auto;
  border-radius:50%;background:linear-gradient(135deg,#0a74ff,#12d1a5);
  display:grid;place-items:center;
  box-shadow:0 4px 12px rgba(10,116,255,.25);
}
.csf-checklist .check::after{
  content:\"\";width:10px;height:5px;
  border-left:2px solid #fff;border-bottom:2px solid #fff;
  transform:rotate(-45deg)
}

.csf-btn{
  display:inline-block;padding:14px 28px;border-radius:12px;
  background:var(--csf-brand);color:#fff;text-decoration:none;
  font-weight:600;box-shadow:0 8px 22px rgba(10,116,255,.28);
  transition:.25s ease
}
.csf-btn:hover{transform:translateY(-2px)}

.csf-package-visual img{
  width:100%;border-radius:16px;
  box-shadow:0 18px 42px rgba(2,6,23,.1)
}


.csf-container{max-width:1200px;margin:0 auto;padding:0 20px}

.csf-industries{padding:48px 0} /* fără fundal */

.csf-title{
  margin:0 0 6px;
  font-weight:900; letter-spacing:-.3px;
  font-size:clamp(1.8rem,3.5vw,2.2rem); color:var(--csf-ink);
}
.csf-lead{margin:0 0 18px; color:var(--csf-muted); line-height:1.7}

.csf-industry-rail{
  list-style:none; padding:0; margin:0;
  display:grid; gap:10px;
  grid-template-columns:repeat(3,minmax(0,1fr));
}
@media (max-width: 980px){
  .csf-industry-rail{
    display:flex; gap:10px; overflow:auto; padding-bottom:6px;
    scroll-snap-type:x mandatory;
  }
  .csf-industry{min-width:78%; scroll-snap-align:start}
}

.csf-industry-link{
  position:relative;
  display:flex; align-items:center; gap:14px;
  padding:14px 16px; border-radius:14px;
  border:1px solid var(--csf-line);
  background:#fff;
  text-decoration:none;
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  box-shadow:0 1px 0 rgba(255,255,255,.9);
}
.csf-industry-link:hover{
  transform:translateY(-2px);
  border-color:rgba(10,116,255,.28);
  box-shadow:0 12px 28px rgba(2,6,23,.08);
}
.csf-industry-link::after{
  /* underline animat subtil la hover */
  content:""; position:absolute; left:16px; right:40px; bottom:10px;
  height:2px; background:linear-gradient(90deg, rgba(10,116,255,.35), transparent);
  transform:scaleX(0); transform-origin:left; transition:transform .25s ease;
}
.csf-industry-link:hover::after{ transform:scaleX(1) }

.csf-emoji{font-size:22px; line-height:1}
.csf-text{display:flex; flex-direction:column; gap:2px}
.csf-text strong{color:var(--csf-ink); font-weight:800; letter-spacing:-.2px}
.csf-text em{color:#334155; font-style:normal; font-size:.92rem}

.csf-arrow{
  margin-left:auto; font-weight:800; color:#1e293b;
  transition:transform .2s ease, color .2s ease;
}
.csf-industry-link:hover .csf-arrow{
  transform:translateX(4px); color:var(--csf-brand);
}

.csf-note{margin-top:12px; color:var(--csf-muted)}
.csf-note a{color:var(--csf-brand); text-decoration:none}
.csf-note a:hover{text-decoration:underline}



/* === CTA (fără fundal de secțiune) === */
.csf-cta{padding:56px 0}
.csf-cta-wrap{
  display:flex; align-items:center; justify-content:space-between; gap:24px;
  padding:24px;
  border:1px solid var(--csf-line);
  border-radius:20px;
  background:#fff;
  box-shadow:0 1px 0 rgba(255,255,255,.9);
}
@media (max-width: 880px){
  .csf-cta-wrap{flex-direction:column; align-items:flex-start}
}

.csf-cta-title{
  margin:0 0 6px;
  font-size:clamp(1.8rem,3.5vw,2.3rem);
  font-weight:900; letter-spacing:-.3px; color:var(--csf-ink);
}
.csf-cta-sub{
  margin:0 0 16px; color:var(--csf-muted); line-height:1.7; max-width:720px;
}

/* Pills */
.csf-cta-pills{
  display:flex; flex-wrap:wrap; gap:10px 12px;
  list-style:none; padding:0; margin:0;
}
.csf-cta-pills li{
  display:flex; align-items:center; gap:8px;
  padding:10px 14px;
  background:var(--csf-chip);
  border:1px solid #e8f1ff;
  border-radius:999px;
  font-weight:600; color:#2b3444;
}
.csf-cta-pills .dot{
  width:10px; height:10px; border-radius:50%;
  background:linear-gradient(180deg,#12d1a5,#0a74ff);
  box-shadow:0 0 0 3px rgba(10,116,255,.12);
}

/* Actions */
.csf-cta-actions{display:flex; align-items:center; gap:12px; flex-wrap:wrap}
.csf-btn{
  display:inline-flex; align-items:center; justify-content:center;
  height:46px; padding:0 22px; border-radius:12px;
  text-decoration:none; font-weight:700; border:1px solid transparent;
  transition:.22s ease;
}
.csf-btn-primary{
  background:var(--csf-brand); color:#fff;
  box-shadow:0 10px 24px rgba(10,116,255,.28);
}
.csf-btn-primary:hover{transform:translateY(-2px)}
.csf-btn-ghost{
  background:#fff; color:#0b1a33; border-color:var(--csf-line);
}
.csf-btn-ghost:hover{
  border-color:rgba(10,116,255,.35);
  box-shadow:0 8px 20px rgba(2,6,23,.08);
}

.csf-cta-meta{
  font-size:.95rem; color:#334155;
}
.csf-cta-meta a{color:var(--csf-brand); text-decoration:none}
.csf-cta-meta a:hover{text-decoration:underline}
.csf-cta-meta .sep{margin:0 8px; color:#94a3b8}

/* Micro-reveal (se prinde de IO-ul tău generic dacă vrei) */
.csf-cta-wrap{opacity:1; transform:translateY(0); transition:all .35s ease}

/* Container */
.csf-faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.csf-faq {
  padding: 72px 0;
}

.csf-faq-title {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.3px;
  color: var(--faq-ink);
  margin-bottom: 32px;
  text-align: center;
}

/* Items */
.csf-faq-item {
  border: 1px solid var(--faq-line);
  border-radius: var(--faq-radius);
  background: #fff;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(2, 6, 23, 0.04);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.csf-faq-item:hover {
  border-color: rgba(10, 116, 255, 0.35);
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.08);
}

/* Question button */
.csf-faq-q {
  all: unset;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--faq-ink);
  gap: 12px;
}
.csf-faq-q:focus-visible {
  outline: 2px solid rgba(10, 116, 255, 0.4);
  outline-offset: 2px;
}

/* Chevron icon */
.csf-faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #0f172a;
  transition: transform 0.25s ease;
}
.csf-faq-q[aria-expanded="true"] .csf-faq-icon {
  transform: rotate(180deg);
}

/* Answer panel */
.csf-faq-a {
  padding: 0 20px 18px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--faq-muted);
  animation: fadeDown 0.3s ease;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* containerul NU taie conținutul */
.csf-faq, .csf-faq-item, .csf-container { overflow: visible; }

.csf-faq-item{
  border:1px solid #e5e7eb;
  border-radius:14px;
  background:#fff;
  margin-bottom:12px;
  box-shadow:0 4px 14px rgba(2,6,23,.04);
}

/* butonul – important: box-sizing + min-width */
.csf-faq-q{
  all: unset;
  box-sizing: border-box;   /* <- F I X principal */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;       /* poți mări dacă vrei */
  gap: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  color: #0f172a;
}
.csf-faq-q > span:first-child{
  flex: 1;
  min-width: 0;             /* textul nu împinge iconul în afară */
}

/* chevron din CSS (cerc + „V” din borduri) – zero SVG, zero probleme */
.csf-faq-chev{
  flex: 0 0 28px;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #f1f5f9;
  color: #0f172a;
  transition: background .25s ease, transform .25s ease;
}
.csf-faq-q:hover .csf-faq-chev{ background:#e6f0ff }
.csf-faq-chev::before{
  content:""; width:8px; height:8px; display:block;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform .25s ease;
}
.csf-faq-q[aria-expanded="true"] .csf-faq-chev::before{
  transform: rotate(135deg);
}
