/* ═══════════════════════════════════════════════════════════
   Abualkomboz Home — scoped homepage styles (front page only)
   Monochrome editorial system: Readex Pro, sharp corners,
   1px borders, dark mode via html.dark
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg: #ffffff;
  --fg: #111111;
  --muted: #6b7280;
  --border: #e5e7eb;
}
html.dark {
  --bg: #09090b;
  --fg: #fafafa;
  --muted: #a1a1aa;
  --border: #27272a;
}

/* ── page base ── */
/* Woodmart sets a min-width on body for desktop layouts — min-width beats
   max-width, so it must be zeroed or the RTL page renders shifted off-screen. */
html.abk-html { overflow-x: hidden !important; min-width: 0 !important; max-width: 100% !important; }
body.abk-home-page {
  background: var(--bg) !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
  min-width: 0 !important;
  max-width: 100% !important;
  width: auto !important;
}
.abk-page {
  background: var(--bg);
  color: var(--fg);
  font-family: "Readex Pro", system-ui, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  direction: rtl;
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}
.abk-page *, .abk-page *::before, .abk-page *::after {
  box-sizing: border-box;
  border-radius: 0;
  font-family: inherit;
}
.abk-page h1, .abk-page h2, .abk-page h3, .abk-page p, .abk-page ul, .abk-page blockquote {
  margin: 0; padding: 0;
}
.abk-page a { color: inherit; text-decoration: none; }
.abk-page ::selection { background: var(--fg); color: var(--bg); }
.abk-page svg.abk-ic { width: 16px; height: 16px; flex-shrink: 0; }

/* hide woodmart/plugin floating leftovers on this page */
body.abk-home-page #chaty-widget,
body.abk-home-page .chaty-widget,
body.abk-home-page #wow-modal-id,
body.abk-home-page .scrollToTop,
body.abk-home-page .wd-back-to-top { display: none !important; }

/* ═══ Header ═══ */
.abk-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.abk-header-in {
  max-width: 1400px; margin: 0 auto;
  padding: 0 16px;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 24px;
  height: 60px;
}
.abk-brand { display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.abk-logo { font-weight: 700; font-size: 1.0625rem; color: var(--fg); }
.abk-sep { color: var(--muted); font-size: .78rem; }
.abk-type { color: var(--muted); font-size: .78rem; min-width: 130px; display: inline-flex; align-items: center; }
.abk-cursor {
  display: inline-block; width: 1px; height: 13px;
  background: var(--fg); opacity: .5; margin-right: 2px;
  animation: abk-blink 1s step-end infinite;
}
@keyframes abk-blink { 0%,50%{opacity:.5} 51%,100%{opacity:0} }

.abk-nav { display: flex; align-items: center; justify-content: center; gap: 40px; }
.abk-nav a {
  color: var(--muted); font-size: .95rem; position: relative;
  padding-bottom: 4px; white-space: nowrap; transition: color .15s;
}
.abk-nav a::after {
  content: ""; position: absolute; bottom: 0; right: 0;
  width: 0; height: 1px; background: var(--fg); transition: width .25s ease;
}
.abk-nav a:hover { color: var(--fg); }
.abk-nav a:hover::after { width: 100%; }

.abk-actions { display: flex; align-items: center; gap: 8px; }
.abk-toggle {
  width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center;
  background: none !important; border: 1px solid var(--border) !important; color: var(--fg) !important;
  cursor: pointer; padding: 0; flex-shrink: 0; transition: border-color .15s, background .15s;
}
.abk-toggle:hover { border-color: var(--fg) !important; background: var(--border) !important; }
.abk-header .abk-toggle svg {
  width: 18px !important; min-width: 18px !important; max-width: 18px !important;
  height: 18px !important; min-height: 18px !important; max-height: 18px !important;
  flex: none !important; flex-shrink: 0 !important;
  stroke-width: 2.25; display: block !important; overflow: visible;
}
.abk-header .abk-toggle svg * { stroke: currentColor !important; fill: none !important; }
.abk-login {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; font-size: .82rem; font-weight: 500;
  color: var(--muted); border: 1px solid var(--border);
  transition: color .15s;
}
.abk-login:hover { color: var(--fg); }
.abk-cta {
  background: var(--fg) !important; color: var(--bg) !important;
  font-size: .85rem; font-weight: 600; padding: 8px 16px;
  border: 1px solid var(--fg); white-space: nowrap; transition: opacity .15s;
}
.abk-cta:hover { opacity: .85; color: var(--bg) !important; }

.abk-burger { display: none !important; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.abk-burger span { display: block; width: 22px; height: 2px; background: var(--fg); transition: transform .25s, opacity .25s; }
.abk-burger.open span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.abk-burger.open span:nth-child(2) { opacity: 0; }
.abk-burger.open span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

.abk-mobile-nav { display: none; border-top: 1px solid var(--border); background: var(--bg); padding: 8px 16px 16px; }
.abk-mobile-nav.open { display: block; }
.abk-mobile-nav a {
  display: block; padding: 13px 0; color: var(--fg); font-size: 1rem; font-weight: 500;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 1100px) {
  .abk-nav, .abk-type, .abk-sep, .abk-login, .abk-cta { display: none !important; }
  .abk-burger { display: flex !important; }
  .abk-header-in { grid-template-columns: auto auto; justify-content: space-between; height: 56px; }
}

/* ═══ Layout ═══ */
.abk-main { max-width: 1024px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 768px) { .abk-main { padding: 0 24px; } }

.abk-section { padding: 48px 0; border-top: 1px solid var(--border); }
@media (min-width: 768px) { .abk-section { padding: 64px 0; } }
.abk-center { text-align: center; }
.abk-mt-2 { margin-top: 8px; }
.abk-mt-6 { margin-top: 24px; }
.abk-mt-8 { margin-top: 32px; }
.abk-br-md { display: none; }
@media (min-width: 768px) { .abk-br-md { display: inline; } }

/* type helpers */
.abk-kicker {
  font-size: .72rem; font-weight: 600; letter-spacing: .15em;
  color: var(--muted); margin-bottom: 12px;
}
.abk-h2 { font-size: 1.4rem; font-weight: 700; color: var(--fg); line-height: 1.4; }
@media (min-width: 768px) { .abk-h2 { font-size: 1.9rem; } }
.abk-h2-lg { font-size: 1.6rem; font-weight: 700; color: var(--fg); line-height: 1.45; margin-bottom: 16px; }
@media (min-width: 768px) { .abk-h2-lg { font-size: 2.6rem; } }
.abk-h3 { font-size: 1.05rem; font-weight: 700; color: var(--fg); margin-bottom: 8px; }
.abk-h3-sm { font-size: .95rem; font-weight: 700; color: var(--fg); margin-bottom: 8px; }
.abk-h-muted { color: var(--muted); }
.abk-p-fg { color: var(--fg); font-size: 1rem; }
.abk-p-lg { font-size: 1.15rem; }
.abk-p-bold { font-weight: 700; font-size: 1.1rem; }
.abk-p-muted { color: var(--muted); font-size: 1rem; line-height: 1.8; }
.abk-p-muted-sm { color: var(--muted); font-size: .875rem; line-height: 1.7; }
.abk-sec-head { text-align: center !important; margin-bottom: 40px; }
.abk-sec-sub {
  color: var(--muted); font-size: .95rem; max-width: 640px;
  display: block;
  margin: 0 auto !important;
  margin-left: auto !important; margin-right: auto !important;
  line-height: 1.8; text-align: center !important;
}
/* the newsletter section keeps its rhythm — subtitle spacing above the form */
.abk-news .abk-sec-sub { margin-bottom: 24px !important; }

/* Woodmart targets bare `p` directly, which beats inherited centering —
   force-center every paragraph inside the centered blocks */
body.abk-home-page .abk-hero p,
body.abk-home-page .abk-sec-head p,
body.abk-home-page .abk-social-proof p,
body.abk-home-page .abk-stat p,
body.abk-home-page .abk-mini-stat p,
body.abk-home-page .abk-news-stat p,
body.abk-home-page .abk-pillar p,
body.abk-home-page .abk-pillar h3,
body.abk-home-page .abk-center p {
  text-align: center !important;
}
.abk-sec-row {
  display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px;
}
@media (min-width: 768px) { .abk-sec-row { flex-direction: row; align-items: flex-end; justify-content: space-between; } }

.abk-link-fg, .abk-link-muted {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .875rem; font-weight: 500; flex-shrink: 0; transition: opacity .15s, color .15s;
}
.abk-link-fg { color: var(--fg); }
.abk-link-fg:hover { opacity: .6; }
.abk-link-muted { color: var(--muted); }
.abk-link-muted:hover { color: var(--fg); }

/* ═══ Hero ═══ */
.abk-hero { padding: 48px 0; text-align: center; }
@media (min-width: 768px) { .abk-hero { padding: 80px 0; } }
.abk-kicker-line { font-size: .8rem; font-weight: 500; color: var(--muted); margin-bottom: 24px; }
.abk-hero-title { margin-bottom: 32px; }
.abk-hero-title p {
  font-size: 1.55rem; font-weight: 700; line-height: 1.35; margin-bottom: 8px;
  word-break: break-word;
}
@media (min-width: 480px) { .abk-hero-title p { font-size: 1.9rem; } }
@media (min-width: 640px) { .abk-hero-title p { font-size: 2.4rem; } }
@media (min-width: 1024px) { .abk-hero-title p { font-size: 3.4rem; } }
.abk-h-fg { color: var(--fg); }
.abk-hero-title .abk-h-muted { color: var(--muted); }
.abk-hero-sub {
  font-size: 1rem; color: var(--muted); max-width: 620px;
  display: block;
  margin: 0 auto 48px !important;
  margin-left: auto !important; margin-right: auto !important;
  line-height: 1.8; text-align: center !important;
}
@media (min-width: 768px) { .abk-hero-sub { font-size: 1.15rem; } }
.abk-hero-btns { display: flex; flex-direction: column; gap: 16px; justify-content: center; align-items: center; }
@media (min-width: 640px) { .abk-hero-btns { flex-direction: row; } }

.abk-btn-solid {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--fg) !important; color: var(--bg) !important;
  padding: 12px 32px; font-size: .875rem; font-weight: 500;
  transition: opacity .2s; border: 1px solid var(--fg);
}
.abk-btn-solid:hover { opacity: .85; color: var(--bg) !important; }
.abk-btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid var(--fg); color: var(--fg) !important;
  padding: 12px 32px; font-size: .875rem; font-weight: 500;
  transition: background .2s, color .2s; background: transparent;
}
.abk-btn-outline:hover { background: var(--fg); color: var(--bg) !important; }

/* ═══ Trust stats ═══ */
.abk-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  padding: 24px 0 48px; border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) { .abk-stats { grid-template-columns: repeat(4, 1fr); } }
.abk-stat { text-align: center; }
.abk-stat-ic { width: 18px !important; height: 18px !important; color: var(--muted); margin: 0 auto 8px; display: block; }
.abk-stat-num { font-size: 1.3rem; font-weight: 700; color: var(--fg); }
@media (min-width: 768px) { .abk-stat-num { font-size: 1.5rem; } }
.abk-stat-num-lg { font-size: 1.4rem; font-weight: 700; color: var(--fg); margin-bottom: 4px; }
@media (min-width: 768px) { .abk-stat-num-lg { font-size: 1.9rem; } }
.abk-stat-lbl { font-size: .75rem; color: var(--muted); }

/* ═══ Intro ═══ */
.abk-intro { padding: 48px 0 64px; max-width: 768px; margin: 0 auto; }
.abk-avatar {
  width: 172px; height: 172px; margin: 0 auto 32px;
  border-radius: 50% !important; overflow: hidden;
  border: 2px solid var(--border);
}
.abk-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; border-radius: 50% !important; display: block; }
.abk-intro-txt > * { margin-bottom: 24px; }
.abk-intro-txt > *:last-child { margin-bottom: 0; }
.abk-quote {
  display: block;
  border-right: 4px solid var(--fg);
  border-left: none; border-top: none; border-bottom: none;
  padding: 2px 28px 2px 0; margin: 32px 0;
  font-size: 1.05rem; font-weight: 700; font-style: italic;
  color: var(--fg); line-height: 1.9;
}

/* ═══ Methodology ═══ */
.abk-phases {
  display: grid; grid-template-columns: 1fr;
  border: 1px solid var(--border); margin-bottom: 40px;
}
@media (min-width: 640px) { .abk-phases { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .abk-phases { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .abk-phases { grid-template-columns: repeat(5, 1fr); } }
.abk-phase {
  padding: 20px; display: flex; flex-direction: column;
  border-bottom: 1px solid var(--border);
  transition: background .2s ease;
}
@media (min-width: 1024px) { .abk-phase { border-bottom: none; border-left: 1px solid var(--border); } .abk-phase:last-child { border-left: none; } }
.abk-phase:hover { background: var(--border); }
.abk-ghost-num {
  font-size: 1.9rem; font-weight: 700; color: var(--border);
  font-variant-numeric: tabular-nums; line-height: 1; display: block; margin-bottom: 8px;
}
.abk-phase:hover .abk-ghost-num { color: var(--muted); }
.abk-phase-title { font-size: .85rem; font-weight: 700; color: var(--fg); margin-bottom: 2px; }
.abk-phase-sub { font-size: .75rem; font-weight: 500; color: var(--muted); margin-bottom: 12px; display: block; }
.abk-phase-desc { font-size: .78rem; color: var(--muted); line-height: 1.7; margin-bottom: 16px; flex-grow: 1; }
.abk-phase-list { list-style: none; }
.abk-phase-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; color: var(--fg); margin-bottom: 6px;
}
.abk-diamond { font-size: 9px; color: var(--fg); }

.abk-mini-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  padding: 24px 0 0; border-top: 1px solid var(--border);
}
@media (min-width: 768px) { .abk-mini-stats { grid-template-columns: repeat(4, 1fr); } }
.abk-mini-stat { text-align: center; }

/* ═══ Pillars ═══ */
.abk-pillars { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 40px; }
@media (min-width: 768px) { .abk-pillars { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.abk-pillar {
  text-align: center; padding: 32px 24px;
  border: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.abk-pillar:hover { border-color: var(--border); background: var(--border); }
.abk-icon-box {
  width: 48px; height: 48px; border: 1px solid var(--fg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.abk-icon-box svg { width: 20px !important; height: 20px !important; color: var(--fg); }

/* ═══ Case studies ═══ */
.abk-cases { display: grid; grid-template-columns: 1fr; border: 1px solid var(--border); }
@media (min-width: 768px) { .abk-cases { grid-template-columns: repeat(3, 1fr); } }
.abk-case {
  display: block; padding: 24px; transition: background .15s;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) {
  .abk-case { border-bottom: none; border-left: 1px solid var(--border); padding: 32px; }
  .abk-case:last-child { border-left: none; }
}
.abk-case:hover { background: var(--border); }
.abk-case-metric { margin-bottom: 20px; }
.abk-case-num { font-size: 2.2rem; font-weight: 700; color: var(--fg); line-height: 1.2; }
.abk-case-co { padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--border); }
.abk-case-name { font-weight: 700; font-size: .875rem; color: var(--fg); }
.abk-read {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-size: .8rem; font-weight: 500; color: var(--fg);
}
.abk-read svg { width: 13px !important; height: 13px !important; }

/* ═══ Testimonials ═══ */
.abk-testis { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .abk-testis { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .abk-testis { grid-template-columns: repeat(3, 1fr); } }
.abk-testi {
  padding: 24px; border: 1px solid var(--border);
  display: flex; flex-direction: column;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.abk-testi:hover {
  transform: translateY(-4px);
  border-color: var(--fg);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.abk-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.abk-star { width: 15px; height: 15px; color: var(--fg); }
.abk-testi-txt { font-size: .875rem; color: var(--muted); line-height: 1.75; flex-grow: 1; margin-bottom: 20px; }
.abk-testi-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--border); margin-top: auto;
}
.abk-testi-name { font-size: .875rem; font-weight: 600; color: var(--fg); }
.abk-badge {
  font-size: .72rem; padding: 4px 8px; font-weight: 500;
  border: 1px solid var(--border); color: var(--muted); flex-shrink: 0;
}

/* ═══ Articles ═══ */
.abk-articles { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .abk-articles { grid-template-columns: repeat(3, 1fr); } }
.abk-article {
  display: block; padding: 24px; border: 1px solid var(--border);
  transition: border-color .2s;
}
.abk-article:hover { border-color: var(--fg); }
.abk-article-title { font-size: 1rem; font-weight: 700; color: var(--fg); line-height: 1.5; margin-bottom: 12px; }

/* ═══ Newsletter ═══ */
.abk-news { padding-bottom: 80px; }
.abk-nf { max-width: 460px; margin: 20px auto 0; width: 100%; overflow: hidden; }
/* Ninja Forms ships fixed widths / table layouts that can blow out the page width */
.abk-nf, .abk-nf * { max-width: 100% !important; min-width: 0 !important; box-sizing: border-box; }
.abk-nf .nf-form-cont, .abk-nf .nf-form-layout, .abk-nf .nf-form-content,
.abk-nf form, .abk-nf .nf-field-container { width: 100% !important; margin: 0 auto; float: none !important; }

/* ninja form → monochrome sharp */
.abk-nf .nf-form-cont { text-align: right; }
.abk-nf .nf-form-title, .abk-nf h3 { display: none; }
.abk-nf .nf-field-label label { font-size: .8rem; color: var(--muted) !important; font-weight: 500; }
.abk-nf input[type="text"], .abk-nf input[type="email"], .abk-nf input[type="tel"] {
  width: 100%; padding: 13px 16px; font-size: .875rem;
  background: var(--bg) !important; color: var(--fg) !important;
  border: 1px solid var(--fg) !important; border-radius: 0 !important;
  outline: none; box-shadow: none !important; height: auto !important;
}
.abk-nf input::placeholder { color: var(--muted) !important; }
.abk-nf input[type="button"], .abk-nf input[type="submit"], .abk-nf button {
  width: 100%; background: var(--fg) !important; color: var(--bg) !important;
  border: 1px solid var(--fg) !important; border-radius: 0 !important;
  font-size: .875rem !important; font-weight: 700 !important;
  padding: 13px !important; cursor: pointer; transition: opacity .2s;
  height: auto !important; box-shadow: none !important;
}
.abk-nf input[type="button"]:hover, .abk-nf input[type="submit"]:hover { opacity: .85; }
.abk-nf .nf-field-container { margin-bottom: 12px; }
.abk-nf .nf-error-msg, .abk-nf .ninja-forms-req-symbol { color: #ef4444 !important; font-size: .75rem; }
.abk-nf .nf-response-msg { color: var(--fg); font-size: .9rem; text-align: center; }

.abk-news-grid {
  display: grid; grid-template-columns: 1fr;
  border: 1px solid var(--border); margin: 48px 0;
}
@media (min-width: 640px) { .abk-news-grid { grid-template-columns: repeat(2, 1fr); } }
.abk-news-item {
  padding: 24px; display: flex; gap: 20px;
  border-bottom: 1px solid var(--border);
  transition: background .2s ease;
}
.abk-news-item:hover { background: var(--border); }
@media (min-width: 640px) {
  .abk-news-item { padding: 32px; }
  .abk-news-item:nth-child(odd) { border-left: 1px solid var(--border); }
  .abk-news-item:nth-child(n+3) { border-bottom: none; }
}
@media (max-width: 639px) { .abk-news-item:last-child { border-bottom: none; } }

.abk-social-proof {
  border: 1px solid var(--border);
  padding: 32px 24px; text-align: center; margin-bottom: 40px;
}
@media (min-width: 768px) { .abk-social-proof { padding: 40px 64px; } }
.abk-proof-txt { font-size: 1.05rem; font-weight: 700; color: var(--fg); line-height: 1.8; margin-bottom: 16px; }
@media (min-width: 768px) { .abk-proof-txt { font-size: 1.25rem; } }

.abk-news-stats { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--border); }
@media (min-width: 768px) { .abk-news-stats { grid-template-columns: repeat(4, 1fr); } }
.abk-news-stat { padding: 28px 8px; text-align: center; border-left: 1px solid var(--border); }
.abk-news-stat:last-child { border-left: none; }
@media (max-width: 767px) { .abk-news-stat:nth-child(2n) { border-left: none; } .abk-news-stat:nth-child(-n+2) { border-bottom: 1px solid var(--border); } }

/* ═══ Footer ═══ */
.abk-footer { border-top: 1px solid var(--border); margin-top: 64px; }
.abk-footer-in {
  max-width: 1024px; margin: 0 auto; padding: 28px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
@media (min-width: 768px) { .abk-footer-in { flex-direction: row; justify-content: space-between; padding: 32px 24px; } }
.abk-socials { display: flex; align-items: center; gap: 16px; }
.abk-socials a { color: var(--muted); transition: color .15s; }
.abk-socials a:hover { color: var(--fg); }
.abk-socials svg { width: 19px; height: 19px; }
.abk-legal { display: flex; gap: 16px; }
.abk-legal a { font-size: .75rem; color: var(--muted); transition: color .15s; }
.abk-legal a:hover { color: var(--fg); }

/* ═══ WhatsApp float ═══ */
.abk-wa {
  position: fixed; bottom: 40px; left: 24px; z-index: 1000;
  display: flex; align-items: center; gap: 10px;
  padding: 14px 24px; background: var(--fg) !important; color: var(--bg) !important;
  border-radius: 50px !important; font-weight: 600; font-size: .9rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  transform: translateY(100px); opacity: 0;
  transition: transform .4s, opacity .4s, box-shadow .2s;
  animation: abk-glow 3s ease-in-out infinite;
}
.abk-wa.show { transform: translateY(0); opacity: 1; }
.abk-wa:hover { transform: translateY(-2px); color: var(--bg) !important; box-shadow: 0 6px 24px rgba(0,0,0,.2); animation: none; }
.abk-wa svg { width: 19px !important; height: 19px !important; color: var(--bg) !important; }
.abk-wa-txt, .abk-wa-txt-sm { color: var(--bg) !important; }
@keyframes abk-glow {
  0%,100% { box-shadow: 0 4px 20px rgba(0,0,0,.15); }
  50% { box-shadow: 0 4px 30px rgba(0,0,0,.25), 0 0 0 4px rgba(128,128,128,.1); }
}
.abk-wa-txt-sm { display: none; }
@media (max-width: 640px) {
  .abk-wa-txt { display: none; }
  .abk-wa-txt-sm { display: inline; }
}

/* ═══ Reveal on scroll ═══ */
.abk-reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.abk-reveal.abk-active { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .abk-reveal { opacity: 1; transform: none; transition: none; }
}
/* no-JS safety: never leave sections invisible */
html.no-js .abk-reveal { opacity: 1; transform: none; }

/* admin bar offset */
body.admin-bar .abk-header { top: 32px; }
