/* ===== מזרחי הדברות – Global Stylesheet ===== */
:root {
  --navy: #003366;
  --navy2: #001a33;
  --bg: #f6f8fb;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #5b6476;
  --border: #e6ebf2;
  --green: #36a56a;
  --greenDark: #247047;
  --accent2: #25d366;
  --shadow: 0 8px 32px rgba(0,0,0,.08);
  --shadow2: 0 18px 55px rgba(0,0,0,.12);
  --r: 18px;
  --transition: .18s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 150px; }

body {
  margin: 0;
  font-family: "Heebo", system-ui, -apple-system, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  direction: rtl;
  -webkit-font-smoothing: antialiased;
}

/* Skip to main content – נגישות */
.skip-link {
  position: absolute;
  top: -100px;
  right: 16px;
  background: var(--navy);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 12px 12px;
  font-weight: 900;
  z-index: 99999;
  text-decoration: none;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

a {
  color: inherit;
  transition: color var(--transition), background var(--transition);
}
a:focus-visible {
  outline: 3px solid var(--accent2);
  outline-offset: 3px;
  border-radius: 4px;
}

img { max-width: 100%; height: auto; display: block; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

/* ===== HEADER ===== */
.topbar {
  background: #fff;
  border-bottom: 1.5px solid var(--border);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 9999;
  box-shadow: 0 2px 18px rgba(0,0,0,0.07);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 12px;
}

.topbar__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.topbar__brand {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.topbar__brand-name {
  font-size: 1.15em;
  font-weight: 900;
  color: var(--navy);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.topbar__brand-sub {
  font-size: 0.7em;
  font-weight: 600;
  color: var(--green);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.logo {
  height: 54px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}
.logo:focus-visible { outline: 3px solid var(--accent2); border-radius: 8px; }

nav.desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1;
  flex-wrap: nowrap;
}
nav.desktop a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 800;
  font-size: .9em;
  padding: 7px 11px;
  border-radius: 10px;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}
nav.desktop a:hover { background: #eaf1ed; color: var(--green); }
nav.desktop a.active,
nav.desktop a[aria-current="page"] {
  background: #eef5ff;
  color: var(--green);
  border: 1.5px solid #d7e6ff;
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.topbar__tools {
  text-decoration: none;
  color: var(--navy);
  font-weight: 800;
  font-size: .88em;
  padding: 7px 13px;
  border-radius: 9px;
  background: #f0f4ff;
  border: 1.5px solid #d7e6ff;
  white-space: nowrap;
  transition: background var(--transition);
}
.topbar__tools:hover { background: #dce8ff; }

.topbar__call {
  font-size: .88em;
  padding: 9px 16px;
  white-space: nowrap;
}

.burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: #f6f8fb;
  cursor: pointer;
  font-size: 1.4em;
  color: var(--navy);
  align-items: center;
  justify-content: center;
}
.burger:focus-visible { outline: 3px solid var(--accent2); }

.mobileMenu {
  display: none;
  flex-direction: column;
  padding: 12px 16px;
  gap: 6px;
  background: #fff;
  border-top: 1px solid var(--border);
}
.mobileMenu a {
  text-decoration: none;
  font-weight: 800;
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 1em;
}
.mobileMenu a:hover { background: #eaf1ed; }
.mobileMenu a.active { background: #eef5ff; border: 1.5px solid #d7e6ff; }
.mobile-call-link { background: #eaf6ee !important; color: #247047 !important; }

/* Body offset for fixed header */
body { padding-top: 72px; }
html { scroll-padding-top: 80px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1em;
  font-weight: 900;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--call {
  background: linear-gradient(90deg, var(--green), var(--greenDark));
  color: #fff;
  box-shadow: 0 6px 20px rgba(36,112,71,.22);
}
.btn--call:hover { box-shadow: 0 12px 32px rgba(36,112,71,.32); background: linear-gradient(90deg, #3ab172, var(--greenDark)); }
.btn--wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,.25);
}
.btn--wa:hover { background: #1eb954; box-shadow: 0 10px 28px rgba(37,211,102,.35); }
.btn--outline {
  background: #fff;
  color: var(--greenDark);
  border: 2px solid #cfe7d8;
}
.btn--outline:hover { background: #eaf6ee; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--green) 100%);
  color: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow2);
  margin: 24px auto;
  padding: 48px 0 40px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(1.6em, 4vw, 2.4em);
  font-weight: 900;
  margin: 0 0 16px;
  line-height: 1.3;
}
.hero p {
  font-size: 1.1em;
  line-height: 1.85;
  max-width: 580px;
  margin: 0 auto 24px;
  opacity: .92;
}
.heroActions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== CHIPS ===== */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  border: 1.5px solid rgba(255,255,255,.35);
  color: #fff;
  font-weight: 800;
  font-size: .95em;
  white-space: nowrap;
}

/* ===== SLOGAN TAG ===== */
.slogan-tag {
  display: inline-flex;
  align-items: stretch;
  border-radius: 14px;
  overflow: hidden;
  margin: 0 auto 26px;
  box-shadow: 0 8px 32px rgba(0,0,0,.28), 0 0 0 1.5px rgba(255,255,255,.2);
  font-size: 1em;
  position: relative;
}
.slogan-tag__name {
  background: var(--green);
  color: #fff;
  font-weight: 900;
  padding: 12px 22px;
  font-size: .97em;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: .01em;
  flex-shrink: 0;
  border-left: 1.5px solid rgba(255,255,255,.25);
}
.slogan-tag__text {
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  padding: 12px 22px;
  font-size: .97em;
  display: flex;
  align-items: center;
  gap: 4px;
  font-style: italic;
  letter-spacing: .01em;
}
.slogan-tag__text strong {
  color: #7fecad;
  font-style: normal;
  font-weight: 900;
}

/* ===== CARDS ===== */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow2); transform: translateY(-2px); }
.card h2, .card h3 { margin: 0 0 10px; font-weight: 900; color: var(--navy); font-size: 1.15em; }
.card p { margin: 0; color: var(--muted); line-height: 1.75; font-size: .97em; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

/* ===== SECTION ===== */
.section { padding: 32px 0; }
.section-title {
  font-size: clamp(1.3em, 3vw, 1.8em);
  font-weight: 900;
  color: var(--navy);
  margin: 0 0 6px;
  text-align: center;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 1em;
  margin: 0 0 28px;
}

/* ===== TESTIMONIALS ===== */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 18px; }
.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 4em;
  color: #eaf6ee;
  font-family: serif;
  line-height: 1;
}
.testimonial p { margin: 0 0 14px; color: var(--text); line-height: 1.8; font-size: .97em; padding-top: 20px; }
.testimonial cite { color: var(--muted); font-size: .88em; font-style: normal; font-weight: 700; }

/* ===== STATS ===== */
.stats { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; }
.stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  min-width: 150px;
}
.stat__num { font-size: 2.4em; font-weight: 900; color: var(--green); }
.stat__label { color: var(--muted); font-size: .9em; margin-top: 4px; }

/* ===== FAQ ===== */
details {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}
details[open] { box-shadow: var(--shadow2); border-color: #b7d8c3; }
details summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 1.08em;
  color: var(--navy);
  padding: 18px 22px;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  user-select: none;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: '+';
  margin-right: auto;
  margin-left: 0;
  font-size: 1.4em;
  color: var(--green);
  transition: transform var(--transition);
  font-weight: 300;
}
details[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 22px 18px; color: var(--muted); line-height: 1.8; }

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, var(--navy) 0%, #1a5c3a 100%);
  color: #fff;
  padding: 48px 0 20px;
  margin-top: 48px;
}
.footGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-bottom: 32px;
}
.footTitle { font-size: 1.1em; font-weight: 900; margin: 0 0 14px; }
.footList { list-style: none; padding: 0; margin: 0; line-height: 2; }
.footList a { color: rgba(255,255,255,.82); text-decoration: none; transition: color var(--transition); }
.footList a:hover { color: #fff; }
.footContact a { display: block; color: #fff; text-decoration: none; font-weight: 700; margin-bottom: 10px; }
.footContact a:hover { text-decoration: underline; }
.footBottom {
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 18px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255,255,255,.7);
  font-size: .88em;
}
.footBottom a { color: rgba(255,255,255,.82); text-decoration: none; }
.footBottom a:hover { color: #fff; }

/* ===== FLOAT WA ===== */
.floatWA-wrap {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.floatWA-bubble {
  background: #fff;
  color: var(--text);
  font-size: .88em;
  font-weight: 800;
  padding: 10px 16px;
  border-radius: 16px 16px 16px 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px) scale(.95);
  transition: opacity .35s ease, transform .35s ease;
}
.floatWA-bubble.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.floatWA-bubble strong { color: #25d366; }
.floatWA {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(180deg, #25d366, #1eb954);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7em;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: wa-pulse 2.8s ease-out infinite;
}
.floatWA:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 42px rgba(37,211,102,.55);
  animation: none;
}
@keyframes wa-pulse {
  0%   { box-shadow: 0 8px 32px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); }
  60%  { box-shadow: 0 8px 32px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 32px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  nav.desktop { display: none; }
  .topbar__tools { display: none; }
  .topbar__call { display: none; }
  .burger { display: inline-flex; }
  .topbar__inner { height: 64px; }
  .logo { height: 46px; max-width: 130px; }
  .topbar__brand-sub { display: none; }
  .topbar__brand-name { font-size: 1em; }
  body { padding-top: 64px; }
  html { scroll-padding-top: 72px; }
}

@media (max-width: 480px) {
  .topbar__brand { display: none; }
}

@media (max-width: 768px) {
  .hero { margin: 12px; padding: 32px 0 28px; border-radius: 18px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .stats { gap: 12px; }
  .stat { padding: 16px 22px; }
}

/* ===== DYNAMIC HERO ===== */
.hero--dynamic {
  background: linear-gradient(135deg, #001e4a 0%, #003d1f 40%, #002855 70%, #1a4d35 100%);
  background-size: 300% 300%;
  animation: heroGradient 14s ease infinite;
  padding: 0;
  overflow: hidden;
  position: relative;
}

@keyframes heroGradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Hero brand block */
.hero-brand-block {
  margin-bottom: 18px;
}

.hero-logo {
  max-height: 130px;
  width: auto;
  max-width: 100%;
  border-radius: 14px;
  display: block;
  margin: 0 auto 10px;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.45));
}

.hero-brand-sub {
  font-size: clamp(0.95em, 2.2vw, 1.2em);
  font-weight: 700;
  color: #7fecad;
  margin-top: 4px;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
}

/* Floating pests */
.hero-pests {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hp {
  position: absolute;
  bottom: -60px;
  animation: pestFloat linear infinite;
  opacity: 0;
  user-select: none;
  line-height: 1;
}

@keyframes pestFloat {
  0%   { transform: translateY(0) rotate(0deg);    opacity: 0; }
  8%   { opacity: 0.16; }
  90%  { opacity: 0.16; }
  100% { transform: translateY(-115%) rotate(540deg); opacity: 0; }
}

.hp-1 { left:  6%; font-size:1.1em; animation-duration:  9s; animation-delay: 0s;   }
.hp-2 { left: 15%; font-size:1.3em; animation-duration: 12s; animation-delay: 2.5s; }
.hp-3 { left: 26%; font-size:1.0em; animation-duration:  8s; animation-delay: 4s;   }
.hp-4 { left: 37%; font-size:1.5em; animation-duration: 11s; animation-delay: 1s;   }
.hp-5 { left: 48%; font-size:0.9em; animation-duration:  7s; animation-delay: 6s;   }
.hp-6 { left: 60%; font-size:1.2em; animation-duration: 13s; animation-delay: 3s;   }
.hp-7 { left: 71%; font-size:1.1em; animation-duration:9.5s; animation-delay: 5s;   }
.hp-8 { left: 82%; font-size:1.0em; animation-duration:  8s; animation-delay: 0.8s; }
.hp-9 { left: 91%; font-size:1.3em; animation-duration: 10s; animation-delay: 7s;   }

/* Split row */
.hero__row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 48px 0 40px;
  position: relative;
  z-index: 2;
}

.hero__content {
  flex: 1;
  min-width: 0;
  text-align: center;
}

.hero__visual {
  flex-shrink: 0;
  width: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 40px rgba(0,0,0,0.3));
}

/* Sparkle animation */
@keyframes sparkle {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50%       { opacity: 0.15; transform: scale(0.4); }
}
.sparkle     { animation: sparkle 2.5s ease-in-out infinite; }
.sparkle.sp2 { animation-delay: 0.4s; }
.sparkle.sp3 { animation-delay: 0.8s; }
.sparkle.sp4 { animation-delay: 1.2s; }
.sparkle.sp5 { animation-delay: 1.6s; }
.sparkle.sp6 { animation-delay: 0.6s; }
.sparkle.sp7 { animation-delay: 1.8s; }

/* Stats bar */
.hero-stats-bar {
  display: flex;
  align-items: stretch;
  background: rgba(0,0,0,0.24);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,0.12);
  position: relative;
  z-index: 2;
}

.hero-stat-item {
  flex: 1;
  text-align: center;
  padding: 18px 8px;
  color: #fff;
}

.hero-stat-num {
  font-size: 1.7em;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 0.76em;
  font-weight: 600;
  opacity: 0.82;
  margin-top: 4px;
}

.hero-stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.16);
  flex-shrink: 0;
  margin: 12px 0;
}

@media (max-width: 768px) {
  .hero--dynamic { border-radius: 18px; margin: 12px; }
  .hero__visual   { display: none; }
  .hero__row      { padding: 32px 0 24px; }
  .hero-stat-num  { font-size: 1.25em; }
  .hero-stats-bar { flex-wrap: wrap; }
  .hero-stat-item { flex: 0 0 50%; }
  .hero-stat-divider { display: none; }
}

/* ===== ARTICLE / BLOG ===== */
.article-content h2 { color: var(--navy); font-size: 1.3em; margin-top: 32px; }
.article-content h3 { color: var(--greenDark); font-size: 1.1em; margin-top: 22px; }
.article-content p { line-height: 1.9; color: var(--text); margin-bottom: 16px; }
.article-content ul { padding-right: 22px; }
.article-content li { margin-bottom: 8px; line-height: 1.8; color: var(--text); }
.article-content strong { color: var(--navy); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  font-size: .9em;
  color: var(--muted);
  margin-bottom: 18px;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--greenDark); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { opacity: .5; }

/* ===== REVEAL ON SCROLL ===== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .55s cubic-bezier(.4,0,.2,1), transform .55s cubic-bezier(.4,0,.2,1);
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HERO ENHANCEMENTS ===== */
.hero { position: relative; overflow: hidden; }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,.08) 0%, transparent 55%),
                    radial-gradient(circle at 80% 70%, rgba(37,211,102,.12) 0%, transparent 50%);
  pointer-events: none;
}
.hero-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: .07;
  animation: heroFloat 9s ease-in-out infinite;
}
.hero-deco--1 {
  width: 340px; height: 340px;
  background: #fff;
  top: -120px; left: -80px;
}
.hero-deco--2 {
  width: 220px; height: 220px;
  background: #25d366;
  bottom: -70px; right: -50px;
  animation-delay: -4s;
}
.hero-deco--3 {
  width: 130px; height: 130px;
  background: #fff;
  top: 30px; right: 60px;
  opacity: .05;
  animation-delay: -2s;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-20px) scale(1.05); }
}
.hero h1 { position: relative; }
.hero p   { position: relative; }
.heroActions { position: relative; }
.chips { position: relative; }

/* ===== LICENSE MODAL ===== */
.license-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  inset: 0;
  background: rgba(0,0,0,.88);
  justify-content: center;
  align-items: center;
}
.license-modal:target { display: flex; }
.license-modal img {
  max-width: 30%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
}
.license-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 3em;
  font-weight: 300;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
}
@media (max-width: 768px) { .license-modal img { max-width: 75%; } }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  left: 16px;
  bottom: 90px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.3em;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  z-index: 9998;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background: var(--green); }

/* ===== TRUST BADGE ===== */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 24px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid #cfe7d8;
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 800;
  color: var(--greenDark);
  font-size: .95em;
  box-shadow: var(--shadow);
}
