/* =====================================================
   פשוט לפרוש — Shared Stylesheet
   Navy + Gold Premium Theme
   ===================================================== */

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

:root {
  --navy:        #0D1B3E;
  --navy-light:  #16285A;
  --bg:          #FFFFFF;
  --bg2:         #F4F7FC;
  --bg3:         #EAF0F9;
  --card:        #FFFFFF;
  --border:      #DDE4F0;
  --border2:     #C4CFEA;
  --gold:        #C47B0A;
  --gold-lt:     #E09218;
  --gold-dim:    rgba(196,123,10,.1);
  --gold-glow:   rgba(196,123,10,.28);
  --text:        #0D1B3E;
  --text2:       #4A587A;
  --text3:       #8B98BC;
  --white:       #FFFFFF;
  --font:        'Heebo', sans-serif;
  --r:           4px;
  --ease:        0.28s cubic-bezier(.4,0,.2,1);
  --shadow:      0 2px 20px rgba(13,27,62,.08);
  --shadow-card: 0 1px 3px rgba(13,27,62,.06), 0 4px 16px rgba(13,27,62,.06);
  --max:         1080px;
}

html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  direction: rtl;
}

a    { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
img  { max-width: 100%; height: auto; display: block; }
ul   { list-style: none; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.section   { padding: 100px 0; }
.section-sm{ padding: 68px 0; }

/* skip link */
.skip-link {
  position: absolute;
  top: -40px;
  right: 12px;
  background: var(--navy);
  color: #FFFFFF;
  padding: 10px 16px;
  border-radius: var(--r);
  font-weight: 700;
  z-index: 9999;
  transition: top var(--ease);
}
.skip-link:focus { top: 12px; }

/* ── Typography ── */
.label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.gold-bar {
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}

h2.section-title {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 18px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text2);
  max-width: 560px;
  line-height: 1.85;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font);
  font-size: .92rem;
  font-weight: 700;
  border-radius: var(--r);
  cursor: pointer;
  transition: var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
  min-height: 44px;
}

.btn-gold {
  background: var(--gold);
  color: #FFFFFF;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--gold-glow);
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.3);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-lt);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--text);
  border-color: var(--border2);
}
.btn-ghost-dark:hover { border-color: var(--gold); color: var(--gold); }

/* ── NAV ── */
#nav {
  position: fixed;
  inset: 0 0 auto;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  z-index: 900;
  transition: background var(--ease), border-color var(--ease), box-shadow var(--ease);
}

#nav:not(.solid) .nav-center a { color: rgba(255,255,255,.65); }
#nav:not(.solid) .nav-center a:hover { color: #FFFFFF; }
#nav:not(.solid) .nav-logo { color: #FFFFFF; }
#nav:not(.solid) .hamburger span { background: #FFFFFF; }

#nav.solid {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 14px rgba(13,27,62,.07);
}
#nav.solid .nav-logo { color: var(--text); }
#nav.solid .nav-center a { color: var(--text2); }
#nav.solid .nav-center a:hover { color: var(--text); }
#nav.solid .hamburger span { background: var(--text); }

.nav-logo {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: .04em;
  flex-shrink: 0;
  line-height: 1.15;
  transition: color var(--ease);
}
.nav-logo em  { font-style: normal; color: var(--gold); }
.nav-logo sub {
  display: block;
  font-size: .55rem;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 2px;
}
#nav.solid .nav-logo sub { color: var(--text3); }

.nav-center {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-center a {
  font-size: .88rem;
  font-weight: 500;
  transition: color var(--ease);
}

.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-cta { padding: 9px 20px !important; font-size: .85rem !important; min-height: 0 !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  transition: background var(--ease);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 66px 0 0;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(20px);
  z-index: 899;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  transition: color var(--ease);
}
.mobile-menu a:hover { color: var(--gold); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.hero-ambient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 20% -5%,  rgba(196,123,10,.18) 0%, transparent 55%),
    radial-gradient(ellipse 45% 40% at 90% 70%,  rgba(196,123,10,.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 60% at 55% 100%, rgba(22,40,90,.6)    0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border: 1px solid rgba(196,123,10,.45);
  background: rgba(196,123,10,.1);
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--gold-lt);
  letter-spacing: .05em;
  margin-bottom: 28px;
}
.hero-pill::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 2s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }

.hero-h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 22px;
  max-width: 740px;
}
.hero-h1 .g { color: var(--gold-lt); }

.hero-p {
  font-size: clamp(.98rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.7);
  max-width: 560px;
  line-height: 1.85;
  margin-bottom: 44px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.12);
  flex-wrap: wrap;
  row-gap: 8px;
}

.trust-item {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  letter-spacing: .04em;
}
.trust-item em {
  font-style: normal;
  color: var(--gold-lt);
}
.trust-sep {
  color: rgba(255,255,255,.2);
  font-size: .9rem;
  font-weight: 300;
  flex-shrink: 0;
  user-select: none;
}

/* ── MARQUEE ── */
.marquee-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  padding: 15px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: scroll-ltr 38s linear infinite;
  width: max-content;
}
.marquee-item {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text3);
  padding: 0 40px;
}
.marquee-item .dot { color: var(--gold); }
@keyframes scroll-ltr {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.svc-card {
  background: var(--card);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--ease), transform var(--ease);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.svc-card:hover {
  box-shadow: 0 6px 32px rgba(13,27,62,.12);
  transform: translateY(-3px);
}
.svc-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s ease;
  border-radius: 8px 8px 0 0;
}
.svc-card:hover::after { transform: scaleX(1); }

.svc-num {
  position: absolute;
  top: 14px; left: 22px;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(13,27,62,.05);
  line-height: 1;
  user-select: none;
}

.svc-icon {
  width: 46px; height: 46px;
  border: 1px solid rgba(196,123,10,.25);
  background: var(--gold-dim);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.svc-tag {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.svc-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.svc-desc {
  font-size: .9rem;
  color: var(--text2);
  line-height: 1.85;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.about-p { font-size: .97rem; color: var(--text2); line-height: 1.9; margin-bottom: 14px; }

.about-feat-list { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.about-feat {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .92rem; color: var(--text2);
}
.about-feat::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 2px;
}

.credentials-box {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  margin-bottom: 18px;
}

.cred-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.cred-list { display: flex; flex-direction: column; gap: 12px; }
.cred-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; color: var(--text2);
}
.cred-item .ck { color: var(--gold); flex-shrink: 0; }

.quote-card {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.05);
  padding: 36px;
  border-radius: 8px;
}

.q-mark {
  font-size: 3rem;
  color: var(--gold);
  opacity: .4;
  font-family: Georgia, serif;
  line-height: .8;
  margin-bottom: 16px;
  display: block;
}

.q-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  line-height: 1.65;
  margin-bottom: 28px;
}

.q-sig { display: flex; align-items: center; gap: 14px; }

.q-avatar {
  width: 44px; height: 44px;
  background: rgba(196,123,10,.15);
  border: 1px solid rgba(196,123,10,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; font-weight: 800; color: var(--gold-lt);
  flex-shrink: 0;
}

.q-name  { font-weight: 700; font-size: .9rem; color: #FFFFFF; }
.q-role  { font-size: .76rem; color: rgba(255,255,255,.55); }

/* ── SLOGAN STRIP ── */
.slogan-strip {
  background: var(--navy);
  padding: 56px 0;
  text-align: center;
}
.slogan-strip p {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 500;
  color: rgba(255,255,255,.7);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.75;
}
.slogan-strip em {
  color: var(--gold-lt);
  font-style: normal;
}

/* ── PROCESS ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.step-card {
  background: var(--card);
  padding: 36px 26px;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.step-card::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-dim));
  border-radius: 0 0 8px 8px;
}

.step-n {
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(196,123,10,.2);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.step-desc { font-size: .87rem; color: var(--text2); line-height: 1.75; }

/* ── ARTICLES ── */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.art-card {
  background: var(--card);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: box-shadow var(--ease), transform var(--ease);
  cursor: pointer;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}
.art-card:hover {
  box-shadow: 0 6px 28px rgba(13,27,62,.12);
  transform: translateY(-3px);
}

.art-cat {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.art-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 10px;
  flex-grow: 1;
}

.art-excerpt {
  font-size: .86rem;
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 20px;
}

.art-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.art-date { font-size: .74rem; color: var(--text3); }
.art-arr  { font-size: .95rem; color: var(--gold); transition: transform var(--ease); }
.art-card:hover .art-arr { transform: translateX(-4px); }

/* ── FAQ ── */
.faq-wrap { max-width: 780px; margin: 56px auto 0; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: right;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  transition: color var(--ease);
}
.faq-q:hover { color: var(--gold); }

.faq-icon {
  width: 28px; height: 28px;
  border: 1px solid var(--border2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  color: var(--text2);
  flex-shrink: 0;
  transition: transform var(--ease), border-color var(--ease), color var(--ease);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--gold);
  color: var(--gold);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  font-size: .95rem;
  color: var(--text2);
  line-height: 1.85;
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding-bottom: 22px;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 72px;
  align-items: start;
}

.contact-h2 {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 18px;
}

.contact-p { font-size: .97rem; color: var(--text2); line-height: 1.85; margin-bottom: 36px; }

.c-methods { display: flex; flex-direction: column; gap: 12px; }

.c-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  transition: border-color var(--ease), box-shadow var(--ease);
  min-height: 44px;
}
.c-method:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(196,123,10,.1);
}

.c-icon {
  width: 36px; height: 36px;
  background: var(--gold-dim);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}
.c-label { font-size: .74rem; color: var(--text3); }
.c-val   { font-size: .92rem; font-weight: 600; color: var(--text); }

/* Form */
.form-box {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 44px;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}
.form-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 28px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 18px; }

.form-label {
  display: block;
  font-size: .82rem;
  color: var(--text2);
  margin-bottom: 7px;
  font-weight: 500;
}

.form-ctrl {
  width: 100%;
  padding: 11px 14px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--text);
  font-family: var(--font);
  font-size: .92rem;
  transition: border-color var(--ease), box-shadow var(--ease);
  direction: rtl;
  -webkit-appearance: none;
  min-height: 44px;
}
.form-ctrl:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,123,10,.1);
}
textarea.form-ctrl { height: 110px; resize: vertical; }
select.form-ctrl   { cursor: pointer; }

.form-note {
  font-size: .75rem;
  color: var(--text3);
  margin-top: 12px;
  text-align: center;
}

.form-submit { width: 100%; padding: 14px; font-size: .97rem; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 52px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}
.footer-logo {
  font-size: 1.3rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 14px;
  line-height: 1.2;
}
.footer-logo em   { font-style: normal; color: var(--gold-lt); }
.footer-logo sub  {
  display: block;
  font-size: .55rem;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 4px;
}
.footer-desc { font-size: .87rem; color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: 20px; }

.footer-col-h {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .87rem; color: rgba(255,255,255,.55); transition: color var(--ease); }
.footer-links a:hover { color: var(--gold-lt); }

.footer-bar {
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.5); }
.footer-copy a { color: rgba(255,255,255,.65); text-decoration: underline; }
.footer-copy a:hover { color: var(--gold-lt); }

.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.55);
  transition: color var(--ease), border-color var(--ease), background var(--ease);
}
.social-icon:hover {
  color: var(--gold-lt);
  border-color: rgba(196,123,10,.5);
  background: var(--gold-dim);
}

.footer-legal {
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 420px;
}

/* ── FLOATS ── */
.wa-float {
  position: fixed;
  bottom: 30px; left: 30px;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 22px rgba(37,211,102,.4);
  z-index: 888;
  transition: transform var(--ease);
}
.wa-float:hover { transform: scale(1.1); }

.btt {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  display: none;
  align-items: center; justify-content: center;
  cursor: pointer;
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  z-index: 887;
  transition: background var(--ease), color var(--ease);
}
.btt.on { display: flex; }
.btt:hover { background: var(--navy-light); color: var(--gold-lt); }

/* ── ARTICLE PAGE ── */
.article-wrap { max-width: 740px; margin: 0 auto; padding: 0 28px; }

.art-header {
  padding: 120px 0 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
  background: var(--navy);
  margin-top: -1px;
}
.art-header .article-wrap { padding-top: 0; }

.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; color: rgba(255,255,255,.55);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a { transition: color var(--ease); }
.breadcrumb a:hover { color: var(--gold-lt); }
.breadcrumb .sep { color: rgba(255,255,255,.3); }

.art-h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 20px;
}

.art-meta {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  font-size: .8rem; color: rgba(255,255,255,.55);
}
.art-meta .cat { color: var(--gold-lt); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.art-body { font-size: 1.02rem; color: var(--text2); line-height: 1.9; padding: 0 28px; }
.art-body h2 {
  font-size: 1.4rem; font-weight: 800; color: var(--text);
  margin: 40px 0 16px; line-height: 1.3;
}
.art-body h3 {
  font-size: 1.12rem; font-weight: 700; color: var(--text);
  margin: 30px 0 12px;
}
.art-body p  { margin-bottom: 18px; }
.art-body strong { color: var(--text); font-weight: 700; }
.art-body em     { color: var(--gold); font-style: normal; }
.art-body blockquote {
  border-right: 3px solid var(--gold);
  padding: 16px 20px;
  margin: 28px 0;
  background: var(--gold-dim);
  border-radius: 0 var(--r) var(--r) 0;
  font-size: 1.03rem;
  color: var(--text);
  font-weight: 500;
}
.art-body ul { margin: 0 0 18px 0; padding: 0; }
.art-body ul li {
  padding: 6px 0 6px 0;
  padding-right: 20px;
  position: relative;
  color: var(--text2);
}
.art-body ul li::before {
  content: '—';
  position: absolute;
  right: 0;
  color: var(--gold);
  font-weight: 700;
}

.art-cta-box {
  background: var(--navy);
  border-radius: 8px;
  padding: 36px 40px;
  margin: 48px 28px;
  text-align: center;
}
.art-cta-box .cta-t { font-size: 1.15rem; font-weight: 800; color: #FFFFFF; margin-bottom: 10px; }
.art-cta-box .cta-p { font-size: .9rem; color: rgba(255,255,255,.7); margin-bottom: 24px; }

/* ── FADE-UP ── */
.fu {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.fu.vis { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .fu { opacity: 1; transform: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .about-grid { gap: 48px; }
  .contact-grid { gap: 48px; }
}

@media (max-width: 960px) {
  .nav-center { display: none; }
  .hamburger  { display: flex; }
  .services-grid  { grid-template-columns: 1fr 1fr; }
  .about-grid     { grid-template-columns: 1fr; gap: 40px; }
  .process-grid   { grid-template-columns: 1fr 1fr; }
  .articles-grid  { grid-template-columns: 1fr; }
  .contact-grid   { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid    { grid-template-columns: 1fr; gap: 30px; }
  .section        { padding: 80px 0; }
  #nav            { padding: 0 24px; }
}

@media (max-width: 768px) {
  .form-box { padding: 32px 24px; }
  .art-cta-box { padding: 28px 24px; margin: 40px 0; }
  .art-body { padding: 0; }
}

@media (max-width: 640px) {
  .section      { padding: 64px 0; }
  .container    { padding: 0 20px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-trust   { gap: 10px; }
  .trust-item   { font-size: .72rem; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid  { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .form-box      { padding: 28px 20px; }
  .contact-grid  { gap: 32px; }
  .footer-bar    { flex-direction: column; text-align: center; }
  .art-header    { padding: 100px 0 36px; }
  .article-wrap  { padding: 0 20px; }
  .wa-float      { bottom: 20px; left: 20px; width: 50px; height: 50px; }
  .btt           { bottom: 20px; right: 20px; }
  #nav           { padding: 0 16px; }
}

@media (max-width: 380px) {
  .hero-h1 { font-size: 2rem; }
  .nav-cta { padding: 8px 14px !important; font-size: .78rem !important; }
  .form-box { padding: 24px 16px; }
}
