/* =========================================================
   Masterindo Folding Gate — Design System
   Palette diambil langsung dari logo:
   teal #00A79E · gray #808285 · charcoal #414042
   ========================================================= */

:root {
  /* Brand */
  --brand-500: #00A79E;
  --brand-600: #008F87;
  --brand-700: #00756F;
  --brand-800: #005C57;
  --brand-100: #DFF4F2;
  --brand-050: #F1FAF9;

  /* Neutral (dari logo) */
  --ink-900: #2A2A2B;
  --ink-800: #414042;
  --ink-600: #5C5C5E;
  --ink-500: #808285;
  --ink-300: #C7C9CB;
  --ink-200: #E4E6E8;
  --ink-100: #F1F3F4;
  --ink-050: #F8FAFA;
  --white: #FFFFFF;

  /* Accent aksi */
  --wa-500: #25D366;
  --wa-600: #1EB855;

  /* Semantic */
  --bg: var(--white);
  --bg-alt: var(--ink-050);
  --text: var(--ink-800);
  --text-muted: var(--ink-500);
  --border: var(--ink-200);

  /* Spacing scale (4/8) */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px; --sp-7: 48px; --sp-8: 64px; --sp-9: 96px;

  /* Radius */
  --r-sm: 6px; --r-md: 10px; --r-lg: 16px; --r-xl: 24px; --r-pill: 999px;

  /* Elevation */
  --sh-1: 0 1px 2px rgba(41,41,43,.06), 0 1px 3px rgba(41,41,43,.08);
  --sh-2: 0 4px 12px rgba(41,41,43,.08), 0 2px 4px rgba(41,41,43,.05);
  --sh-3: 0 12px 32px rgba(41,41,43,.12), 0 4px 8px rgba(41,41,43,.06);

  /* Layout */
  --container: 1160px;
  --header-h: 76px;

  /* Motion */
  --ease-out: cubic-bezier(.16,.84,.44,1);
  --dur: 220ms;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-700); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { color: var(--ink-900); line-height: 1.2; margin: 0 0 var(--sp-4); font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(2rem, 1.3rem + 3vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.7vw, 2.35rem); }
h3 { font-size: clamp(1.1rem, 1rem + .5vw, 1.35rem); }
p  { margin: 0 0 var(--sp-4); }
ul, ol { margin: 0 0 var(--sp-4); padding-left: 1.25em; }
:focus-visible { outline: 3px solid var(--brand-500); outline-offset: 2px; border-radius: var(--r-sm); }

/* ---------- Utilities ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--sp-5); }
.section { padding-block: clamp(48px, 6vw, 96px); }
.section--alt { background: var(--bg-alt); }
.section--brand { background: linear-gradient(135deg, var(--brand-700), var(--brand-500)); color: #fff; }
.section--brand h2, .section--brand h3 { color: #fff; }
.lead { font-size: 1.09rem; color: var(--ink-600); max-width: 66ch; }
.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--brand-600); margin-bottom: var(--sp-3);
}
.section--brand .eyebrow { color: var(--brand-100); }
.section-head { max-width: 68ch; margin-bottom: var(--sp-7); }
.section-head--center { margin-inline: auto; text-align: center; }
.skip-link {
  position: absolute; left: var(--sp-4); top: -100px; z-index: 200;
  background: var(--brand-600); color: #fff; padding: var(--sp-3) var(--sp-4); border-radius: var(--r-sm);
  transition: top var(--dur) var(--ease-out);
}
.skip-link:focus { top: var(--sp-4); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  min-height: 48px; padding: var(--sp-3) var(--sp-5);
  border: 2px solid transparent; border-radius: var(--r-pill);
  font-weight: 700; font-size: 1rem; line-height: 1.2; text-align: center;
  cursor: pointer; text-decoration: none;
  transition: background-color var(--dur) var(--ease-out), color var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out),
              transform var(--dur) var(--ease-out);
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 20px; height: 20px; flex: none; }

.btn--primary { background: var(--brand-600); color: #fff; box-shadow: var(--sh-2); }
.btn--primary:hover { background: var(--brand-700); box-shadow: var(--sh-3); }

.btn--wa { background: var(--wa-500); color: #0B2E17; box-shadow: var(--sh-2); }
.btn--wa:hover { background: var(--wa-600); color: #08240F; box-shadow: var(--sh-3); }

.btn--ghost { background: transparent; color: var(--brand-700); border-color: var(--brand-500); }
.btn--ghost:hover { background: var(--brand-050); }

.btn--onbrand { background: #fff; color: var(--brand-800); }
.btn--onbrand:hover { background: var(--brand-050); }

.btn--onbrand-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--onbrand-ghost:hover { background: rgba(255,255,255,.14); border-color: #fff; }

.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

/* ---------- Header ---------- */
.topbar {
  background: var(--ink-900); color: var(--ink-200);
  font-size: .87rem; padding-block: var(--sp-2);
}
.topbar__inner { display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-5); align-items: center; justify-content: space-between; }
.topbar a { color: #fff; font-weight: 600; }
.topbar__item { display: inline-flex; align-items: center; gap: var(--sp-2); }
.topbar__item svg { width: 16px; height: 16px; flex: none; color: var(--brand-500); }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-4); min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: var(--sp-3); }
.brand:hover { text-decoration: none; }
.brand img { height: 52px; width: auto; }
.brand__text { display: none; }
.brand__name { font-weight: 800; color: var(--ink-900); font-size: 1.02rem; line-height: 1.15; letter-spacing: -.01em; }
.brand__tag { font-size: .78rem; color: var(--text-muted); font-weight: 600; }

.nav { display: flex; align-items: center; gap: var(--sp-2); }
.nav__list { display: flex; align-items: center; gap: var(--sp-1); list-style: none; margin: 0; padding: 0; }
.nav__link {
  display: block; padding: var(--sp-2) var(--sp-4);
  color: var(--ink-800); font-weight: 600; font-size: .97rem;
  border-radius: var(--r-pill); transition: background-color var(--dur) var(--ease-out), color var(--dur) var(--ease-out);
}
.nav__link:hover { background: var(--brand-050); color: var(--brand-700); text-decoration: none; }
.nav__link[aria-current="page"] { color: var(--brand-700); background: var(--brand-100); }
.nav__cta { margin-left: var(--sp-3); }

.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 48px; height: 48px; border: 1px solid var(--border);
  background: #fff; border-radius: var(--r-md); cursor: pointer; color: var(--ink-800);
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle__close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__close { display: block; }

@media (min-width: 900px) {
  .brand__text { display: block; }
}
@media (max-width: 899px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: var(--sp-2);
    background: #fff; border-bottom: 1px solid var(--border);
    padding: var(--sp-4) var(--sp-5) var(--sp-5);
    box-shadow: var(--sh-2);
    display: none;
  }
  .nav[data-open="true"] { display: flex; }
  .nav__list { flex-direction: column; align-items: stretch; gap: var(--sp-1); }
  .nav__link { padding: var(--sp-3) var(--sp-4); font-size: 1.05rem; }
  .nav__cta { margin-left: 0; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1E4744 0%, var(--brand-800) 45%, var(--brand-600) 100%);
  color: #fff;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("../images/FOLDING%20GATE/FOLDING%20GATE%20GALVALUM.jpg");
  background-size: cover; background-position: center;
  opacity: .13; mix-blend-mode: luminosity; pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; gap: var(--sp-7);
  padding-block: clamp(48px, 7vw, 88px);
  align-items: center;
}
.hero h1 { color: #fff; margin-bottom: var(--sp-4); }
.hero h1 em { font-style: normal; color: #7FE3DC; }
.hero__sub { font-size: clamp(1.02rem, .97rem + .3vw, 1.18rem); color: rgba(255,255,255,.88); max-width: 56ch; margin-bottom: var(--sp-6); }
.hero__badge {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.24);
  padding: var(--sp-2) var(--sp-4); border-radius: var(--r-pill);
  font-size: .85rem; font-weight: 700; letter-spacing: .02em; margin-bottom: var(--sp-5);
}
.hero__badge span { width: 8px; height: 8px; border-radius: 50%; background: #7FE3DC; flex: none; }
.hero__note { font-size: .9rem; color: rgba(255,255,255,.72); margin: var(--sp-5) 0 0; }
.hero__media { position: relative; }
.hero__media img {
  width: 100%; border-radius: var(--r-xl);
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.18);
}
.hero__stamp {
  position: absolute; left: -12px; bottom: -18px;
  background: #fff; color: var(--ink-900);
  border-radius: var(--r-lg); padding: var(--sp-4) var(--sp-5);
  box-shadow: var(--sh-3); max-width: 230px;
}
.hero__stamp strong { display: block; font-size: 1.7rem; color: var(--brand-700); line-height: 1; }
.hero__stamp span { font-size: .85rem; color: var(--text-muted); font-weight: 600; }

@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 1.05fr .95fr; gap: var(--sp-8); }
}

/* ---------- Trust strip ---------- */
.trust { background: var(--ink-900); color: #fff; }
.trust__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4); padding-block: var(--sp-6);
}
.trust__item { display: flex; gap: var(--sp-3); align-items: flex-start; }
.trust__item svg { width: 24px; height: 24px; color: var(--brand-500); flex: none; margin-top: 3px; }
.trust__item b { display: block; font-size: .98rem; }
.trust__item small { color: var(--ink-300); font-size: .85rem; line-height: 1.45; display: block; }
@media (min-width: 760px) { .trust__grid { grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); } }

/* ---------- Cards & grids ---------- */
.grid { display: grid; gap: var(--sp-5); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 700px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow var(--dur) var(--ease-out), transform var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
.card:hover { box-shadow: var(--sh-3); transform: translateY(-3px); border-color: var(--brand-100); }
.card__media { aspect-ratio: 4 / 3; background: var(--ink-100); overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms var(--ease-out); }
.card:hover .card__media img { transform: scale(1.04); }
.card__body { padding: var(--sp-4) var(--sp-5) var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-2); flex: 1; }
.card__title { font-size: 1.02rem; font-weight: 700; color: var(--ink-900); margin: 0; line-height: 1.35; }
.card__meta { font-size: .82rem; color: var(--brand-600); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.card__text { font-size: .93rem; color: var(--ink-600); margin: 0; }
.card__link { margin-top: auto; padding-top: var(--sp-2); font-weight: 700; font-size: .93rem; display: inline-flex; align-items: center; gap: 6px; }
.card__link::after { content: "→"; transition: transform var(--dur) var(--ease-out); }
.card:hover .card__link::after { transform: translateX(4px); }

/* Feature card (why us) */
.feature {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: var(--sp-5); height: 100%;
}
.feature__icon {
  width: 48px; height: 48px; border-radius: var(--r-md);
  background: var(--brand-100); color: var(--brand-700);
  display: grid; place-items: center; margin-bottom: var(--sp-4);
}
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.08rem; margin-bottom: var(--sp-2); }
.feature p { font-size: .95rem; color: var(--ink-600); margin: 0; }

/* Stat */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-5); }
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat b { display: block; font-size: clamp(1.9rem, 1.4rem + 1.6vw, 2.6rem); color: var(--brand-600); line-height: 1; letter-spacing: -.03em; }
.stat span { font-size: .92rem; color: var(--ink-600); font-weight: 600; }
.section--brand .stat b { color: #fff; }
.section--brand .stat span { color: rgba(255,255,255,.82); }

/* Pill list (klien / area layanan) */
.pills { display: flex; flex-wrap: wrap; gap: var(--sp-2); list-style: none; padding: 0; margin: 0; }
.pills li {
  background: #fff; border: 1px solid var(--border); color: var(--ink-800);
  padding: var(--sp-2) var(--sp-4); border-radius: var(--r-pill);
  font-size: .92rem; font-weight: 600;
}
.section--brand .pills li { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.24); color: #fff; }

/* Split content */
.split { display: grid; gap: var(--sp-6); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: var(--sp-8); } .split--wide { grid-template-columns: 1.15fr .85fr; } }
.split__media img { border-radius: var(--r-lg); box-shadow: var(--sh-2); width: 100%; }

/* Checklist */
.checklist { list-style: none; padding: 0; margin: 0 0 var(--sp-5); display: grid; gap: var(--sp-3); }
.checklist li { display: flex; gap: var(--sp-3); align-items: flex-start; font-size: .98rem; }
.checklist li::before {
  content: "✓"; flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--brand-100); color: var(--brand-700);
  display: grid; place-items: center; font-size: .8rem; font-weight: 800; margin-top: 2px;
}
.section--brand .checklist li::before { background: rgba(255,255,255,.18); color: #fff; }

/* ---------- Product page ---------- */
.filterbar {
  display: flex; flex-wrap: wrap; gap: var(--sp-2);
  padding-block: var(--sp-5); position: sticky; top: var(--header-h); z-index: 40;
  background: rgba(255,255,255,.95); backdrop-filter: blur(8px);
}
.filterbar__btn {
  min-height: 44px; padding: var(--sp-2) var(--sp-4);
  border: 1px solid var(--border); background: #fff; color: var(--ink-800);
  border-radius: var(--r-pill); font: inherit; font-size: .92rem; font-weight: 700; cursor: pointer;
  transition: all var(--dur) var(--ease-out);
}
.filterbar__btn:hover { border-color: var(--brand-500); color: var(--brand-700); }
.filterbar__btn[aria-pressed="true"] { background: var(--brand-600); border-color: var(--brand-600); color: #fff; }

.cat-block { scroll-margin-top: 140px; }
.cat-block + .cat-block { margin-top: var(--sp-8); }
.cat-block__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: var(--sp-3); margin-bottom: var(--sp-5); }
.cat-block__head h2 { margin: 0; }
.cat-block__count { font-size: .88rem; color: var(--text-muted); font-weight: 600; }

.product-card { text-align: left; }
.product-card .card__media { aspect-ratio: 1 / 1; }
.product-card .card__body { padding: var(--sp-4); gap: var(--sp-3); }
.product-card .card__title { font-size: .95rem; }
.product-card .btn { min-height: 42px; font-size: .88rem; padding-inline: var(--sp-4); }

/* ---------- Contact ---------- */
.contact-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: var(--sp-5); box-shadow: var(--sh-1);
}
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--sp-4); }
.contact-list li { display: flex; gap: var(--sp-4); align-items: flex-start; }
.contact-list svg { width: 22px; height: 22px; color: var(--brand-600); flex: none; margin-top: 4px; }
.contact-list b { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .09em; color: var(--text-muted); margin-bottom: 2px; }
.contact-list span, .contact-list a { font-size: 1rem; color: var(--ink-800); font-style: normal; }
.contact-list a { font-weight: 700; color: var(--brand-700); }

.map-frame { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--sh-1); }
.map-frame iframe { display: block; width: 100%; height: 420px; border: 0; }

.hours { width: 100%; border-collapse: collapse; font-size: .95rem; }
.hours th, .hours td { text-align: left; padding: var(--sp-2) 0; border-bottom: 1px solid var(--border); }
.hours th { font-weight: 600; color: var(--ink-600); }
.hours td { font-weight: 700; text-align: right; font-variant-numeric: tabular-nums; }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }

/* ---------- Page header (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--brand-800), var(--brand-600));
  color: #fff; padding-block: clamp(40px, 5vw, 72px);
}
.page-hero h1 { color: #fff; margin-bottom: var(--sp-3); }
.page-hero p { color: rgba(255,255,255,.85); max-width: 62ch; margin: 0; }
.breadcrumb { list-style: none; display: flex; flex-wrap: wrap; gap: var(--sp-2); padding: 0; margin: 0 0 var(--sp-4); font-size: .87rem; color: rgba(255,255,255,.72); }
.breadcrumb a { color: rgba(255,255,255,.9); font-weight: 600; }
.breadcrumb li + li::before { content: "/"; margin-right: var(--sp-2); color: rgba(255,255,255,.45); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: var(--sp-3); max-width: 900px; }
.faq details {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
}
.faq details[open] { border-color: var(--brand-500); box-shadow: var(--sh-1); }
.faq summary {
  cursor: pointer; font-weight: 700; color: var(--ink-900); font-size: 1.02rem;
  list-style: none; display: flex; justify-content: space-between; gap: var(--sp-4); align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--brand-600); font-size: 1.5rem; line-height: 1; flex: none; }
.faq details[open] summary::after { content: "–"; }
.faq p { margin: var(--sp-3) 0 0; color: var(--ink-600); font-size: .97rem; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band .btn-row { justify-content: center; }
.cta-band p { color: rgba(255,255,255,.88); max-width: 60ch; margin-inline: auto; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-900); color: var(--ink-300); padding-block: var(--sp-8) var(--sp-5); font-size: .94rem; }
.site-footer h3 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: var(--sp-4); }
.site-footer a { color: var(--ink-200); }
.site-footer a:hover { color: #fff; }
.footer__grid { display: grid; gap: var(--sp-6); }
@media (min-width: 780px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--sp-6); } }
.footer__logo { background: #fff; padding: var(--sp-3) var(--sp-4); border-radius: var(--r-md); display: inline-block; margin-bottom: var(--sp-4); }
.footer__logo img { height: 48px; width: auto; }
.footer__list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-2); }
.footer__bottom {
  margin-top: var(--sp-7); padding-top: var(--sp-5);
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: space-between;
  font-size: .85rem; color: var(--ink-500);
}
.footer__area { font-size: .86rem; color: var(--ink-500); line-height: 1.7; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  display: inline-flex; align-items: center; gap: var(--sp-3);
  background: var(--wa-500); color: #0B2E17;
  padding: 12px 20px 12px 14px; border-radius: var(--r-pill);
  font-weight: 800; font-size: .95rem; box-shadow: 0 8px 24px rgba(37,211,102,.4);
  transition: transform var(--dur) var(--ease-out), background-color var(--dur) var(--ease-out);
}
.wa-float:hover { background: var(--wa-600); transform: translateY(-2px); text-decoration: none; }
.wa-float svg { width: 26px; height: 26px; flex: none; }
@media (max-width: 560px) {
  .wa-float { padding: 14px; }
  .wa-float span { display: none; }
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .card:hover { transform: none; }
  .btn:hover { transform: none; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .topbar, .wa-float, .site-footer, .filterbar, .btn { display: none !important; }
  body { font-size: 12pt; color: #000; }
}
