/* ============================================================
   RakuOps — marketing site design system
   Compliance & Operations SaaS. Self-contained, no framework.
   ============================================================ */

:root {
  --ink:        #0f172a;
  --ink-2:      #1e293b;
  --slate:      #475569;
  --muted:      #64748b;
  --faint:      #94a3b8;
  --line:       #e2e8f0;
  --line-2:     #eef2f7;
  --bg:         #ffffff;
  --bg-soft:    #f8fafc;
  --bg-soft-2:  #f1f5f9;
  --indigo:     #4f46e5;
  --indigo-2:   #6366f1;
  --indigo-ink: #312e81;
  --green:      #10b981;
  --green-2:    #34d399;
  --amber:      #f59e0b;
  --radius:     14px;
  --radius-lg:  20px;
  --shadow-sm:  0 1px 2px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.05);
  --shadow:     0 10px 30px rgba(15,23,42,.08);
  --shadow-lg:  0 24px 60px rgba(15,23,42,.14);
  --maxw:       1140px;
  --font:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; min-width: 0; }
html, body { overflow-x: hidden; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--indigo); text-decoration: none; }
a:hover { color: var(--indigo-ink); }

h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; letter-spacing: -.02em; margin: 0 0 .5em; font-weight: 800; }
h1 { font-size: clamp(34px, 5vw, 56px); }
h2 { font-size: clamp(27px, 3.4vw, 40px); }
h3 { font-size: 20px; letter-spacing: -.01em; }
p  { margin: 0 0 1rem; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 760px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--indigo); background: #eef2ff; border: 1px solid #e0e7ff;
  padding: 6px 12px; border-radius: 999px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-2); box-shadow: 0 0 0 4px rgba(52,211,153,.22); }

.lead { font-size: clamp(17px, 2vw, 20px); color: var(--slate); line-height: 1.65; }
.section { padding: 84px 0; }
.section-sm { padding: 56px 0; }
.center { text-align: center; }
.muted { color: var(--muted); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 15px; line-height: 1;
  padding: 13px 22px; border-radius: 11px; cursor: pointer;
  border: 1.5px solid transparent; transition: transform .15s ease, box-shadow .15s ease, background .15s, color .15s, border-color .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--indigo); color: #fff; box-shadow: 0 6px 18px rgba(79,70,229,.28); }
.btn-primary:hover { background: #4338ca; color: #fff; box-shadow: 0 10px 26px rgba(79,70,229,.36); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { color: var(--ink); border-color: #cbd5e1; background: var(--bg-soft); }
.btn-light { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.22); }
.btn-light:hover { background: rgba(255,255,255,.18); color: #fff; }
.btn-white { background: #fff; color: var(--indigo-ink); }
.btn-white:hover { background: #f8fafc; color: var(--indigo-ink); }
.btn-lg { padding: 15px 26px; font-size: 16px; }
.btn-block { width: 100%; }

/* ── Navbar ──────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 19px; letter-spacing: -.02em; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand .mark { width: 30px; height: 30px; flex: 0 0 auto; }
.brand b { color: var(--indigo); font-weight: 800; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--slate); font-weight: 500; font-size: 15px; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
@media (max-width: 900px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-toggle svg { pointer-events: none; }
  body.nav-open .nav-links {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: 66px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 28px rgba(15,23,42,.10); padding: 6px 0;
  }
  body.nav-open .nav-links a { padding: 13px 24px; font-size: 16px; }
  body.nav-open .nav-links a:hover { background: var(--bg-soft); }
}

/* ── Hero ────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; padding: 76px 0 0; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(900px 460px at 78% -8%, #e0e7ff 0%, rgba(224,231,255,0) 60%),
    radial-gradient(760px 520px at -6% 8%, #d1fae5 0%, rgba(209,250,229,0) 55%),
    linear-gradient(180deg, #fbfcff 0%, #ffffff 70%);
}
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 52px; align-items: center; }
.hero h1 { margin-top: 18px; }
.hero .lead { max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-note { margin-top: 18px; font-size: 13.5px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.hero-note svg { color: var(--green); flex: 0 0 auto; }
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: 2; }
}

/* ── App window mock ─────────────────────────────────────── */
.mock {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.mock-bar { display: flex; align-items: center; gap: 7px; padding: 12px 14px; border-bottom: 1px solid var(--line-2); background: var(--bg-soft); }
.mock-bar i { width: 11px; height: 11px; border-radius: 50%; background: #e2e8f0; }
.mock-bar i:nth-child(1){ background:#fca5a5;} .mock-bar i:nth-child(2){ background:#fcd34d;} .mock-bar i:nth-child(3){ background:#86efac;}
.mock-bar .url { margin-left: 10px; font-size: 11.5px; color: var(--faint); background: #fff; border: 1px solid var(--line); border-radius: 7px; padding: 4px 10px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mock-body { padding: 18px; }
.mock-row { display: flex; align-items: center; gap: 12px; padding: 12px 13px; border: 1px solid var(--line-2); border-radius: 11px; margin-bottom: 10px; background: #fff; }
.mock-row:last-child { margin-bottom: 0; }
.mock-check { width: 22px; height: 22px; border-radius: 7px; flex: 0 0 auto; display: flex; align-items: center; justify-content: center; }
.mock-check.done { background: #d1fae5; color: var(--green); }
.mock-check.todo { background: var(--bg-soft-2); border: 1.5px dashed #cbd5e1; }
.mock-line { height: 9px; border-radius: 5px; background: #eef2f7; }
.mock-meta { font-size: 11px; color: var(--faint); white-space: nowrap; }
.mock-badge { font-size: 10.5px; font-weight: 700; padding: 3px 9px; border-radius: 999px; }
.badge-green { background:#d1fae5; color:#047857;} .badge-amber{ background:#fef3c7; color:#92400e;} .badge-indigo{ background:#e0e7ff; color:#4338ca;}
.mock-float {
  position: absolute; right: -14px; bottom: 26px; background: #fff; border: 1px solid var(--line);
  border-radius: 13px; box-shadow: var(--shadow); padding: 12px 14px; display: flex; gap: 11px; align-items: center; max-width: 248px;
}
.hero-visual { position: relative; }
.mock-float .ic { width: 34px; height: 34px; border-radius: 9px; background: #eef2ff; color: var(--indigo); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.mock-float .t { font-size: 13px; font-weight: 700; color: var(--ink); }
.mock-float .s { font-size: 11.5px; color: var(--muted); }
@media (max-width: 520px){ .mock-float{ display:none; } }
.mock-float.tl { right: auto; left: -16px; bottom: auto; top: 22px; }
.mock-float .ic.green { background:#dcfce7; color:var(--green); }
.mock-float .ic.amber { background:#fef3c7; color:#b45309; }

/* ── Soft glow behind a mock ─────────────────────────────── */
.mock-glow { position: absolute; inset: -10% -6% -14% -6%; z-index: -1; border-radius: 40px;
  background: radial-gradient(58% 58% at 72% 18%, rgba(99,102,241,.24), transparent 70%),
              radial-gradient(50% 50% at 18% 92%, rgba(52,211,153,.20), transparent 72%);
  filter: blur(6px); }

/* ── Richer mock content (headers, progress, avatars, text) ─ */
.mock-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 12px; }
.mock-title { font-size: 13px; font-weight: 800; letter-spacing: -.01em; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.mock-title .live { width: 8px; height: 8px; border-radius: 50%; background: var(--green-2); box-shadow: 0 0 0 4px rgba(52,211,153,.18); flex: 0 0 auto; }
.mock-sub { font-size: 11px; font-weight: 700; color: var(--faint); white-space: nowrap; }
.mock-prog { height: 6px; border-radius: 999px; background: var(--bg-soft-2); overflow: hidden; margin: 0 0 16px; }
.mock-prog > i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--indigo), var(--indigo-2)); }
.mock-ava { width: 23px; height: 23px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 800; color: #fff; flex: 0 0 auto; letter-spacing: .02em; }
.mock-ava.i1 { background: linear-gradient(135deg,#6366f1,#4f46e5); } .mock-ava.i2 { background: linear-gradient(135deg,#10b981,#059669); }
.mock-ava.i3 { background: linear-gradient(135deg,#f59e0b,#d97706); } .mock-ava.i4 { background: linear-gradient(135deg,#ec4899,#db2777); }
.mock-txt { font-size: 12.5px; font-weight: 600; color: var(--ink-2); line-height: 1.35; }
.mock-txt .mock-sm { display: block; font-size: 10.5px; font-weight: 600; color: var(--faint); margin-top: 3px; }
.mock-txt.done { color: var(--faint); text-decoration: line-through; text-decoration-color: var(--line); }
.mock-tag { font-size: 10px; font-weight: 800; color: var(--muted); background: var(--bg-soft-2); border: 1px solid var(--line-2); border-radius: 6px; padding: 2px 7px; white-space: nowrap; }

/* ── Stat tiles ──────────────────────────────────────────── */
.mock-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 14px; }
.mstat { background: var(--bg-soft); border: 1px solid var(--line-2); border-radius: 12px; padding: 12px 13px; }
.mstat .v { font-size: 20px; font-weight: 800; letter-spacing: -.03em; color: var(--ink); display: flex; align-items: baseline; gap: 5px; }
.mstat .v small { font-size: 11px; font-weight: 800; color: var(--green); }
.mstat .l { font-size: 10.5px; font-weight: 700; color: var(--faint); margin-top: 2px; text-transform: uppercase; letter-spacing: .03em; }

/* ── Kanban board mock ───────────────────────────────────── */
.kan { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.kan-col { background: var(--bg-soft); border: 1px solid var(--line-2); border-radius: 13px; padding: 10px; }
.kan-hd { display: flex; align-items: center; gap: 7px; font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--faint); margin: 1px 3px 10px; }
.kan-hd .kdot { width: 7px; height: 7px; border-radius: 50%; flex: 0 0 auto; }
.kan-hd .ct { margin-left: auto; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 0 7px; font-size: 10px; color: var(--muted); line-height: 16px; }
.kan-card { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 10px; margin-bottom: 8px; box-shadow: var(--shadow-sm); transition: transform .15s, box-shadow .15s; }
.kan-card:last-child { margin-bottom: 0; }
.kan-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.kan-card .kt { font-size: 11.5px; font-weight: 700; color: var(--ink-2); line-height: 1.35; margin-bottom: 8px; }
.kan-card .kf { display: flex; align-items: center; gap: 7px; }
.kan-card .kf .mock-ava { width: 20px; height: 20px; font-size: 8.5px; }

/* ── Generic centered showcase wrapper ───────────────────── */
.showcase { position: relative; max-width: 940px; margin: 0 auto; }
.showcase .mock-glow { inset: -7% -4% -10% -4%; }
@media (max-width: 680px){
  .mock-stats { grid-template-columns: 1fr 1fr; }
  .kan { grid-template-columns: 1fr; }
  .mock-float.tl { display: none; }
}

/* ── Logo / trust strip ──────────────────────────────────── */
.trust { padding: 30px 0 6px; }
.trust p { text-align: center; font-size: 13px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--faint); margin-bottom: 18px; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.chip { font-size: 14px; font-weight: 600; color: var(--slate); background: var(--bg-soft); border: 1px solid var(--line); padding: 9px 16px; border-radius: 999px; }

/* ── Section heading ─────────────────────────────────────── */
.s-head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.s-head .eyebrow { margin-bottom: 16px; }
.s-head p { color: var(--slate); font-size: 18px; }

/* ── Feature grid ────────────────────────────────────────── */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px){ .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px){ .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; transition: box-shadow .2s, transform .2s, border-color .2s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: #dbe2ea; }
.card .ic {
  width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: #eef2ff; color: var(--indigo); margin-bottom: 16px;
}
.card h3 { margin-bottom: 7px; }
.card p { color: var(--slate); font-size: 15px; margin: 0; }

/* ── Steps ───────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
@media (max-width: 760px){ .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 8px; }
.step .n {
  width: 40px; height: 40px; border-radius: 11px; background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 16px;
}
.step h3 { margin-bottom: 6px; }
.step p { color: var(--slate); font-size: 15px; margin: 0; }

/* ── Split highlight ─────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.rev .split-media { order: 2; }
@media (max-width: 880px){ .split { grid-template-columns: 1fr; gap: 34px; } .split.rev .split-media { order: 0; } }
.split h2 { font-size: clamp(24px, 3vw, 32px); }
.split ul { list-style: none; padding: 0; margin: 18px 0 0; }
.split li { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 12px; color: var(--slate); font-size: 15.5px; }
.split li svg { color: var(--green); flex: 0 0 auto; margin-top: 3px; }
.split-media { background: linear-gradient(160deg, #f8fafc, #eef2ff); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-sm); }

/* ── Pricing ─────────────────────────────────────────────── */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
@media (max-width: 1080px){ .price-grid { grid-template-columns: repeat(2, 1fr); max-width: 720px; margin: 0 auto; } }
@media (max-width: 620px){ .price-grid { grid-template-columns: 1fr; max-width: 420px; } }
.price {
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 26px; display: flex; flex-direction: column;
}
.price.pop { border-color: var(--indigo); box-shadow: 0 0 0 4px rgba(79,70,229,.1); position: relative; }
.price .tag { position: absolute; top: -12px; left: 26px; background: var(--indigo); color: #fff; font-size: 11.5px; font-weight: 700; padding: 4px 12px; border-radius: 999px; }
.price .pname { font-size: 18px; font-weight: 800; }
.price .pdesc { font-size: 13.5px; color: var(--muted); margin: 4px 0 18px; min-height: 38px; }
.price .amt { font-size: 38px; font-weight: 800; letter-spacing: -.03em; }
.price .per { font-size: 14px; color: var(--muted); font-weight: 500; }
.price .pnote { font-size: 12.5px; color: var(--muted); font-weight: 600; margin-top: 4px; }
.price ul { list-style: none; padding: 18px 0 24px; margin: 18px 0 0; border-top: 1px solid var(--line-2); flex: 1; }
.price li { display: flex; gap: 9px; align-items: flex-start; font-size: 14.5px; color: var(--slate); margin-bottom: 11px; }
.price li svg { color: var(--green); flex: 0 0 auto; margin-top: 3px; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { border: 1px solid var(--line); border-radius: 12px; padding: 4px 20px; margin-bottom: 12px; background: #fff; }
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; list-style: none; font-weight: 700; font-size: 16.5px; color: var(--ink); padding: 16px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; color: var(--indigo); font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--slate); font-size: 15px; padding: 0 0 18px; margin: 0; }

/* ── CTA band ────────────────────────────────────────────── */
.cta-band { position: relative; overflow: hidden; border-radius: 26px; padding: 56px 40px; text-align: center; color: #fff;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 55%, #312e81 100%); }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.72); font-size: 18px; max-width: 520px; margin: 0 auto 26px; }
.cta-band .hero-cta { justify-content: center; }

/* ── Footer ──────────────────────────────────────────────── */
.footer { background: var(--ink); color: #cbd5e1; padding: 60px 0 30px; margin-top: 90px; }
.footer .brand { color: #fff; }
.footer .brand b { color: var(--indigo-2); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 44px; }
@media (max-width: 760px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
.footer p { color: #94a3b8; font-size: 14px; max-width: 280px; }
.footer h5 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; margin: 4px 0 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; }
.footer a { color: #cbd5e1; font-size: 14px; }
.footer a:hover { color: #fff; }
.footer-bot { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13px; color: #94a3b8; }

/* ── Blog ────────────────────────────────────────────────── */
.blog-hero { padding: 64px 0 8px; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px){ .post-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px){ .post-grid { grid-template-columns: 1fr; } }
.post-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s, transform .2s, border-color .2s; }
.post-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: #dbe2ea; }
/* Illustrated category thumbnail */
.post-card .thumb { position: relative; height: 132px; overflow: hidden;
  background: linear-gradient(135deg, var(--tc1, #4338ca), var(--tc2, #6366f1)); }
.post-card .thumb::before { content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.17) 1.4px, transparent 1.6px);
  background-size: 15px 15px; }
.post-card .thumb::after { content: ''; position: absolute; left: 14px; top: 13px; width: 30px; height: 8px;
  background-image: radial-gradient(circle, rgba(255,255,255,.85) 3.4px, transparent 3.6px);
  background-size: 11px 8px; background-repeat: repeat-x; opacity: .9; }
.post-card .thumb-ic { position: absolute; right: -8px; bottom: -12px; width: 98px; height: 98px;
  color: #fff; opacity: .92; transition: transform .3s ease; }
.post-card:hover .thumb-ic { transform: scale(1.07) rotate(-4deg); }
.post-card[data-cat="Maintenance"]     .thumb { --tc1:#4338ca; --tc2:#6366f1; }
.post-card[data-cat="EPR & Recycling"] .thumb { --tc1:#047857; --tc2:#10b981; }
.post-card[data-cat="Operations"]      .thumb { --tc1:#0369a1; --tc2:#0ea5e9; }
.post-card[data-cat="Work Orders"]     .thumb { --tc1:#b45309; --tc2:#f59e0b; }
.post-card[data-cat="Compliance"]      .thumb { --tc1:#6d28d9; --tc2:#a855f7; }
.post-card[data-cat="EPR & Recycling"] .post-cat { color:#059669; }
.post-card[data-cat="Operations"]      .post-cat { color:#0284c7; }
.post-card[data-cat="Work Orders"]     .post-cat { color:#d97706; }
.post-card[data-cat="Compliance"]      .post-cat { color:#7c3aed; }

/* Featured (first) post — wide, horizontal */
.post-grid .post-card.featured { grid-column: 1 / -1; flex-direction: row; }
.post-grid .post-card.featured .thumb { height: auto; width: 44%; min-height: 248px; flex: 0 0 auto; }
.post-grid .post-card.featured .thumb-ic { width: 150px; height: 150px; right: 8%; bottom: 12%; }
.post-grid .post-card.featured .pc-body { justify-content: center; padding: 36px 40px; }
.post-grid .post-card.featured h3 { font-size: 27px; line-height: 1.22; }
.post-grid .post-card.featured .ex { font-size: 16px; }
@media (max-width: 760px){
  .post-grid .post-card.featured { flex-direction: column; }
  .post-grid .post-card.featured .thumb { width: auto; min-height: 0; height: 150px; }
}
.post-card .pc-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.post-cat { font-size: 11.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--indigo); margin-bottom: 10px; }
.post-card h3 { font-size: 18px; margin-bottom: 9px; }
.post-card h3 a { color: var(--ink); }
.post-card h3 a:hover { color: var(--indigo); }
.post-card .ex { color: var(--slate); font-size: 14.5px; margin: 0 0 18px; flex: 1; }
.post-card .meta { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--faint); }
.cat-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 8px 0 44px; }
.cat-pill { font-size: 13.5px; font-weight: 600; color: var(--slate); background: #fff; border: 1px solid var(--line); padding: 8px 16px; border-radius: 999px; cursor: pointer; transition: all .15s; }
.cat-pill:hover { border-color: #cbd5e1; }
.cat-pill.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ── Article ─────────────────────────────────────────────── */
.art-hero { padding: 52px 0 0; background: linear-gradient(180deg, #fbfcff, #fff); }
.crumb { font-size: 13.5px; color: var(--muted); margin-bottom: 18px; }
.crumb a { color: var(--muted); } .crumb a:hover { color: var(--indigo); }
.art-head { max-width: 760px; }
.art-head h1 { font-size: clamp(29px, 4vw, 44px); margin: 14px 0 18px; }
.art-meta { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); margin-top: 8px; }
.art-meta .av { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--indigo), var(--indigo-2)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; }
.article-body { max-width: 720px; margin: 0 auto; font-size: 17.5px; color: #334155; line-height: 1.75; }
.article-body > p:first-child { font-size: 20px; color: var(--ink-2); }
.article-body h2 { font-size: 27px; margin: 2em 0 .6em; }
.article-body h3 { font-size: 20px; margin: 1.6em 0 .5em; }
.article-body p { margin: 0 0 1.25em; }
.article-body ul, .article-body ol { margin: 0 0 1.25em; padding-left: 1.3em; }
.article-body li { margin-bottom: .6em; }
.article-body a { text-decoration: underline; text-underline-offset: 3px; }
.article-body blockquote { border-left: 3px solid var(--indigo); margin: 1.6em 0; padding: 4px 0 4px 22px; color: var(--ink-2); font-size: 19px; font-style: italic; }
.article-body img { border-radius: 12px; margin: 1.6em 0; }
.article-body .tldr { background: linear-gradient(135deg,#eef2ff,#f8fafc); border: 1px solid #e0e7ff; border-radius: 14px; padding: 20px 24px; margin: 0 0 30px; }
.article-body .tldr-h { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--indigo); margin: 0 0 12px; }
.article-body .tldr ul { margin: 0; padding-left: 20px; }
.article-body .tldr li { font-size: 16px; color: var(--ink-2); margin-bottom: 8px; line-height: 1.55; }
.post-faq { max-width: 720px; margin: 44px auto 0; }
.post-faq h2 { font-size: 24px; margin: 0 0 18px; }
.post-related { max-width: 720px; margin: 44px auto 0; }
.post-related h2 { font-size: 22px; margin: 0 0 16px; }
.post-related ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.post-related a { display: block; padding: 14px 18px; border: 1px solid var(--line); border-radius: 12px; background: #fff; color: var(--ink); text-decoration: none; transition: border-color .15s, box-shadow .15s, color .15s; }
.post-related a:hover { border-color: #cbd5e1; box-shadow: var(--shadow-sm); color: var(--indigo); }
.post-related .rc { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--faint); display: block; margin-bottom: 4px; }
.post-related .rt { font-weight: 700; font-size: 15.5px; line-height: 1.4; }
.article-body .cmp { width: 100%; border-collapse: collapse; margin: 1.7em 0; font-size: 15px; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.article-body .cmp th, .article-body .cmp td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line-2); vertical-align: top; line-height: 1.45; }
.article-body .cmp thead th { background: var(--bg-soft); font-size: 13px; font-weight: 800; color: var(--ink); }
.article-body .cmp thead th.rk { background: #eef2ff; color: var(--indigo); }
.article-body .cmp td.rk { background: #f5f6ff; color: var(--ink-2); font-weight: 600; }
.article-body .cmp td:first-child, .article-body .cmp th:first-child { font-weight: 700; color: var(--ink-2); width: 26%; }
.article-body .cmp tr:last-child td { border-bottom: none; }
.article-body .cmp-note { font-size: 12.5px; color: var(--faint); margin: -8px 0 1.6em; }

/* ── Resource grids (templates / tools / industries indexes) ─────────────── */
.res-intro { max-width: 720px; margin: 0 auto 6px; }
.res-section { margin: 0 0 14px; }
.res-section-h { display: flex; align-items: baseline; gap: 12px; margin: 38px 0 18px; }
.res-section-h:first-child { margin-top: 0; }
.res-section-h h2 { font-size: 21px; margin: 0; }
.res-section-h .res-count { font-size: 13px; color: var(--faint); font-weight: 600; }
.res-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px){ .res-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px){ .res-grid { grid-template-columns: 1fr; } }
.res-card { --rc1:#4338ca; --rc2:#6366f1; --rc-text:#4f46e5;
  position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: 16px; padding: 24px 22px 20px; text-decoration: none; overflow: hidden;
  transition: box-shadow .22s, transform .22s, border-color .22s; }
.res-card::before { content: ''; position: absolute; left: 0; top: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--rc1), var(--rc2)); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.res-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: #dbe2ea; }
.res-card:hover::before { transform: scaleX(1); }
.res-ic { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, var(--rc1), var(--rc2)); box-shadow: 0 7px 16px rgba(15,23,42,.14); margin-bottom: 16px; }
.res-ic svg { width: 23px; height: 23px; }
.res-card .rc-cat { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--rc-text); }
.res-card h3 { font-size: 17.5px; margin: 7px 0 8px; color: var(--ink); line-height: 1.32; }
.res-card p { font-size: 14px; color: var(--slate); margin: 0 0 16px; line-height: 1.55; flex: 1; }
.res-card .rc-go { font-size: 13px; font-weight: 700; color: var(--rc-text); display: inline-flex; align-items: center; gap: 6px; }
.res-card .rc-go svg { width: 15px; height: 15px; transition: transform .2s; }
.res-card:hover .rc-go svg { transform: translateX(4px); }
.res-card[data-cat="Food Safety"]{ --rc1:#047857; --rc2:#10b981; --rc-text:#059669; }
.res-card[data-cat="Restaurants"]{ --rc1:#b45309; --rc2:#f59e0b; --rc-text:#d97706; }
.res-card[data-cat="Hospitality"]{ --rc1:#9d174d; --rc2:#ec4899; --rc-text:#db2777; }
.res-card[data-cat="Warehouse"]{ --rc1:#0369a1; --rc2:#0ea5e9; --rc-text:#0284c7; }
.res-card[data-cat="Operations"]{ --rc1:#0f766e; --rc2:#14b8a6; --rc-text:#0d9488; }
.res-card[data-cat="Compliance"]{ --rc1:#6d28d9; --rc2:#a855f7; --rc-text:#7c3aed; }
.res-card[data-cat="Maintenance"]{ --rc1:#4338ca; --rc2:#6366f1; --rc-text:#4f46e5; }

/* ── Template (printable checklist) ──────────────────────────────────────── */
.tmpl { max-width: 780px; margin: 0 auto; }
.tmpl-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 0 0 16px; }
.tmpl-meta { display: flex; gap: 22px; flex-wrap: wrap; font-size: 13px; color: var(--muted); margin: 0 0 28px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.tmpl-meta span { display: inline-flex; align-items: center; gap: 7px; }
.tmpl-meta b { color: var(--ink-2); font-weight: 700; }
.tmpl-meta svg { width: 15px; height: 15px; color: var(--faint); }
.tmpl-progress { font-size: 13px; font-weight: 700; color: var(--indigo); margin: 0 0 18px; display: none; }
.tmpl-section { margin: 0 0 26px; }
.tmpl-section h2 { font-size: 18px; margin: 0 0 14px; display: flex; align-items: center; gap: 12px; }
.tmpl-section h2 .tmpl-num { width: 27px; height: 27px; border-radius: 8px; background: #eef2ff; color: var(--indigo); font-size: 13px; font-weight: 800; display: grid; place-items: center; flex: 0 0 auto; }
.tmpl-list { list-style: none; padding: 0; margin: 0; }
.tmpl-list li { display: flex; align-items: center; gap: 13px; padding: 13px 16px; border: 1px solid var(--line-2); border-radius: 11px; margin-bottom: 9px; font-size: 15px; color: var(--ink-2); background: #fff; cursor: pointer; transition: border-color .15s, background .15s, box-shadow .15s; user-select: none; }
.tmpl-list li:hover { border-color: #cbd5e1; background: #fbfcfe; box-shadow: var(--shadow-sm); }
.tmpl-box { width: 21px; height: 21px; border: 1.8px solid #cbd5e1; border-radius: 6px; flex: 0 0 auto; display: grid; place-items: center; transition: background .15s, border-color .15s; }
.tmpl-box svg { width: 13px; height: 13px; color: #fff; opacity: 0; transition: opacity .15s; }
.tmpl-list li.done .tmpl-box { background: var(--green); border-color: var(--green); }
.tmpl-list li.done .tmpl-box svg { opacity: 1; }
.tmpl-list li.done .tmpl-txt { color: var(--faint); text-decoration: line-through; }
.tmpl-cta { background: linear-gradient(135deg,#0f172a,#1e1b4b 55%,#312e81); color: #fff; border-radius: 18px; padding: 34px 30px; text-align: center; margin: 38px auto 0; max-width: 780px; }
.tmpl-cta h3 { color: #fff; font-size: 22px; margin: 0 0 10px; } .tmpl-cta p { color: rgba(255,255,255,.78); margin: 0 auto 20px; max-width: 500px; line-height: 1.6; }
@media print { .nav, .footer, .tmpl-actions, .tmpl-cta, .tmpl-progress, .crumb, .post-faq, .post-related, .rk-cookie-bar, .nav-cta, .nav-toggle { display: none !important; } .tmpl { max-width: 100%; } .tmpl-list li { cursor: default; break-inside: avoid; } body { background: #fff; } .art-hero { padding-top: 0; } }

/* ── Calculators ─────────────────────────────────────────────────────────── */
.calc { max-width: 720px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 30px; box-shadow: var(--shadow); }
@media (max-width: 520px){ .calc { padding: 22px; } }
.calc-head { display: flex; align-items: center; gap: 15px; margin: 0 0 24px; }
.calc-head .calc-ic { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg,#4338ca,#6366f1); box-shadow: 0 8px 18px rgba(67,56,202,.28); flex: 0 0 auto; }
.calc-head .calc-ic svg { width: 25px; height: 25px; }
.calc-head h2 { font-size: 19px; margin: 0; }
.calc-head p { margin: 3px 0 0; font-size: 13.5px; color: var(--muted); }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 520px){ .calc-grid { grid-template-columns: 1fr; } }
.calc-row { margin-bottom: 2px; }
.calc-row label { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; font-size: 13px; font-weight: 600; color: var(--slate); margin-bottom: 7px; }
.calc-row label .hint { font-weight: 400; color: var(--faint); font-size: 11.5px; }
.calc-field { position: relative; }
.calc-field .pfx { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: var(--faint); font-size: 15px; pointer-events: none; }
.calc-field.has-pfx input { padding-left: 26px; }
.calc-row input, .calc-row select { width: 100%; font: inherit; font-size: 15px; padding: 12px 14px; border: 1.5px solid #d1d5db; border-radius: 11px; box-sizing: border-box; background: #fff; transition: border-color .15s, box-shadow .15s; }
.calc-row input:focus, .calc-row select:focus { border-color: var(--indigo); outline: none; box-shadow: 0 0 0 3px rgba(79,70,229,.12); }
.calc-result { margin-top: 26px; background: linear-gradient(135deg,#0f172a,#1e1b4b 55%,#312e81); color: #fff; border-radius: 16px; padding: 30px 26px; text-align: center; }
.calc-result .v { font-size: 42px; font-weight: 800; letter-spacing: -.02em; line-height: 1; }
.calc-result .l { font-size: 12.5px; color: rgba(255,255,255,.72); margin-top: 8px; text-transform: uppercase; letter-spacing: .05em; }
.calc-break { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-top: 22px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); }
.calc-break > div { text-align: center; }
.calc-break .bv { font-size: 22px; font-weight: 800; }
.calc-break .bl { font-size: 11px; text-transform: uppercase; letter-spacing: .04em; color: rgba(255,255,255,.6); margin-top: 3px; }
.calc-result .sub { font-size: 13.5px; color: rgba(255,255,255,.85); margin-top: 18px; line-height: 1.55; }
.cost-box { background: var(--bg-soft); border: 1px solid var(--line); border-left: 3px solid var(--amber); border-radius: 12px; padding: 18px 20px; margin: 1.4em 0; }
.cost-box-label { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--amber); }
.cost-box-title { font-weight: 700; color: var(--ink); margin: 4px 0 6px; font-size: 17px; }
.cost-box p { margin: 0; font-size: 15.5px; color: var(--slate); }
.art-cta { max-width: 720px; margin: 48px auto 0; background: linear-gradient(135deg,#0f172a,#1e1b4b 55%,#312e81); color:#fff; border-radius: 18px; padding: 34px 32px; text-align: center; }
.art-cta h3 { color: #fff; font-size: 23px; }
.art-cta p { color: rgba(255,255,255,.72); margin: 6px auto 20px; max-width: 460px; }

/* ── Cookie consent bar ──────────────────────────────────── */
.rk-cookie-bar { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 9999;
  max-width: 760px; margin: 0 auto; display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  background: #0f172a; color: #e2e8f0; border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; padding: 16px 20px; box-shadow: 0 20px 50px rgba(15,23,42,.35); }
.rk-cookie-bar .rk-cc-text { flex: 1 1 320px; font-size: 13.5px; line-height: 1.55; color: #cbd5e1; }
.rk-cookie-bar .rk-cc-text a { color: #a5b4fc; font-weight: 600; text-decoration: underline; }
.rk-cookie-bar .rk-cc-actions { display: flex; gap: 10px; flex: 0 0 auto; }
.rk-cc-btn { font: inherit; font-size: 13.5px; font-weight: 700; border-radius: 9px; padding: 9px 18px; cursor: pointer; border: 1px solid transparent; transition: opacity .15s, background .15s; }
.rk-cc-accept { background: #4f46e5; color: #fff; }
.rk-cc-accept:hover { background: #4338ca; }
.rk-cc-decline { background: transparent; color: #cbd5e1; border-color: rgba(255,255,255,.18); }
.rk-cc-decline:hover { background: rgba(255,255,255,.06); }
@media (max-width: 520px){ .rk-cookie-bar { left: 10px; right: 10px; bottom: 10px; padding: 14px 16px; } .rk-cookie-bar .rk-cc-actions { width: 100%; } .rk-cc-btn { flex: 1; } }

/* ── Reveal animation ────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ── Small-screen guards ─────────────────────────────────── */
@media (max-width: 520px) {
  h1, .hero h1 { font-size: 30px; overflow-wrap: break-word; word-break: break-word; }
  h2 { font-size: 25px; }
  .section { padding: 56px 0; }
  .cta-band { padding: 40px 24px; }
  .hero { padding-top: 52px; }
  .trust-row { gap: 8px; }
  .chip { font-size: 12.5px; padding: 7px 12px; }
}
@media (prefers-reduced-motion: reduce){ .reveal { opacity:1; transform:none; transition:none; } html{scroll-behavior:auto;} }

/* ── ISO compliance pages ─────────────────────────────────── */
/* Hero */
.iso-page-hero { position: relative; overflow: hidden; padding: 28px 0 46px; background: linear-gradient(180deg,#fbfcff 0%, #f4f6ff 100%); border-bottom: 1px solid var(--line); }
.iso-page-hero::before { content:''; position:absolute; inset:0; z-index:0; pointer-events:none;
  background: radial-gradient(720px 360px at 90% -12%, #e0e7ff 0, rgba(224,231,255,0) 60%), radial-gradient(560px 380px at -6% 116%, #d1fae5 0, rgba(209,250,229,0) 55%); }
.iso-page-hero .container { position: relative; z-index: 1; }
.iso-hero-grid { display: grid; grid-template-columns: 1.28fr .72fr; gap: 44px; align-items: center; margin-top: 16px; }
@media (max-width: 860px){ .iso-hero-grid { grid-template-columns: 1fr; gap: 28px; } .iso-badge-wrap { order: -1; } .iso-page-hero h1 { font-size: 34px; } }
.iso-page-hero h1 { margin: 14px 0 0; }
.iso-page-hero .lead { margin-top: 14px; }
.iso-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.iso-pill { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--ink-2); background: #fff; border: 1px solid var(--line); border-radius: 50px; padding: 8px 15px; }
.iso-pill svg { width: 15px; height: 15px; color: var(--green); flex: 0 0 auto; }
/* Certification badge */
.iso-badge-wrap { display: flex; justify-content: center; }
.iso-badge { width: 232px; aspect-ratio: 1; border-radius: 30px; background: linear-gradient(150deg,#312e81 0%, #4338ca 52%, #4B49AC 100%); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 22px; position: relative; box-shadow: 0 28px 60px rgba(49,46,129,.34); }
.iso-badge::after { content:''; position:absolute; inset:11px; border: 1.5px solid rgba(255,255,255,.18); border-radius: 21px; }
.iso-badge-iso { font-size: 15px; font-weight: 700; letter-spacing: .34em; opacity: .82; }
.iso-badge-num { font-size: 54px; font-weight: 800; letter-spacing: -.02em; line-height: 1; margin: 5px 0 7px; }
.iso-badge-name { font-size: 13px; font-weight: 600; opacity: .9; max-width: 150px; line-height: 1.35; }
.iso-badge-status { margin-top: 15px; font-size: 11.5px; font-weight: 600; color: #a7f3d0; display: inline-flex; align-items: center; gap: 7px; }
.iso-badge-status .d { width: 7px; height: 7px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 4px rgba(52,211,153,.25); }
/* Clause mapping grid */
.iso-map { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 22px 0 10px; }
@media (max-width: 720px){ .iso-map { grid-template-columns: 1fr; } }
.iso-map-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px; transition: box-shadow .2s, transform .2s, border-color .2s; }
.iso-map-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: #dbe2ea; }
.iso-map-ic { width: 42px; height: 42px; border-radius: 12px; background: linear-gradient(135deg,#4338ca,#6366f1); color: #fff; display: grid; place-items: center; box-shadow: 0 7px 16px rgba(67,56,202,.22); margin-bottom: 14px; }
.iso-map-ic svg { width: 21px; height: 21px; }
.iso-map-card .clause-tag { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--indigo); background: #eef2ff; border-radius: 50px; padding: 5px 11px; }
.iso-map-card h3 { font-size: 16.5px; margin: 12px 0 7px; }
.iso-map-card p { font-size: 14.5px; color: var(--slate); margin: 0 0 14px; line-height: 1.6; }
.iso-map-card .rk-check { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 700; color: var(--green); }
.iso-map-card .rk-check svg { width: 15px; height: 15px; }
/* Feature cards (what you get) */
.iso-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 18px 0; }
@media (max-width: 600px){ .iso-feature-grid { grid-template-columns: 1fr; } }
.iso-feature { display: flex; gap: 13px; align-items: center; background: var(--bg-soft); border: 1px solid var(--line-2); border-radius: 12px; padding: 16px 18px; }
.iso-feature .fi { width: 34px; height: 34px; border-radius: 9px; background: #fff; border: 1px solid var(--line); color: var(--indigo); display: grid; place-items: center; flex: 0 0 auto; }
.iso-feature .fi svg { width: 18px; height: 18px; }
.iso-feature p { margin: 0; font-size: 14.5px; color: var(--ink-2); line-height: 1.5; font-weight: 500; }
/* Who needs pills */
.iso-who { display: flex; flex-wrap: wrap; gap: 9px; margin: 14px 0 8px; }
.iso-who-pill { font-size: 13.5px; font-weight: 600; color: var(--slate); background: #fff; border: 1px solid var(--line); border-radius: 50px; padding: 7px 15px; }
/* Outcome callout */
.iso-outcome { background: linear-gradient(135deg,#0f172a,#1e1b4b 55%,#312e81); color: #fff; border-radius: 18px; padding: 30px; margin: 32px 0; }
.iso-outcome-label { font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--green-2); }
.iso-outcome h3 { color: #fff; font-size: 21px; margin: 8px 0; }
.iso-outcome p { color: rgba(255,255,255,.86); margin: 0; font-size: 16px; line-height: 1.65; }
/* Related cards */
.iso-related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 14px 0; }
@media (max-width: 600px){ .iso-related-grid { grid-template-columns: 1fr; } }
.iso-related-card { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px 18px; text-decoration: none; color: var(--ink); font-weight: 600; font-size: 15px; transition: border-color .2s, box-shadow .2s, transform .2s; }
.iso-related-card:hover { border-color: #c7d2fe; box-shadow: var(--shadow-sm); transform: translateY(-2px); color: var(--indigo); }
.iso-related-card svg { width: 17px; height: 17px; color: var(--indigo); flex: 0 0 auto; }
/* Hub: methodology steps */
.iso-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
@media (max-width: 900px){ .iso-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .iso-steps { grid-template-columns: 1fr; } }
.iso-step { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px 22px; position: relative; }
.iso-step-ic { width: 46px; height: 46px; border-radius: 13px; background: linear-gradient(135deg,#4338ca,#6366f1); color: #fff; display: grid; place-items: center; box-shadow: 0 8px 18px rgba(67,56,202,.22); margin-bottom: 16px; }
.iso-step-ic svg { width: 23px; height: 23px; }
.iso-step-n { position: absolute; top: 18px; right: 20px; font-size: 13px; font-weight: 800; color: var(--faint); }
.iso-step h3 { font-size: 16.5px; margin: 0 0 6px; }
.iso-step p { font-size: 14px; color: var(--slate); margin: 0; line-height: 1.55; }
/* Hub: why band */
.iso-why { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 20px; }
@media (max-width: 820px){ .iso-why { grid-template-columns: 1fr; } }
.iso-why-card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 16px; padding: 24px; }
.iso-why-card .wi { width: 44px; height: 44px; border-radius: 12px; background: #eef2ff; color: var(--indigo); display: grid; place-items: center; margin-bottom: 14px; }
.iso-why-card .wi svg { width: 22px; height: 22px; }
.iso-why-card h3 { font-size: 17px; margin: 0 0 7px; }
.iso-why-card p { font-size: 14.5px; color: var(--slate); margin: 0; line-height: 1.6; }
/* Standards band on the homepage */
.std-band { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 20px auto 0; max-width: 720px; }
.std-chip { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 600; color: var(--ink-2); background: #fff; border: 1px solid var(--line); border-radius: 50px; padding: 8px 16px; text-decoration: none; transition: border-color .2s, box-shadow .2s, transform .2s; }
.std-chip:hover { border-color: #c7d2fe; box-shadow: var(--shadow-sm); transform: translateY(-2px); color: var(--indigo); }
.std-chip svg { width: 15px; height: 15px; color: var(--indigo); }

/* ── Product / Security / Integrations pages ──────────────── */
.iso-badge .feat-ic { display: grid; place-items: center; }
.iso-badge .feat-ic svg { width: 94px; height: 94px; color: #fff; }
.int-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin: 18px 0; }
@media (max-width: 760px){ .int-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .int-grid { grid-template-columns: 1fr; } }
.int-tile { display: flex; align-items: flex-start; gap: 13px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px; transition: box-shadow .2s, transform .2s, border-color .2s; }
.int-tile:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); border-color: #dbe2ea; }
.int-tile .ti { width: 42px; height: 42px; border-radius: 11px; background: #eef2ff; color: var(--indigo); display: grid; place-items: center; flex: 0 0 auto; }
.int-tile .ti svg { width: 21px; height: 21px; }
.int-tile h3 { font-size: 15.5px; margin: 2px 0 5px; }
.int-tile p { font-size: 13.5px; color: var(--slate); margin: 0; line-height: 1.5; }
.sub-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 14px 0 8px; }
.sub-item { font-size: 13.5px; font-weight: 600; color: var(--ink-2); background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 9px 15px; }
.sub-item span { color: var(--muted); font-weight: 500; }
