/* Shared styles for Product Approval UAE category pages */
:root {
  --bg: #fbfaf7;
  --panel: #f2f1ec;
  --panel-2: #f6f5f1;
  --card: #ffffff;
  --navy: #16264a;
  --navy-2: #1f3a66;
  --green: #5a9b2f;
  --green-d: #4d8a28;
  --green-soft: #eef5e7;
  --ink: #1a2a4a;
  --muted: #5e6678;
  --line: #e6e4dd;
  --line-navy: rgba(255,255,255,0.14);
  --r-lg: 28px;
  --r-md: 20px;
  --r-sm: 14px;
  --shadow: 0 1px 2px rgba(22,38,74,.04), 0 12px 32px rgba(22,38,74,.05);
  --shadow-hover: 0 4px 8px rgba(22,38,74,.06), 0 22px 48px rgba(22,38,74,.10);
  --maxw: 1280px;
  --font-display: "Poppins", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--font-body); font-size: 16px; line-height: 1.5;
  -webkit-font-smoothing: antialiased; display: flex; flex-direction: column; min-height: 100vh;
}
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; color: var(--ink); letter-spacing: -0.01em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; width: 100%; }
.accent { color: var(--green); }

/* ---------- NAV (navy pill) ---------- */
header.nav { position: sticky; top: 0; z-index: 50; background: transparent; padding: 16px 0; transition: padding .25s ease; }
header.nav.scrolled { padding: 10px 0; }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 24px;
  background: var(--navy); backdrop-filter: saturate(140%) blur(12px);
  border: 1px solid rgba(255,255,255,.08); border-radius: 999px;
  padding: 0 14px 0 22px; box-shadow: 0 10px 30px rgba(18,32,66,.22); transition: box-shadow .25s ease;
}
header.nav.scrolled .nav-inner { box-shadow: 0 14px 38px rgba(18,32,66,.30); }
.brand { display: flex; align-items: center; gap: 11px; }
.brand-logo-img { height: 46px; width: auto; display: block; }
.foot-logo-img { height: 56px; width: auto; display: block; }
nav.links { display: flex; align-items: center; gap: 6px; }
nav.links a {
  position: relative; font-size: 14.5px; font-weight: 500; color: rgba(255,255,255,.72);
  padding: 8px 14px; border-radius: 999px; transition: color .18s, background .18s; white-space: nowrap;
}
nav.links a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--green); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform .22s cubic-bezier(.2,.7,.3,1);
}
nav.links a:hover { color: #fff; }
nav.links a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 8px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 9px; padding: 9px 8px 9px 12px; border-radius: 999px;
  color: #fff; font-weight: 600; font-size: 14px; white-space: nowrap; transition: color .18s;
}
.nav-phone:hover { color: var(--green); }
.nav-phone .ic { width: 34px; height: 34px; border-radius: 50%; background: rgba(90,155,47,.22); color: #8fce5f; display: grid; place-items: center; flex-shrink: 0; }
.nav-phone .ic svg { width: 17px; height: 17px; }
.nav-phone .lbl { display: flex; flex-direction: column; line-height: 1.1; }
.nav-phone .lbl small { font-family: var(--font-body); font-weight: 500; font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.nav-sep { width: 1px; height: 28px; background: rgba(255,255,255,.16); margin: 0 6px; }

/* ---------- BUTTONS ---------- */
.btn {
  font-family: var(--font-body); font-weight: 600; font-size: 14.5px;
  border: none; cursor: pointer; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:active { transform: translateY(1px); }
.btn-green { background: var(--green); color: #fff; padding: 13px 24px; box-shadow: 0 8px 20px rgba(90,155,47,.28); }
.btn-green:hover { background: var(--green-d); box-shadow: 0 12px 28px rgba(90,155,47,.36); transform: translateY(-1px); }
.btn-green .arr { width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,.2); display: grid; place-items: center; }
.btn-navy { background: var(--navy); color: #fff; padding: 13px 24px; }
.btn-navy:hover { background: var(--navy-2); transform: translateY(-1px); }
.btn-outline { background: #fff; color: var(--navy); border: 1px solid var(--line); padding: 12px 23px; }
.btn-outline:hover { border-color: var(--green); color: var(--green); }

/* ---------- PAGE HEADER ---------- */
main { flex: 1 0 auto; }
.page-head { padding: 30px 0 8px; }
.breadcrumb { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.breadcrumb a { color: var(--muted); transition: color .16s; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb svg { width: 15px; height: 15px; opacity: .5; }
.page-hero {
  background: linear-gradient(160deg, #16264a, #122042); color: #fff;
  border-radius: var(--r-lg); padding: 56px 56px 60px; position: relative; overflow: hidden;
  box-shadow: 0 24px 60px rgba(18,32,66,.20);
}
.page-hero::before { content:""; position:absolute; right:-80px; top:-90px; width:300px; height:300px; border-radius:50%; background: radial-gradient(circle, rgba(90,155,47,.28), transparent 70%); }
.page-hero .eyebrow { display: inline-block; font-family: var(--font-display); font-weight: 600; font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase; color: #8fce5f; margin-bottom: 16px; }
.page-hero h1 { color: #fff; font-size: 46px; font-weight: 700; line-height: 1.05; max-width: 760px; }
.page-hero h1 .accent { color: #8fce5f; }
.page-hero p { color: rgba(255,255,255,.74); font-size: 17px; margin-top: 18px; max-width: 600px; }
.cat-banner { width: 100%; aspect-ratio: 1916 / 821; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.cat-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- EMPTY CONTENT CANVAS ---------- */
.page-body { padding: 40px 0 70px; }
.placeholder {
  border: 2px dashed var(--line); border-radius: var(--r-lg); background: var(--panel-2);
  min-height: 360px; display: grid; place-items: center; text-align: center; padding: 60px 24px;
}
.placeholder .ph-ic { width: 60px; height: 60px; border-radius: 16px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; color: var(--green); margin: 0 auto 20px; box-shadow: var(--shadow); }
.placeholder h3 { font-size: 21px; font-weight: 600; }
.placeholder p { color: var(--muted); font-size: 15px; margin-top: 8px; max-width: 420px; }

/* ---------- FOOTER ---------- */
footer { flex-shrink: 0; margin-top: 60px; background: #11203f; color: #fff; border-radius: 36px 36px 0 0; }
.foot-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; padding: 56px 0 36px; }
footer .blurb { color: rgba(255,255,255,.6); font-size: 14px; margin-top: 18px; max-width: 280px; line-height: 1.6; }
.foot-col h5 { font-family: var(--font-display); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 18px; }
.foot-col a, .foot-col p { display: block; color: rgba(255,255,255,.78); font-size: 14px; margin-bottom: 12px; transition: color .16s; }
.foot-col a:hover { color: var(--green); }
.foot-bar { border-top: 1px solid var(--line-navy); padding: 20px 0; display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,.5); flex-wrap: wrap; gap: 10px; }

/* ---------- CONTENT SECTIONS ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.content-section { padding: 48px 0 0; }
.content-section:first-child { padding-top: 40px; }
.sec-eyebrow { display: inline-block; font-family: var(--font-display); font-weight: 600; font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--green); }
.sec-title { font-size: 31px; font-weight: 600; line-height: 1.12; margin-top: 10px; max-width: 760px; text-wrap: balance; }
.sec-intro { color: var(--muted); font-size: 16.5px; line-height: 1.6; margin-top: 12px; max-width: 720px; }

/* overview: prose + facts card */
.overview-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; margin-top: 24px; }
.ov-left .prose { margin-top: 22px; }
.prose p { color: #3c4254; font-size: 16.5px; line-height: 1.72; margin-top: 16px; }
.prose p:first-child { margin-top: 0; }
.prose strong { color: var(--ink); font-weight: 600; }
.facts-card { background: linear-gradient(160deg, #16264a, #122042); color: #fff; border-radius: var(--r-lg); padding: 28px 30px 18px; box-shadow: 0 20px 50px rgba(18,32,66,.20); }
.facts-card h4 { color: #fff; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; color: #8fce5f; }
.fact-row { display: flex; justify-content: space-between; gap: 18px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.fact-row:last-child { border-bottom: none; }
.fact-row .k { color: rgba(255,255,255,.6); font-size: 13.5px; flex-shrink: 0; }
.fact-row .v { font-weight: 600; font-size: 14.5px; text-align: right; }
.facts-note { font-size: 12px; color: rgba(255,255,255,.45); padding: 14px 0 18px; line-height: 1.5; }
.facts-card .reg-chip { display: inline-block; font-family: var(--font-display); font-weight: 600; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.facts-card .reg-name { color: #fff; font-weight: 600; font-size: 15.5px; line-height: 1.4; margin-top: 5px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.12); }
.facts-card h4.inc-h { margin-top: 16px; }
.inc-list { padding: 6px 0 4px; }
.inc-item { display: flex; gap: 11px; align-items: flex-start; padding: 7px 0; color: rgba(255,255,255,.92); font-size: 14.5px; line-height: 1.45; }
.inc-item .t { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: rgba(143,206,95,.18); color: #8fce5f; display: grid; place-items: center; margin-top: 1px; }
.inc-item .t svg { width: 12px; height: 12px; }

/* document checklist */
.doc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 30px; margin-top: 30px; }
.doc-item { display: flex; gap: 13px; align-items: flex-start; }
.doc-item .tick { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--green-soft); color: var(--green); display: grid; place-items: center; margin-top: 1px; }
.doc-item .tick svg { width: 14px; height: 14px; }
.doc-item p { font-size: 15.5px; color: #3c4254; line-height: 1.5; }
.doc-item p b { color: var(--ink); font-weight: 600; }

/* process steps */
.step-list { margin-top: 28px; display: grid; gap: 0; }
.step-row { display: grid; grid-template-columns: 56px 1fr; gap: 22px; position: relative; padding-bottom: 26px; }
.step-row:not(:last-child)::before { content: ""; position: absolute; left: 27px; top: 52px; bottom: 0; width: 2px; background: linear-gradient(var(--green), var(--line)); }
.step-badge { width: 54px; height: 54px; border-radius: 50%; background: #fff; border: 2px solid var(--green); color: var(--navy); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 20px; box-shadow: var(--shadow); z-index: 1; }
.step-body { padding-top: 6px; }
.step-body h4 { font-size: 18.5px; font-weight: 600; }
.step-body p { color: var(--muted); font-size: 15.5px; line-height: 1.6; margin-top: 7px; max-width: 640px; }

/* benefit cards */
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 34px; }
.benefit { position: relative; background: #fff; border: 1px solid rgba(22,38,74,.055); border-radius: 24px; padding: 40px 32px 38px; box-shadow: 0 2px 4px rgba(22,38,74,.03), 0 20px 44px rgba(22,38,74,.08); overflow: hidden; transition: transform .24s cubic-bezier(.2,.7,.3,1), box-shadow .24s ease; }
.benefit::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--green) 22%, var(--green) 78%, transparent); opacity: .6; }
.benefit:hover { transform: translateY(-6px); box-shadow: 0 4px 8px rgba(22,38,74,.05), 0 30px 60px rgba(22,38,74,.13); }
.benefit .b-ic { width: 66px; height: 66px; border-radius: 50%; background: radial-gradient(circle at 50% 36%, #e4f2d4, #eef7e2 72%); border: none; color: var(--green); display: grid; place-items: center; box-shadow: 0 0 0 7px rgba(90,155,47,.05), 0 12px 24px rgba(90,155,47,.16); margin-bottom: 30px; }
.benefit .b-ic svg { width: 28px; height: 28px; }
.benefit h4 { position: relative; font-size: 18.5px; font-weight: 600; line-height: 1.28; padding-top: 22px; }
.benefit h4::before { content: ""; position: absolute; top: 0; left: 0; width: 26px; height: 3px; border-radius: 2px; background: var(--green); }
.benefit p { color: var(--muted); font-size: 14.8px; line-height: 1.65; margin-top: 13px; }

/* FAQ */
.faq { margin-top: 26px; max-width: 880px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r-sm); background: #fff; margin-bottom: 14px; overflow: hidden; transition: box-shadow .2s, border-color .2s; }
.faq-item[open] { box-shadow: var(--shadow); border-color: #d8d6cd; }
.faq-item summary { list-style: none; cursor: pointer; padding: 22px 26px; display: flex; justify-content: space-between; align-items: center; gap: 18px; font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--green-soft); color: var(--green); display: grid; place-items: center; transition: transform .22s; }
.faq-item[open] summary .chev { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 26px 24px; color: #3c4254; font-size: 15.5px; line-height: 1.7; }

/* what we cover - product type grid */
.cover-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(232px, 1fr)); gap: 14px; margin-top: 28px; }
.cover-pill { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 16px 20px; font-size: 15.5px; font-weight: 500; color: var(--ink); box-shadow: 0 1px 2px rgba(22,38,74,.04), 0 8px 20px rgba(22,38,74,.05); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.cover-pill:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); border-color: #d8d6cd; }
.cover-pill .dot { position: relative; width: 28px; height: 28px; border-radius: 50%; background: var(--green-soft); flex-shrink: 0; }
.cover-pill .dot::after { content: ""; position: absolute; left: 10px; top: 6px; width: 5px; height: 10px; border: solid var(--green); border-width: 0 2px 2px 0; transform: rotate(45deg); }

/* why work with us - value band */
.value-row { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 34px; border: 1px solid rgba(22,38,74,.055); border-radius: 24px; overflow: hidden; background: #fff; box-shadow: 0 2px 4px rgba(22,38,74,.03), 0 20px 44px rgba(22,38,74,.08); }
.value-cell { padding: 40px 30px; border-right: 1px solid var(--line); }
.value-cell:last-child { border-right: none; }
.value-cell .v-ic { width: 62px; height: 62px; border-radius: 50%; background: radial-gradient(circle at 50% 36%, #e4f2d4, #eef7e2 72%); color: var(--green); display: grid; place-items: center; box-shadow: 0 0 0 6px rgba(90,155,47,.05), 0 12px 24px rgba(90,155,47,.16); margin-bottom: 26px; }
.value-cell .v-ic svg { width: 27px; height: 27px; }
.value-cell h4 { position: relative; font-size: 17.5px; font-weight: 600; line-height: 1.28; padding-top: 20px; }
.value-cell h4::before { content: ""; position: absolute; top: 0; left: 0; width: 24px; height: 3px; border-radius: 2px; background: var(--green); }
.value-cell p { color: var(--muted); font-size: 14.3px; line-height: 1.62; margin-top: 12px; }

/* CTA strip */
.page-cta {
  margin: 56px 0 8px; background: linear-gradient(150deg, #16264a, #1f3a66);
  border-radius: var(--r-lg); padding: 46px 48px; color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  box-shadow: 0 10px 30px rgba(18,32,66,.16); position: relative; overflow: hidden;
}
.page-cta::before { content:""; position:absolute; left:-60px; bottom:-90px; width:240px; height:240px; border-radius:50%; background: radial-gradient(circle, rgba(90,155,47,.25), transparent 70%); }
.page-cta h2 { color: #fff; font-size: 28px; font-weight: 600; max-width: 560px; }
.page-cta p { color: rgba(255,255,255,.72); margin-top: 10px; max-width: 520px; font-size: 15.5px; }
.page-cta .btn .arr { width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,.2); display: grid; place-items: center; }

@media (max-width: 900px) {
  .foot-inner { grid-template-columns: 1fr 1fr; }
  nav.links { display: none; }
  .nav-phone .lbl { display: none; }
  .nav-phone { padding: 0; }
  .nav-sep { display: none; }
  .page-hero { padding: 40px 32px 44px; }
  .page-hero h1 { font-size: 34px; }
  .overview-grid { grid-template-columns: 1fr; gap: 28px; }
  .facts-card { position: static; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .value-row { grid-template-columns: 1fr 1fr; }
  .value-cell:nth-child(2) { border-right: none; }
  .value-cell:nth-child(1), .value-cell:nth-child(2) { border-bottom: 1px solid var(--line); }
  .sec-title { font-size: 27px; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 18px; }
  .foot-inner { grid-template-columns: 1fr; }
  .doc-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .value-row { grid-template-columns: 1fr; }
  .value-cell { border-right: none; border-bottom: 1px solid var(--line); }
  .value-cell:last-child { border-bottom: none; }
  .page-cta { padding: 34px 28px; }
}

/* ===== NAV: services dropdown + cross-site links + mobile menu (SEO nav rebuild) ===== */
.nav-toggle { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.nav-item-dd { position: relative; display: flex; align-items: center; }
.nav-item-dd > .ddt { display: inline-flex; align-items: center; gap: 6px; }
.nav-item-dd > .ddt .ddc { width: 13px; height: 13px; opacity: .65; transition: transform .2s ease; }
.nav-item-dd:hover > .ddt .ddc, .nav-item-dd:focus-within > .ddt .ddc { transform: rotate(180deg); }
.dd-menu {
  position: absolute; top: 100%; left: 50%; margin-top: 12px; transform: translateX(-50%) translateY(6px);
  min-width: 250px; background: var(--navy); border: 1px solid rgba(255,255,255,.10); border-radius: 18px;
  padding: 10px; box-shadow: 0 18px 44px rgba(18,32,66,.34); display: grid; gap: 1px;
  opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .18s ease, transform .18s ease; z-index: 60;
}
.nav-item-dd:hover .dd-menu, .nav-item-dd:focus-within .dd-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-item-dd::after { content: ""; position: absolute; top: 100%; left: -10px; right: -10px; height: 18px; }
.dd-menu a { display: block; padding: 9px 14px; border-radius: 10px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,.78); white-space: nowrap; }
.dd-menu a::after { display: none; }
.dd-menu a:hover { background: rgba(255,255,255,.08); color: #fff; }
.dd-menu a[aria-current="page"] { color: #8fce5f; background: rgba(143,206,95,.10); }
.dd-menu .dd-all { margin-top: 5px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.10); color: #8fce5f; font-weight: 600; }
nav.links a[aria-current="page"] { color: #fff; }
nav.links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-burger { display: none; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.08); color: #fff; cursor: pointer; flex-shrink: 0; }
.nav-burger svg { width: 22px; height: 22px; }
@media (max-width: 900px) {
  .nav-burger { display: inline-grid; }
  .nav-cta .btn-green { display: none; }
  header.nav .nav-inner { position: relative; }
  nav.links {
    display: none; position: absolute; top: calc(100% + 10px); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 1px;
    background: var(--navy); border: 1px solid rgba(255,255,255,.10); border-radius: 20px;
    padding: 12px; box-shadow: 0 20px 50px rgba(18,32,66,.34); z-index: 60;
  }
  .nav-toggle:checked ~ nav.links { display: flex; }
  nav.links a { padding: 12px 14px; color: rgba(255,255,255,.82); }
  nav.links a::after { display: none; }
  .nav-item-dd { display: block; }
  .nav-item-dd > .ddt { justify-content: space-between; }
  .nav-item-dd > .ddt .ddc { display: none; }
  .dd-menu {
    position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
    margin: 2px 0 6px; min-width: 0; padding: 2px 0 2px 12px; background: transparent; border: none; box-shadow: none;
  }
  .dd-menu a { padding: 8px 12px; font-size: 13.5px; }
  .dd-menu .dd-all { border-top: none; padding-top: 8px; }
}

/* ===== Floating WhatsApp + Call buttons ===== */
.fab-contact { position: fixed; right: 20px; bottom: 20px; z-index: 80; display: flex; flex-direction: column; gap: 12px; }
.fab { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; box-shadow: 0 8px 22px rgba(0,0,0,.22); color: #fff; transition: transform .18s ease, box-shadow .18s ease; }
.fab svg { width: 28px; height: 28px; fill: #fff; }
.fab:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 12px 28px rgba(0,0,0,.3); }
.fab-wa { background: #25d366; }
.fab-wa svg { width: 30px; height: 30px; }
.fab-call { background: var(--green); }
@media (max-width: 560px) {
  .fab-contact { right: 14px; bottom: 14px; gap: 10px; }
  .fab { width: 50px; height: 50px; }
  .fab svg { width: 26px; height: 26px; }
}

/* ============================================================
   MOBILE REDESIGN (category pages), applies only ≤760px.
   Restyles the shared category markup to the dedicated mobile
   layout. Wrapped in a phone breakpoint so desktop is untouched.
   ============================================================ */
@media (max-width: 760px) {
  .wrap { padding: 0 18px; }

  /* page head */
  .page-head { padding: 16px 0 2px; }
  .breadcrumb { flex-wrap: wrap; gap: 7px; font-family: var(--font-display); font-weight: 600; font-size: 12px; margin-bottom: 0; }
  .breadcrumb a { color: var(--green); }
  .breadcrumb span { color: var(--navy); }
  .breadcrumb svg { width: 13px; height: 13px; }
  .page-hero { padding: 30px 22px 32px; border-radius: var(--r-lg); }
  .page-hero h1 { font-size: 27px; }
  .page-hero p { font-size: 15px; margin-top: 12px; }
  .cat-banner { margin-top: 14px; }

  /* section shell */
  .page-body { padding: 8px 0 24px; }
  .content-section { padding: 30px 0 0; }
  .content-section:first-child { padding-top: 24px; }
  .sec-eyebrow { font-size: 11.5px; }
  .sec-title { font-size: 23px; line-height: 1.18; margin-top: 8px; }
  .sec-intro { font-size: 14.5px; line-height: 1.55; margin-top: 10px; }

  /* overview + facts */
  .overview-grid { display: block; grid-template-columns: 1fr; gap: 0; }
  .ov-left .prose { margin-top: 14px; }
  .prose p { font-size: 15px; line-height: 1.7; margin-top: 13px; }
  .facts-card { margin-top: 22px; padding: 26px 22px 20px; }
  .reg-name { font-size: 15.5px; }
  .inc-list { display: flex; flex-direction: column; gap: 11px; padding: 0; }
  .inc-item { gap: 11px; font-size: 14px; padding: 0; }
  .inc-item .t { width: 22px; height: 22px; background: var(--green); color: #fff; }

  /* what we cover, keep the card+check style, compact 2-up */
  .cover-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; margin-top: 20px; }
  .cover-pill { padding: 13px 14px; font-size: 14px; gap: 11px; border-radius: 14px; }
  .cover-pill .dot { width: 24px; height: 24px; }
  .cover-pill .dot::after { left: 9px; top: 5px; }

  /* process (vertical steps) */
  .step-list { margin-top: 22px; }
  .step-row { grid-template-columns: 48px 1fr; gap: 16px; padding-bottom: 24px; }
  .step-row:not(:last-child)::before { left: 23px; top: 50px; }
  .step-badge { width: 48px; height: 48px; font-size: 18px; background: var(--navy); color: #fff; border: none; }
  .step-body h4 { font-size: 16.5px; }
  .step-body p { font-size: 14px; line-height: 1.55; margin-top: 7px; }

  /* benefit cards (stacked) */
  .benefit-grid { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
  .benefit { padding: 24px 20px; border-radius: 20px; }
  .benefit .b-ic { width: 52px; height: 52px; margin-bottom: 16px; }
  .benefit .b-ic svg { width: 24px; height: 24px; }
  .benefit h4 { font-size: 16.5px; padding-top: 0; }
  .benefit h4::before { display: none; }
  .benefit p { font-size: 14px; margin-top: 10px; }

  /* value row (stacked) */
  .value-row { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; border: none; border-radius: 0; background: transparent; box-shadow: none; overflow: visible; }
  .value-cell { background: #fff; border: 1px solid rgba(22,38,74,.06); border-right: 1px solid rgba(22,38,74,.06); border-bottom: 1px solid rgba(22,38,74,.06); border-radius: 20px; padding: 24px 20px; box-shadow: 0 2px 4px rgba(22,38,74,.03), 0 14px 32px rgba(22,38,74,.06); }
  .value-cell .v-ic { width: 52px; height: 52px; margin-bottom: 16px; }
  .value-cell h4 { font-size: 16.5px; padding-top: 14px; }
  .value-cell p { font-size: 14px; margin-top: 10px; }

  /* faq */
  .faq { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
  .faq-item { border-radius: 16px; }
  .faq-item summary { padding: 17px 18px; font-size: 15px; }
  .faq-item .chev { width: 26px; height: 26px; }
  .faq-item .faq-a { padding: 0 18px 20px; font-size: 14.5px; }

  /* page CTA (full-width button) */
  .page-cta { margin: 34px 0 4px; padding: 30px 24px; flex-direction: column; gap: 20px; align-items: stretch; }
  .page-cta h2 { font-size: 22px; }
  .page-cta p { font-size: 14.5px; }
  .page-cta .btn { width: 100%; justify-content: center; }

  /* footer (2-col) */
  footer { margin-top: 30px; border-radius: 28px 28px 0 0; }
  .foot-inner { grid-template-columns: 1fr 1fr; gap: 24px 16px; padding: 0; margin-top: 26px; }
  .foot-inner > div:first-child { grid-column: 1 / -1; }
  footer .wrap { padding: 36px 22px 26px; }
  .foot-col h5 { font-size: 12px; margin-bottom: 14px; }
  .foot-col a, .foot-col p { font-size: 13.6px; margin-bottom: 10px; }
  .foot-bar { flex-direction: column; gap: 8px; padding: 18px 0 0; }
}

/* ============================================================
   BLOG (index grid + article pages), uses existing tokens
   ============================================================ */
.blog-head { padding: 30px 0 6px; }
.blog-head .sec-title { font-size: 38px; max-width: 820px; }
.blog-head .sec-intro { font-size: 17px; }

.draft-banner { display: flex; align-items: center; gap: 10px; background: #fff7e6; border: 1px solid #f0d9a0; color: #8a6d1f; border-radius: 12px; padding: 12px 16px; font-size: 13.5px; font-weight: 600; margin: 18px 0 0; }
.draft-banner svg { width: 18px; height: 18px; flex-shrink: 0; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 30px; }
.post-card { display: flex; flex-direction: column; background: #fff; border: 1px solid rgba(22,38,74,.06); border-radius: 20px; overflow: hidden; box-shadow: 0 2px 4px rgba(22,38,74,.03), 0 16px 36px rgba(22,38,74,.07); transition: transform .22s cubic-bezier(.2,.7,.3,1), box-shadow .22s ease; }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.post-card .thumb { aspect-ratio: 16 / 9; overflow: hidden; background: var(--panel); }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-card .pc-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.post-tag { align-self: flex-start; font-family: var(--font-display); font-weight: 600; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--green); background: var(--green-soft); border-radius: 999px; padding: 5px 12px; }
.post-card h3 { font-size: 19px; font-weight: 600; line-height: 1.28; margin-top: 14px; }
.post-card .excerpt { color: var(--muted); font-size: 14.5px; line-height: 1.6; margin-top: 10px; flex: 1; }
.post-card .pmeta { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); margin-top: 16px; }
.post-card .pmeta .read { color: var(--green); font-weight: 600; }

/* article */
.article { max-width: 760px; margin: 0 auto; }
.article-head { padding: 6px 0 0; }
.article-head h1 { font-size: 38px; font-weight: 700; line-height: 1.12; margin-top: 14px; letter-spacing: -0.02em; }
.article-lede { color: var(--muted); font-size: 18px; line-height: 1.6; margin-top: 16px; }
.byline { display: flex; align-items: center; gap: 14px; margin-top: 24px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.byline .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--green-soft); color: var(--green); display: grid; place-items: center; flex-shrink: 0; overflow: hidden; }
.byline .avatar svg { width: 26px; height: 26px; }
.byline .avatar img { width: 100%; height: 100%; object-fit: cover; }
.byline .bl-name { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--ink); }
.byline .bl-role { font-size: 13px; color: var(--muted); margin-top: 2px; }
.byline .bl-dates { margin-left: auto; text-align: right; font-size: 12.5px; color: var(--muted); line-height: 1.5; }
.article-body { margin-top: 30px; }
.article-body h2 { font-size: 25px; font-weight: 600; line-height: 1.2; margin-top: 40px; }
.article-body h3 { font-size: 19px; font-weight: 600; margin-top: 26px; }
.article-body p { color: #3c4254; font-size: 16.5px; line-height: 1.75; margin-top: 16px; }
.article-body ul, .article-body ol { color: #3c4254; font-size: 16.5px; line-height: 1.7; margin-top: 14px; padding-left: 22px; }
.article-body li { margin-top: 8px; }
.article-body a { color: var(--green-d); text-decoration: underline; text-underline-offset: 2px; }
.article-body strong { color: var(--ink); font-weight: 600; }

.post-table-wrap { margin-top: 24px; overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; }
.post-table { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 520px; }
.post-table th, .post-table td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.post-table thead th { background: var(--navy); color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: .02em; }
.post-table tbody tr:last-child td { border-bottom: none; }
.post-table tbody tr:nth-child(even) { background: var(--panel-2); }
.post-table td strong { color: var(--ink); }

.checklist { list-style: none; padding: 0; margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.checklist li { position: relative; padding-left: 36px; font-size: 16px; line-height: 1.6; color: #3c4254; margin-top: 0; }
.checklist li::before { content: ""; position: absolute; left: 0; top: 1px; width: 24px; height: 24px; border-radius: 50%; background: var(--green-soft); }
.checklist li::after { content: ""; position: absolute; left: 8px; top: 6px; width: 6px; height: 11px; border: solid var(--green); border-width: 0 2px 2px 0; transform: rotate(45deg); }

.callout { margin-top: 24px; background: var(--green-soft); border-left: 3px solid var(--green); border-radius: 10px; padding: 18px 22px; }
.callout p { margin-top: 0; color: #2f4a18; font-size: 15.5px; }

.embed-box { margin-top: 26px; border: 1px dashed var(--line); border-radius: 14px; background: var(--panel-2); padding: 18px 20px; }
.embed-box h4 { font-family: var(--font-display); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.embed-box p { font-size: 13.5px; color: var(--muted); margin-top: 6px; }
.embed-box textarea { width: 100%; margin-top: 12px; border: 1px solid var(--line); border-radius: 10px; padding: 12px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; color: var(--ink); background: #fff; resize: vertical; min-height: 86px; }

.related { margin-top: 56px; }
.related h2 { font-size: 22px; font-weight: 600; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 20px; }
.related-card { display: block; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 20px; transition: transform .18s, box-shadow .18s, border-color .18s; }
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #d8d6cd; }
.related-card .rc-tag { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--green); font-weight: 600; }
.related-card h4 { font-size: 16px; font-weight: 600; line-height: 1.3; margin-top: 8px; }

@media (max-width: 900px) {
  .post-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .blog-head .sec-title { font-size: 30px; }
}
@media (max-width: 760px) {
  .post-grid { grid-template-columns: 1fr; gap: 16px; }
  .article-head h1 { font-size: 28px; }
  .article-lede { font-size: 16px; }
  .article-body h2 { font-size: 22px; }
  .byline .bl-dates { display: none; }
}

/* ===== Premium WhatsApp chat widget + call button (injected by /wa-widget.js) ===== */
.wa-fab { position: fixed; right: 24px; bottom: 24px; z-index: 90; width: 60px; height: 60px; border-radius: 999px; background: #25d366; color: #fff; border: none; display: grid; place-items: center; box-shadow: 0 10px 28px -8px rgba(11,22,38,.45), 0 2px 6px rgba(11,22,38,.2); cursor: pointer; transition: transform .3s ease, background .22s ease; }
.wa-fab:hover { background: #1fbe5a; transform: translateY(-2px) scale(1.04); }
.wa-fab.is-open { background: var(--navy); }
.wa-fab .wa-i { display: grid; place-items: center; }
.wa-fab .wa-i-chat svg { width: 32px; height: 32px; }
.wa-fab .wa-i-close svg { width: 18px; height: 18px; }
.wa-fab .wa-i-close { display: none; }
.wa-fab.is-open .wa-i-chat { display: none; }
.wa-fab.is-open .wa-i-close { display: grid; }
.wa-card { position: fixed; right: 24px; bottom: 96px; z-index: 90; width: 340px; max-width: calc(100vw - 32px); background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: 0 28px 64px -22px rgba(11,22,38,.5), 0 6px 16px rgba(11,22,38,.12); font-family: var(--font-body); opacity: 0; transform: translateY(12px) scale(.98); transform-origin: bottom right; pointer-events: none; transition: opacity .24s ease, transform .24s ease; }
html.wa-open .wa-card { opacity: 1; transform: none; pointer-events: auto; }
.wa-head { display: flex; align-items: center; gap: 12px; padding: 15px 14px 15px 16px; background: var(--navy); color: #fff; }
.wa-avatar { width: 40px; height: 40px; border-radius: 999px; background: #25d366; color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.wa-avatar svg { width: 24px; height: 24px; }
.wa-id { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.wa-name { font-size: 15px; font-weight: 600; letter-spacing: -.01em; color: #fff; }
.wa-status { font-size: 12px; color: rgba(255,255,255,.72); display: inline-flex; align-items: center; gap: 6px; }
.wa-dot { width: 7px; height: 7px; border-radius: 999px; background: #25d366; display: inline-block; flex-shrink: 0; }
.wa-close { width: 30px; height: 30px; border-radius: 999px; border: none; background: transparent; color: rgba(255,255,255,.8); display: grid; place-items: center; flex-shrink: 0; cursor: pointer; transition: background .2s ease; }
.wa-close:hover { background: rgba(255,255,255,.12); }
.wa-close svg { width: 13px; height: 13px; }
.wa-body { padding: 22px 18px; background: var(--panel-2); }
.wa-bubble { position: relative; background: #fff; border-radius: 3px 14px 14px 14px; padding: 12px 14px; font-size: 14px; line-height: 1.5; color: #3c4254; box-shadow: 0 1px 2px rgba(11,22,38,.12); }
.wa-bubble-name { display: block; font-size: 12px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.wa-cta { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 16px; background: #25d366; color: #fff; font-size: 15px; font-weight: 600; letter-spacing: .01em; transition: background .2s ease; }
.wa-cta:hover { background: #1fbe5a; }
.wa-cta svg { width: 20px; height: 20px; }
.call-fab { position: fixed; right: 96px; bottom: 24px; z-index: 90; width: 60px; height: 60px; border-radius: 999px; background: var(--navy); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 28px -8px rgba(11,22,38,.5), 0 2px 6px rgba(11,22,38,.22); transition: transform .3s ease, background .22s ease; }
.call-fab:hover { background: var(--navy-2); transform: translateY(-2px) scale(1.04); }
.call-fab svg { width: 26px; height: 26px; }
@media (max-width: 640px) {
  .wa-fab { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .wa-fab .wa-i-chat svg { width: 28px; height: 28px; }
  .wa-card { right: 16px; left: 16px; bottom: 80px; width: auto; max-width: none; }
  .call-fab { right: 80px; bottom: 16px; width: 54px; height: 54px; }
  .call-fab svg { width: 24px; height: 24px; }
}
@media print { .wa-fab, .wa-card, .call-fab { display: none !important; } }
