/* ═══════════════════════════════════════════════
   Yozef Automations — Articles stylesheet
   נגזר מפלטת המותג של דף הבית (Navy + Teal)
   ═══════════════════════════════════════════════ */

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

:root {
  --navy:        #0B0A38;
  --navy-2:      #12114A;
  --navy-text:   #151A4A;
  --teal:        #14B8A9;
  --teal-bright: #2EE6D0;
  --teal-deep:   #0E9488;
  --teal-tint:   #E7F8F6;
  --white:       #FFFFFF;
  --grey-text:   #5B6178;
  --line:        #E8EDF5;
  --ok:          #12A150;
  --ok-tint:     #E9F8EF;
  --bad:         #D93A47;
  --bad-tint:    #FDECEE;
  --warn:        #B4780A;
  --warn-tint:   #FEF6E4;
  --font-he:     'Heebo', 'Assistant', sans-serif;
  --font-en:     'Montserrat', sans-serif;
  --max-w:       1160px;
  --read-w:      780px;
  --radius:      18px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-he);
  background: var(--white);
  color: var(--navy-text);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.8;
}

::selection { background: var(--teal); color: #fff; }

img { max-width: 100%; }

/* ═══ NAV ═══ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 6%;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(20,184,169,0.12);
  transition: box-shadow .3s, padding .3s, background .3s;
}

nav.scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 4px 30px rgba(11,10,56,0.10);
  padding: 0.55rem 6%;
}

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 62px; width: auto; transition: height .3s; }
nav.scrolled .nav-logo img { height: 52px; }

.nav-links { display: flex; align-items: center; gap: 2.1rem; list-style: none; }

.nav-links a {
  color: var(--navy-text);
  text-decoration: none;
  font-size: 16px; font-weight: 600;
  position: relative;
  transition: color .2s;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute; bottom: -6px; right: 0;
  width: 0; height: 2.5px; border-radius: 2px;
  background: linear-gradient(90deg, var(--teal-bright), var(--teal));
  transition: width .25s;
}

.nav-links a:not(.nav-cta):hover { color: var(--teal-deep); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-links a.current { color: var(--teal-deep); }
.nav-links a.current::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: #fff !important;
  border-radius: 100px;
  padding: 11px 28px;
  font-size: 15px; font-weight: 700;
  box-shadow: 0 6px 20px rgba(20,184,169,0.35);
  transition: transform .2s, box-shadow .2s;
}

.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(20,184,169,0.45); }

.burger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 26px; height: 3px; margin: 5px 0; border-radius: 3px; background: var(--navy); transition: .3s; }

.scroll-progress {
  position: fixed; top: 0; right: 0;
  height: 4px; width: 0;
  background: linear-gradient(90deg, var(--teal-bright), var(--teal-deep));
  z-index: 200;
  border-radius: 0 0 0 4px;
}

/* ═══ ARTICLE HEADER ═══ */
.art-head {
  padding: 165px 6% 70px;
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 60% 55% at 18% 20%, rgba(46,230,208,0.28), transparent 62%),
    radial-gradient(ellipse 50% 50% at 85% 75%, rgba(64,110,241,0.16), transparent 62%),
    linear-gradient(160deg, #D8F8F3 0%, #EFFCFA 40%, #E9F0FF 78%, #F2F6FF 100%);
}

.art-head-inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }

.crumbs { font-size: 14.5px; color: var(--grey-text); margin-bottom: 1.5rem; font-weight: 500; }
.crumbs a { color: var(--teal-deep); text-decoration: none; font-weight: 600; }
.crumbs a:hover { text-decoration: underline; }
.crumbs span { margin: 0 6px; opacity: .55; }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 14.5px; font-weight: 700;
  margin-bottom: 1.4rem;
}

.pill-live {
  background: #fff;
  border: 1px solid rgba(217,58,71,0.3);
  color: var(--bad);
  box-shadow: 0 6px 22px rgba(11,10,56,0.07);
}

.pill-live .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--bad);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(217,58,71,0.5); }
  50%      { box-shadow: 0 0 0 7px rgba(217,58,71,0); }
}

.art-title {
  font-size: clamp(2.1rem, 4.2vw, 3.35rem);
  font-weight: 900; line-height: 1.22;
  color: var(--navy);
  letter-spacing: -1px;
  margin-bottom: 1.2rem;
  max-width: 940px;
}

.art-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: #3C4468;
  line-height: 1.85;
  max-width: 830px;
  font-weight: 500;
}

.art-meta {
  display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap;
  margin-top: 2rem;
  font-size: 14.5px; color: var(--grey-text); font-weight: 500;
}

.art-meta .sep { width: 5px; height: 5px; border-radius: 50%; background: rgba(91,97,120,0.4); }

/* ═══ KEY FACTS STRIP ═══ */
.facts {
  max-width: var(--max-w); margin: -38px auto 0;
  position: relative; z-index: 5;
  padding: 0 6%;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
}

.fact {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 1.15rem 1rem;
  text-align: center;
  box-shadow: 0 14px 34px rgba(11,10,56,0.07);
}

.fact-num {
  font-family: var(--font-en);
  font-size: 1.55rem; font-weight: 800;
  color: var(--navy); line-height: 1.2;
  display: block;
}
.fact-num em { font-style: normal; color: var(--teal); }
.fact-label { font-size: 13.5px; color: var(--grey-text); font-weight: 600; line-height: 1.5; display: block; margin-top: 3px; }

/* ═══ BODY LAYOUT ═══ */
.art-body { max-width: var(--max-w); margin: 0 auto; padding: 70px 6% 40px; }

.art-cols { display: grid; grid-template-columns: 250px 1fr; gap: 3.2rem; align-items: start; }

/* TOC */
.toc {
  position: sticky; top: 105px;
  background: #FBFDFF;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.4rem 1.3rem;
}

.toc h4 {
  font-size: 13px; font-weight: 800; color: var(--teal-deep);
  letter-spacing: .6px; margin-bottom: 0.9rem;
}

.toc ol { list-style: none; counter-reset: toc; }
.toc li { counter-increment: toc; margin-bottom: 2px; }

.toc a {
  display: block;
  font-size: 14.5px; font-weight: 600; line-height: 1.5;
  color: var(--navy-text); text-decoration: none;
  padding: 7px 9px; border-radius: 9px;
  border-right: 2.5px solid transparent;
  transition: background .2s, color .2s, border-color .2s;
}

.toc a::before { content: counter(toc) ". "; color: #A6AEC2; font-weight: 700; }
.toc a:hover { background: var(--teal-tint); color: var(--teal-deep); }
.toc a.active { background: var(--teal-tint); color: var(--teal-deep); border-right-color: var(--teal); }
.toc a.active::before { color: var(--teal-deep); }

/* PROSE */
.prose { max-width: var(--read-w); font-size: 17px; }

.prose h2 {
  font-size: clamp(1.5rem, 2.4vw, 1.95rem);
  font-weight: 900; color: var(--navy);
  line-height: 1.32; letter-spacing: -0.4px;
  margin: 3.4rem 0 1.1rem;
  scroll-margin-top: 100px;
}

.prose h2:first-child { margin-top: 0; }

.prose h3 {
  font-size: 1.22rem; font-weight: 800; color: var(--navy);
  margin: 2.2rem 0 0.7rem; line-height: 1.4;
  scroll-margin-top: 100px;
}

.prose p { color: #40476A; margin-bottom: 1.15rem; }

.prose strong { color: var(--navy); font-weight: 700; }

.prose a { color: var(--teal-deep); font-weight: 600; text-decoration: none; border-bottom: 1.5px solid rgba(20,184,169,0.35); }
.prose a:hover { border-bottom-color: var(--teal); }

.prose ul, .prose ol { margin: 0 0 1.3rem; padding-right: 0; list-style: none; }

.prose ul li {
  position: relative;
  padding-right: 1.6rem;
  margin-bottom: 0.65rem;
  color: #40476A;
}

.prose ul li::before {
  content: '';
  position: absolute; right: 3px; top: 0.72em;
  width: 7px; height: 7px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-bright), var(--teal-deep));
}

.prose ol { counter-reset: pl; }
.prose ol li {
  position: relative;
  counter-increment: pl;
  padding-right: 2.3rem;
  margin-bottom: 0.9rem;
  color: #40476A;
}
.prose ol li::before {
  content: counter(pl);
  position: absolute; right: 0; top: 0.15em;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--teal-tint);
  border: 1px solid rgba(20,184,169,0.3);
  color: var(--teal-deep);
  font-size: 13.5px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

/* callouts */
.note {
  border-radius: 15px;
  padding: 1.25rem 1.4rem;
  margin: 1.8rem 0;
  font-size: 16px; line-height: 1.8;
  border: 1px solid var(--line);
  background: #FBFDFF;
}

.note .note-t { display: block; font-weight: 800; margin-bottom: 5px; color: var(--navy); }
.note p { margin-bottom: 0; color: #40476A; }
.note p + p { margin-top: 0.7rem; }

.note.tip     { background: var(--teal-tint); border-color: rgba(20,184,169,0.32); }
.note.tip .note-t { color: var(--teal-deep); }
.note.warn    { background: var(--warn-tint); border-color: rgba(180,120,10,0.28); }
.note.warn .note-t { color: var(--warn); }
.note.danger  { background: var(--bad-tint); border-color: rgba(217,58,71,0.25); }
.note.danger .note-t { color: var(--bad); }

/* source ref */
.ref {
  display: inline-block;
  font-size: 12.5px; font-weight: 700;
  color: var(--teal-deep);
  background: var(--teal-tint);
  border: 1px solid rgba(20,184,169,0.28);
  border-radius: 7px;
  padding: 1px 8px;
  margin-right: 5px;
  vertical-align: 2px;
  white-space: nowrap;
}

/* tables */
.tbl-wrap { overflow-x: auto; margin: 1.6rem 0; border: 1px solid var(--line); border-radius: 15px; }

table { width: 100%; border-collapse: collapse; font-size: 15.5px; min-width: 460px; }

thead th {
  background: #F6F9FD;
  color: var(--navy);
  font-weight: 800; font-size: 14.5px;
  text-align: right;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

tbody td { padding: 12px 16px; border-bottom: 1px solid #F1F5FA; color: #40476A; }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: #FBFDFF; }
td.num { font-family: var(--font-en); font-weight: 700; color: var(--navy); direction: ltr; text-align: right; }
tr.hl td { background: var(--teal-tint); }
tr.hl:hover td { background: #DCF3F0; }

/* two-column yes/no lists */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin: 1.8rem 0; }

.split-card { border-radius: 16px; padding: 1.3rem 1.4rem; border: 1px solid var(--line); }
.split-card.yes { background: var(--ok-tint); border-color: rgba(18,161,80,0.25); }
.split-card.no  { background: var(--bad-tint); border-color: rgba(217,58,71,0.22); }

.split-card h4 { font-size: 15.5px; font-weight: 800; margin-bottom: 0.85rem; display: flex; align-items: center; gap: 8px; }
.split-card.yes h4 { color: var(--ok); }
.split-card.no h4  { color: var(--bad); }

.split-card ul { list-style: none; }
.split-card li { font-size: 15px; line-height: 1.65; margin-bottom: 0.55rem; padding-right: 1.35rem; position: relative; color: #3C4468; }
.split-card li::before { position: absolute; right: 0; top: 0; font-weight: 800; }
.split-card.yes li::before { content: '✓'; color: var(--ok); }
.split-card.no li::before  { content: '✕'; color: var(--bad); }

/* scoring bars */
.score-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.9rem; }
.score-name { flex: 0 0 42%; font-size: 15.5px; font-weight: 700; color: var(--navy); }
.score-bar { flex: 1; height: 12px; border-radius: 100px; background: #EEF2F8; overflow: hidden; }
.score-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--teal-bright), var(--teal-deep)); width: 0; transition: width 1.1s cubic-bezier(.2,.8,.2,1); }
.score-pct { flex: 0 0 46px; font-family: var(--font-en); font-weight: 800; color: var(--teal-deep); font-size: 15px; text-align: left; }

/* formula box */
.formula {
  background: var(--navy);
  border-radius: 16px;
  padding: 1.5rem 1.6rem;
  margin: 1.6rem 0;
  color: #fff;
  text-align: center;
}
.formula .f-top { font-size: 16px; font-weight: 700; padding-bottom: 9px; border-bottom: 2px solid var(--teal-bright); display: inline-block; }
.formula .f-bot { font-size: 16px; font-weight: 700; padding-top: 9px; display: block; }
.formula .f-cap { font-size: 13.5px; color: rgba(255,255,255,0.6); margin-top: 0.9rem; }

/* ═══ ELIGIBILITY CHECKER ═══ */
#checker {
  background:
    radial-gradient(ellipse 45% 60% at 12% 10%, rgba(46,230,208,0.10), transparent 60%),
    linear-gradient(200deg, var(--navy) 0%, var(--navy-2) 100%);
  padding: 90px 6%;
  margin-top: 4rem;
}

.chk-inner { max-width: var(--max-w); margin: 0 auto; }

.chk-head { text-align: center; margin-bottom: 3rem; }
.chk-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 700; color: var(--teal-bright);
  margin-bottom: 0.9rem;
}
.chk-label::before { content: ''; width: 34px; height: 3px; border-radius: 2px; background: linear-gradient(90deg, var(--teal-bright), var(--teal)); }

.chk-title { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 900; color: #fff; line-height: 1.28; margin-bottom: 0.9rem; letter-spacing: -0.5px; }
.chk-sub { font-size: 16.5px; color: rgba(255,255,255,0.72); max-width: 620px; margin: 0 auto; line-height: 1.8; }

.chk-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 2.2rem; align-items: start; }

/* the questions live on the LEFT, the verdict panel on the RIGHT (RTL: column 1) */
.chk-form   { grid-column: 2; grid-row: 1; }
.chk-result { grid-column: 1; grid-row: 1; position: sticky; top: 100px; }

.q-block {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(46,230,208,0.18);
  border-radius: 16px;
  padding: 1.3rem 1.4rem;
  margin-bottom: 1rem;
}

.q-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 0.3rem; display: flex; align-items: center; gap: 9px; }
.q-num {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(46,230,208,0.15); border: 1px solid rgba(46,230,208,0.4);
  color: var(--teal-bright);
  font-size: 12.5px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; line-height: 1;
}
.q-hint { font-size: 13.5px; color: rgba(255,255,255,0.5); margin-bottom: 0.9rem; padding-right: 33px; line-height: 1.6; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }

.chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 100px;
  padding: 9px 17px;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-he); font-size: 14.5px; font-weight: 600;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s, transform .15s;
}

.chip:hover { border-color: rgba(46,230,208,0.5); color: #fff; transform: translateY(-1px); }

.chip.on {
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 18px rgba(20,184,169,0.4);
}

.q-select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: 13px 16px;
  color: #fff;
  font-family: var(--font-he); font-size: 15.5px;
  direction: rtl; outline: none;
  transition: border-color .2s, background .2s;
}
.q-select:focus { border-color: var(--teal-bright); background: rgba(46,230,208,0.06); }
.q-select option, .q-select optgroup { background: var(--navy); color: #fff; }
.q-select optgroup { font-weight: 800; color: var(--teal-bright); }

.q-money { display: flex; align-items: center; gap: 10px; }
.q-money input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: 13px 16px;
  color: #fff;
  font-family: var(--font-en); font-size: 16px; font-weight: 600;
  direction: ltr; text-align: right; outline: none;
  transition: border-color .2s, background .2s;
}
.q-money input:focus { border-color: var(--teal-bright); background: rgba(46,230,208,0.06); }
.q-money input::placeholder { color: rgba(255,255,255,0.3); font-weight: 400; }
.q-money .cur { color: rgba(255,255,255,0.55); font-size: 17px; font-weight: 700; }

.chk-reset {
  background: none; border: none;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-he); font-size: 14px; font-weight: 600;
  cursor: pointer; padding: 6px 2px; margin-top: 0.4rem;
  text-decoration: underline;
}
.chk-reset:hover { color: var(--teal-bright); }

/* result panel */
.res-card {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(46,230,208,0.25);
  border-radius: 22px;
  padding: 1.9rem 1.7rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.res-verdict {
  border-radius: 16px;
  padding: 1.2rem 1.3rem;
  margin-bottom: 1.5rem;
  border: 1px solid;
  transition: background .3s, border-color .3s;
}

.res-verdict.idle    { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.14); }
.res-verdict.pass    { background: rgba(18,161,80,0.14);  border-color: rgba(46,230,140,0.45); }
.res-verdict.fail    { background: rgba(217,58,71,0.14);  border-color: rgba(255,120,130,0.4); }
.res-verdict.check   { background: rgba(245,166,35,0.14); border-color: rgba(245,180,80,0.42); }

.res-icon { font-size: 30px; line-height: 1; margin-bottom: 0.6rem; display: block; }
.res-head { font-size: 19px; font-weight: 800; color: #fff; line-height: 1.4; margin-bottom: 0.4rem; }
.res-text { font-size: 14.8px; color: rgba(255,255,255,0.75); line-height: 1.7; }

.res-list { list-style: none; margin-bottom: 1.4rem; }

.res-item {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.res-item:last-child { border-bottom: none; }

.res-mark {
  flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; line-height: 1;
  margin-top: 2px;
}
.res-mark.n { background: rgba(255,255,255,0.09); color: rgba(255,255,255,0.4); }
.res-mark.y { background: rgba(46,230,140,0.22); color: #4BE39A; }
.res-mark.x { background: rgba(255,120,130,0.2); color: #FF8A94; }
.res-mark.q { background: rgba(245,180,80,0.22); color: #F7BE5E; }

.res-cond { font-size: 14.8px; font-weight: 600; color: rgba(255,255,255,0.9); line-height: 1.5; }
.res-why  { font-size: 13.2px; color: rgba(255,255,255,0.5); line-height: 1.55; margin-top: 2px; }

.res-money {
  background: rgba(46,230,208,0.09);
  border: 1px solid rgba(46,230,208,0.3);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  text-align: center;
  margin-bottom: 1.3rem;
}
.res-money-label { font-size: 13.5px; color: rgba(255,255,255,0.6); font-weight: 600; }
.res-money-num { font-family: var(--font-en); font-size: 2rem; font-weight: 800; color: var(--teal-bright); line-height: 1.25; direction: ltr; }
.res-money-note { font-size: 12.8px; color: rgba(255,255,255,0.45); line-height: 1.5; margin-top: 4px; }

.res-btn {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: #fff; text-decoration: none;
  border-radius: 100px;
  padding: 15px;
  font-size: 16.5px; font-weight: 700;
  box-shadow: 0 10px 28px rgba(20,184,169,0.35);
  transition: transform .2s, box-shadow .2s;
}
.res-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(20,184,169,0.48); }

.res-disclaim { font-size: 12.5px; color: rgba(255,255,255,0.42); line-height: 1.65; margin-top: 1rem; text-align: center; }

/* ═══ SERVICES / "WHERE WE COME IN" ═══ */
.svc-sec { padding: 90px 6%; background: var(--white); }
.svc-inner { max-width: var(--max-w); margin: 0 auto; }

.sec-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 700; color: var(--teal-deep);
  margin-bottom: 0.9rem;
}
.sec-label::before { content: ''; width: 34px; height: 3px; border-radius: 2px; background: linear-gradient(90deg, var(--teal-bright), var(--teal)); }

.sec-title {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 900; line-height: 1.26; color: var(--navy);
  margin-bottom: 1.1rem; letter-spacing: -0.5px;
}

.sec-sub { font-size: 17px; color: var(--grey-text); max-width: 640px; line-height: 1.85; }

.center { text-align: center; }
.center .sec-label { justify-content: center; }
.center .sec-sub { margin: 0 auto; }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; margin-top: 3rem; }

.svc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(11,10,56,0.10); border-color: rgba(20,184,169,0.42); }

.svc-ico {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--teal-tint);
  border: 1px solid rgba(20,184,169,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 1.1rem;
}

.svc-card h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 0.55rem; line-height: 1.45; }
.svc-card p { font-size: 15.2px; color: var(--grey-text); line-height: 1.75; margin-bottom: 0.9rem; }

.svc-tag {
  display: inline-block;
  font-size: 12.5px; font-weight: 700;
  color: var(--teal-deep); background: var(--teal-tint);
  border: 1px solid rgba(20,184,169,0.28);
  border-radius: 8px; padding: 3px 10px;
}

/* process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; margin-top: 3rem; counter-reset: st; }

.step {
  background: #FBFDFF;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem 1.3rem;
  position: relative;
  counter-increment: st;
}

.step::before {
  content: counter(st);
  position: absolute; top: -14px; right: 1.3rem;
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: #fff;
  font-family: var(--font-en); font-size: 15px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(20,184,169,0.35);
}

.step h4 { font-size: 16.5px; font-weight: 800; color: var(--navy); margin: 0.9rem 0 0.5rem; line-height: 1.45; }
.step p { font-size: 14.6px; color: var(--grey-text); line-height: 1.7; }

/* ═══ FAQ ═══ */
.faq-sec { padding: 90px 6%; background: #FBFDFF; border-top: 1px solid var(--line); }
.faq-inner { max-width: 860px; margin: 0 auto; }
.faq-list { margin-top: 2.6rem; display: grid; gap: 0.9rem; }

.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 15px; overflow: hidden; transition: border-color .3s, box-shadow .3s; }
.faq-item.open { border-color: rgba(20,184,169,0.45); box-shadow: 0 12px 32px rgba(11,10,56,0.08); }

.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: none; border: none; cursor: pointer;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-he); font-size: 17px; font-weight: 700;
  color: var(--navy); text-align: right;
  transition: color .2s;
}
.faq-q:hover { color: var(--teal-deep); }

.faq-icon {
  flex-shrink: 0;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--teal-tint);
  border: 1px solid rgba(20,184,169,0.3);
  color: var(--teal-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 600; line-height: 1;
  transition: transform .35s, background .3s, color .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: linear-gradient(135deg, var(--teal), var(--teal-deep)); color: #fff; }

.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a-inner { padding: 0 1.5rem 1.4rem; font-size: 15.6px; color: var(--grey-text); line-height: 1.85; }

/* ═══ CTA ═══ */
.cta-sec {
  padding: 80px 6%;
  background:
    radial-gradient(ellipse 50% 60% at 15% 15%, rgba(46,230,208,0.10), transparent 60%),
    linear-gradient(200deg, var(--navy) 0%, var(--navy-2) 100%);
}
.cta-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.cta-inner h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 900; color: #fff; line-height: 1.3; margin-bottom: 1rem; }
.cta-inner p { font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.85; margin-bottom: 2.2rem; }

.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-main {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: #fff; border: none; border-radius: 100px;
  padding: 16px 36px;
  font-family: var(--font-he); font-size: 17px; font-weight: 700;
  text-decoration: none; cursor: pointer;
  box-shadow: 0 10px 30px rgba(20,184,169,0.38);
  transition: transform .2s, box-shadow .2s;
}
.btn-main:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(20,184,169,0.5); }

.btn-ghost-light {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 100px;
  padding: 14px 34px;
  font-family: var(--font-he); font-size: 16.5px; font-weight: 600;
  text-decoration: none;
  transition: background .25s, border-color .25s;
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ═══ ARTICLE INDEX (hub) ═══ */
.hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.hub-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.hub-card:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(11,10,56,0.10); border-color: rgba(20,184,169,0.42); }

.hub-top {
  height: 118px;
  display: flex; align-items: center; justify-content: center;
  font-size: 42px;
  background:
    radial-gradient(ellipse 60% 70% at 25% 30%, rgba(46,230,208,0.28), transparent 65%),
    linear-gradient(140deg, #D8F8F3, #E9F0FF);
  border-bottom: 1px solid var(--line);
}

.hub-body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; flex: 1; }

.hub-tag {
  align-self: flex-start;
  font-size: 12.5px; font-weight: 700;
  color: var(--teal-deep); background: var(--teal-tint);
  border: 1px solid rgba(20,184,169,0.28);
  border-radius: 8px; padding: 3px 10px;
  margin-bottom: 0.8rem;
}

.hub-card h3 { font-size: 19px; font-weight: 800; color: var(--navy); line-height: 1.42; margin-bottom: 0.6rem; }
.hub-card p { font-size: 15.2px; color: var(--grey-text); line-height: 1.75; flex: 1; margin-bottom: 1.1rem; }
.hub-meta { font-size: 13.5px; color: #98A0B3; font-weight: 600; display: flex; align-items: center; gap: 9px; }
.hub-more { color: var(--teal-deep); font-weight: 700; font-size: 15px; }

.hub-soon {
  border: 1px dashed #D5DEEA;
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  text-align: center;
  background: #FBFDFF;
}
.hub-soon .s-ico { font-size: 30px; display: block; margin-bottom: 0.7rem; opacity: .55; }
.hub-soon h3 { font-size: 17px; font-weight: 800; color: #7E879C; margin-bottom: 0.4rem; }
.hub-soon p { font-size: 14.5px; color: #98A0B3; line-height: 1.7; }

/* ═══ FOOTER ═══ */
footer { background: var(--white); padding: 3.5rem 6% 2rem; border-top: 1px solid #EAF0F6; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }

.footer-top {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid #EAF0F6;
  margin-bottom: 1.8rem;
}
.footer-logo img { height: 88px; width: auto; }
.footer-links { display: flex; gap: 2.2rem; flex-wrap: wrap; list-style: none; }
.footer-links a { font-size: 15px; color: var(--navy-text); text-decoration: none; font-weight: 600; transition: color .2s; }
.footer-links a:hover { color: var(--teal-deep); }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem; }
.footer-copy { font-size: 14px; color: #98A0B3; }
.footer-tagline { font-family: var(--font-en); font-size: 11.5px; font-weight: 700; color: var(--teal-deep); letter-spacing: 3px; }

/* ═══ WHATSAPP ═══ */
.wa-btn {
  position: fixed; bottom: 2rem; left: 2rem;
  width: 60px; height: 60px;
  background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform .2s, box-shadow .2s;
  z-index: 90;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.6); }
.wa-btn svg { width: 30px; height: 30px; fill: #fff; }

/* ═══ REVEAL ═══ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1050px) {
  .art-cols { grid-template-columns: 1fr; }
  .toc { position: static; margin-bottom: 2rem; }
  .toc ol { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 1rem; }
  .prose { max-width: none; }
  .facts { grid-template-columns: repeat(3, 1fr); }
  .svc-grid, .hub-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .chk-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .chk-form   { grid-column: 1; grid-row: 2; }
  .chk-result { grid-column: 1; grid-row: 1; position: static; }
}

@media (max-width: 820px) {
  .nav-links {
    display: none;
    position: absolute; top: 100%; right: 0; left: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff;
    box-shadow: 0 20px 40px rgba(11,10,56,0.12);
    padding: 0.5rem 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { text-align: center; }
  .nav-links a { display: block; padding: 0.95rem 1rem; }
  .nav-links .nav-cta { margin: 0.7rem 1.4rem; border-radius: 100px; }
  .burger { display: block; }
  .art-head { padding-top: 130px; }
  .split { grid-template-columns: 1fr; }
  .score-row { flex-wrap: wrap; }
  .score-name { flex: 0 0 100%; margin-bottom: 4px; }
}

@media (max-width: 560px) {
  .facts { grid-template-columns: 1fr 1fr; }
  .svc-grid, .hub-grid, .steps { grid-template-columns: 1fr; }
  .toc ol { grid-template-columns: 1fr; }
  .prose { font-size: 16.5px; }
  .res-card { padding: 1.5rem 1.2rem; }
  .wa-btn { bottom: 1.2rem; left: 1.2rem; width: 54px; height: 54px; }
}
