/* ============================================================
   Orbantus Global Pharma — Design System
   Clean clinical / corporate · warm white · olive-green accent
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Source+Serif+4:opsz,wght@8..60,400;8..60,500;8..60,600;8..60,700&display=swap');

:root {
  /* Brand greens */
  --green-900: #262b15;
  --green-800: #343a1c;
  --green-700: #495021;
  --green-600: #687432;   /* logo brand olive */
  --green-550: #76833a;
  --green-500: #899545;
  --green-300: #b9c189;
  --green-100: #e9ecd9;
  --green-50:  #f4f6ec;

  /* Warm neutrals */
  --ink:    #1c1e16;
  --body:   #44473c;
  --muted:  #74776a;
  --faint:  #9a9c90;
  --line:   #e6e5dc;
  --line-2: #efeee6;
  --white:  #ffffff;
  --soft:   #f8f8f3;
  --cream:  #fbfaf5;

  /* Accent (used sparingly) */
  --sand:   #c8a44d;

  --shadow-sm: 0 1px 2px rgba(38,43,21,.05), 0 2px 8px rgba(38,43,21,.04);
  --shadow:    0 4px 18px rgba(38,43,21,.07), 0 1px 4px rgba(38,43,21,.05);
  --shadow-lg: 0 18px 50px rgba(38,43,21,.12), 0 6px 18px rgba(38,43,21,.07);

  --r-sm: 6px;
  --r:    10px;
  --r-lg: 16px;
  --r-xl: 24px;

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 56px);

  --sans: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --serif: 'Source Serif 4', Georgia, serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--body);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
::selection { background: var(--green-100); color: var(--green-900); }
:focus-visible { outline: 2px solid var(--green-600); outline-offset: 3px; border-radius: 2px; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

/* ---------- Type ---------- */
h1, h2, h3, h4 { color: var(--ink); font-weight: 700; line-height: 1.12; letter-spacing: -.01em; }
h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(2.4rem, 1.4rem + 3.6vw, 4rem); letter-spacing: -.02em; }
h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(1.9rem, 1.3rem + 2.2vw, 2.9rem); letter-spacing: -.018em; }
h3 { font-size: clamp(1.2rem, 1rem + .7vw, 1.45rem); }
h4 { font-size: 1.05rem; }
p { text-wrap: pretty; }

.eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--green-600); display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--green-600); display: inline-block; }
.eyebrow.center::after { content: ""; width: 26px; height: 2px; background: var(--green-600); display: inline-block; }

.lead { font-size: clamp(1.05rem, 1rem + .35vw, 1.25rem); color: var(--body); }
.muted { color: var(--muted); }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-wide { max-width: 1400px; margin-inline: auto; padding-inline: var(--gutter); }
section { padding-block: clamp(56px, 7vw, 110px); }
.section-soft { background: var(--soft); }
.section-cream { background: var(--cream); }
.section-green { background: var(--green-900); color: #d9dcc7; }
.section-green h1,.section-green h2,.section-green h3,.section-green h4 { color: #fff; }

.sec-head { max-width: 720px; margin-bottom: clamp(34px, 4vw, 56px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { margin-top: 16px; }
.sec-head p { margin-top: 16px; }

.grid { display: grid; gap: clamp(18px, 2vw, 28px); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px){ .cols-3,.cols-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px){ .cols-2,.cols-3,.cols-4 { grid-template-columns: 1fr; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 24px; border-radius: var(--r-sm); font-weight: 600; font-size: .98rem;
  border: 1px solid transparent; transition: .2s ease; line-height: 1; white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--green-600); color: #fff; }
.btn-primary:hover { background: var(--green-700); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-dark { background: var(--green-900); color: #fff; }
.btn-dark:hover { background: #11140a; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--green-600); color: var(--green-700); }
.btn-light { background: #fff; color: var(--green-800); }
.btn-light:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-on-green { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.28); }
.btn-on-green:hover { background: rgba(255,255,255,.18); }
.btn-lg { padding: 16px 30px; font-size: 1.02rem; }

.arrow-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--green-700); }
.arrow-link svg { width: 16px; height: 16px; transition: transform .2s; }
.arrow-link:hover svg { transform: translateX(4px); }

/* ---------- Top bar ---------- */
.topbar { background: var(--green-900); color: #c8ccb3; font-size: .82rem; position: relative; }
.topbar::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(185,193,137,.28), transparent); }
.topbar .container { display: flex; align-items: center; justify-content: space-between; min-height: 42px; gap: 18px; }
.topbar a { color: #c8ccb3; transition: color .15s; }
.topbar a:hover { color: #fff; }
.topbar .tb-left, .topbar .tb-right { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar .tb-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar .tb-right .tb-item { position: relative; }
.topbar .tb-right .tb-item + .tb-item::before { content: ""; position: absolute; left: -12px; top: 50%; transform: translateY(-50%); width: 1px; height: 13px; background: rgba(255,255,255,.16); }
.topbar svg { width: 14px; height: 14px; opacity: .75; }
@media (max-width: 760px){ .topbar .tb-left .tb-hide { display: none; } .topbar { font-size: .76rem; } }

/* ---------- Header / nav ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.85); backdrop-filter: saturate(1.6) blur(14px); -webkit-backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .28s ease, background .28s ease, border-color .28s ease;
}
/* premium top accent line */
.header::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--green-700), var(--green-500) 45%, var(--sand)); opacity: .9; }
.header.scrolled { background: rgba(255,255,255,.96); box-shadow: 0 8px 30px rgba(38,43,21,.10); border-bottom-color: transparent; }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 82px; gap: 24px; transition: min-height .28s ease; }
.header.scrolled .nav { min-height: 66px; }
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 48px; width: auto; transition: height .28s ease; }
.header.scrolled .brand img { height: 40px; }
@media (max-width: 480px){ .brand img { height: 38px; } }

.menu { display: flex; align-items: center; gap: 2px; }
.menu > li > a { position: relative; display: inline-flex; align-items: center; gap: 6px; padding: 11px 15px; border-radius: var(--r-sm); font-weight: 600; font-size: .95rem; color: var(--ink); transition: color .18s; }
.menu > li > a::after { content: ""; position: absolute; left: 15px; right: 15px; bottom: 7px; height: 2px; border-radius: 2px; background: var(--green-600); transform: scaleX(0); transform-origin: left center; transition: transform .24s cubic-bezier(.4,0,.2,1); }
.menu > li > a:hover { color: var(--green-700); }
.menu > li > a:hover::after, .menu > li > a.active::after { transform: scaleX(1); }
.menu > li > a.active { color: var(--green-800); }
.menu .has-sub { position: relative; }
.menu .has-sub > a svg { width: 13px; height: 13px; transition: transform .2s; opacity: .7; }
.menu .has-sub:hover > a svg { transform: rotate(180deg); }
.submenu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(10px); min-width: 320px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  padding: 10px; opacity: 0; visibility: hidden; transition: opacity .2s ease, transform .2s ease, visibility .2s; z-index: 50;
}
/* little pointer arrow + hover bridge */
.submenu::before { content: ""; position: absolute; top: -6px; left: 50%; transform: translateX(-50%) rotate(45deg); width: 12px; height: 12px; background: #fff; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.menu .has-sub::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 14px; }
.menu .has-sub:hover .submenu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.submenu a { position: relative; display: block; padding: 11px 14px 11px 30px; border-radius: var(--r-sm); font-size: .92rem; font-weight: 600; color: var(--ink); transition: background .15s, color .15s, padding .18s; }
.submenu a::before { content: ""; position: absolute; left: 14px; top: 17px; width: 6px; height: 6px; border-radius: 50%; background: var(--green-300); transition: background .15s, transform .15s; }
.submenu a:hover { background: var(--green-50); color: var(--green-700); }
.submenu a:hover::before { background: var(--green-600); transform: scale(1.3); }
.submenu a span { display: block; font-size: .78rem; color: var(--faint); font-weight: 400; margin-top: 2px; }

.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-cta .btn { box-shadow: 0 6px 18px rgba(104,116,50,.22); }
.burger { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: var(--r-sm); background: #fff; align-items: center; justify-content: center; transition: border-color .15s, background .15s; }
.burger:hover { border-color: var(--green-300); background: var(--green-50); }
.burger svg { width: 22px; height: 22px; }

@media (max-width: 1080px){
  .nav-cta .btn { display: none; }
  .burger { display: inline-flex; }
  .menu {
    position: fixed; inset: 0 0 0 auto; width: min(360px, 86vw); background: #fff; flex-direction: column;
    align-items: stretch; gap: 2px; padding: 92px 20px 30px; box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform .28s ease; overflow-y: auto; z-index: 90;
  }
  .menu.open { transform: translateX(0); }
  .menu > li > a { padding: 14px 12px; font-size: 1.05rem; border-radius: var(--r-sm); }
  .menu > li > a::after { display: none; }
  .menu > li > a:hover, .menu > li > a.active { background: var(--green-50); }
  .submenu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; border-left: 2px solid var(--green-100); border-radius: 0; margin: 2px 0 6px 12px; padding: 0; min-width: 0; }
  .submenu::before, .menu .has-sub::after { display: none; }
  .submenu a { padding: 9px 12px 9px 24px; }
  .submenu a::before { left: 4px; top: 15px; }
  .nav-overlay { position: fixed; inset: 0; background: rgba(28,30,22,.4); opacity: 0; visibility: hidden; transition: .25s; z-index: 80; }
  .nav-overlay.show { opacity: 1; visibility: visible; }
}

/* ---------- Media placeholders (swap with real photos) ---------- */
.media {
  position: relative; overflow: hidden; border-radius: var(--r-lg); background: var(--green-900);
  background-image:
    linear-gradient(135deg, rgba(104,116,50,.55), rgba(38,43,21,.92)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 2px, transparent 2px 11px);
  display: flex; align-items: flex-end; min-height: 280px; isolation: isolate;
}
.media::after {
  content: attr(data-label); position: absolute; left: 14px; bottom: 12px;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: .68rem; letter-spacing: .04em;
  color: rgba(255,255,255,.8); background: rgba(0,0,0,.32); padding: 5px 10px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(4px);
}
.media.light {
  background-image:
    linear-gradient(135deg, var(--green-50), var(--green-100)),
    repeating-linear-gradient(45deg, rgba(104,116,50,.06) 0 2px, transparent 2px 12px);
}
.media.light::after { color: var(--green-700); background: rgba(255,255,255,.7); border-color: rgba(104,116,50,.2); }
.media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.card:hover .media img, a.card:focus-visible .media img { transform: scale(1.05); }

/* ---------- Cards ---------- */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: .22s ease; display: flex; flex-direction: column; }
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--green-100); }
.card .card-body { padding: clamp(20px, 2.5vw, 28px); display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card .media { border-radius: 0; min-height: 200px; }
.card h3 a:hover { color: var(--green-700); }

.feature { padding: clamp(22px, 2.5vw, 30px); background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); transition: .2s; }
.feature:hover { border-color: var(--green-100); box-shadow: var(--shadow); }
.feature .ic { width: 50px; height: 50px; border-radius: 12px; background: var(--green-50); color: var(--green-700); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.feature .ic svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature p { font-size: .96rem; color: var(--muted); }

/* ---------- Badges / chips ---------- */
.chip { display: inline-flex; align-items: center; gap: 7px; padding: 7px 13px; border-radius: 999px; font-size: .8rem; font-weight: 600; background: var(--green-50); color: var(--green-700); border: 1px solid var(--green-100); }
.chip svg { width: 14px; height: 14px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }

.pill { display: inline-block; padding: 4px 11px; border-radius: 999px; font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; background: var(--green-100); color: var(--green-700); }

/* ---------- Stats ---------- */
.stat .num { font-family: var(--serif); font-weight: 600; font-size: clamp(2.2rem, 1.4rem + 2.4vw, 3.2rem); color: var(--green-600); line-height: 1; letter-spacing: -.02em; }
.stat .lbl { margin-top: 10px; font-size: .92rem; color: var(--muted); font-weight: 500; }
.section-green .stat .num { color: var(--green-300); }
.section-green .stat .lbl { color: #b9bda4; }

/* ---------- Cert logos strip ---------- */
.cert-badge { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 22px 16px; border: 1px solid var(--line); border-radius: var(--r); background: #fff; text-align: center; }
.cert-badge .ring { width: 56px; height: 56px; border-radius: 50%; border: 2px solid var(--green-600); color: var(--green-700); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 700; font-size: .95rem; }
.cert-badge .nm { font-weight: 700; font-size: .9rem; color: var(--ink); }
.cert-badge .ds { font-size: .76rem; color: var(--muted); }

/* ---------- Forms ---------- */
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: .85rem; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: .96rem; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--r-sm);
  background: #fff; color: var(--ink); transition: .15s; width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green-600); box-shadow: 0 0 0 3px var(--green-50); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: var(--green-900); color: #d9dcc7; padding-block: clamp(56px, 7vw, 96px); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.025) 0 2px, transparent 2px 13px); }
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; max-width: 800px; }
.page-hero p { margin-top: 18px; max-width: 640px; color: #c2c6ac; font-size: 1.1rem; }
.crumb { display: flex; gap: 8px; align-items: center; font-size: .85rem; color: #aab08e; margin-bottom: 18px; }
.crumb a:hover { color: #fff; }
.crumb .sep { opacity: .5; }

/* ---------- Footer ---------- */
.footer { background: var(--green-900); color: #aeb295; padding-top: clamp(54px, 6vw, 80px); font-size: .92rem; }
.footer a { color: #c4c8ac; transition: color .15s; }
.footer a:hover { color: #fff; }
.footer .f-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: clamp(28px, 3vw, 48px); padding-bottom: 48px; }
@media (max-width: 900px){ .footer .f-grid { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 520px){ .footer .f-grid { grid-template-columns: 1fr; } }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.footer .f-links li { margin-bottom: 11px; }
.f-logo-plate { background: #fff; border-radius: var(--r); padding: 14px 18px; display: inline-block; margin-bottom: 20px; }
.f-logo-plate img { height: 42px; }
.footer .f-about p { max-width: 320px; color: #a4a88c; }
.f-contact li { display: flex; gap: 11px; margin-bottom: 14px; align-items: flex-start; }
.f-contact svg { width: 17px; height: 17px; color: var(--green-300); flex-shrink: 0; margin-top: 3px; }
.f-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 22px; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .85rem; color: #8e927a; }
.f-bottom .f-bot-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- WhatsApp float ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 200; width: 56px; height: 56px; border-radius: 50%; background: #25D366; box-shadow: 0 8px 24px rgba(37,211,102,.4); display: flex; align-items: center; justify-content: center; transition: transform .2s; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 26px; bottom: 92px; z-index: 199; width: 46px; height: 46px; border-radius: 50%;
  background: #fff; color: var(--green-700); border: 1px solid var(--line); box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: .25s ease;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { border-color: var(--green-300); background: var(--green-50); }
.to-top svg { width: 20px; height: 20px; }

/* ---------- Skip link ---------- */
.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 300; background: var(--green-900); color: #fff;
  padding: 12px 20px; border-radius: 0 0 10px 10px; font-weight: 600; font-size: .9rem; transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ---------- Product catalogue ---------- */
.cat-toolbar { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.cat-search { position: relative; flex: 1; min-width: 240px; max-width: 420px; }
.cat-search svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--muted); }
.cat-search input { width: 100%; padding: 13px 16px 13px 42px; border: 1px solid var(--line); border-radius: 999px; font-family: inherit; font-size: .96rem; background: #fff; }
.cat-search input:focus { outline: none; border-color: var(--green-600); box-shadow: 0 0 0 3px var(--green-50); }
.cat-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.cat-filters button { padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line); background: #fff; font-weight: 600; font-size: .86rem; color: var(--body); transition: .15s; }
.cat-filters button:hover { border-color: var(--green-300); color: var(--green-700); }
.cat-filters button.active { background: var(--green-600); color: #fff; border-color: var(--green-600); }
.cat-count-line { font-size: .9rem; color: var(--muted); margin-bottom: 22px; }
.cat-count-line b { color: var(--green-700); }

.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 980px){ .prod-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .prod-grid { grid-template-columns: 1fr; } }
.prod-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 22px; display: flex; flex-direction: column; gap: 10px; transition: .18s; }
.prod-card:hover { border-color: var(--green-300); box-shadow: var(--shadow); transform: translateY(-2px); }
.prod-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.prod-ph { font-size: .72rem; font-weight: 700; letter-spacing: .06em; color: var(--muted); }
.prod-card h3 { font-size: 1.08rem; line-height: 1.25; color: var(--ink); }
.prod-spec { font-size: .9rem; color: var(--muted); margin: 0; }
.prod-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line-2); }
.prod-cat { font-size: .76rem; font-weight: 700; color: var(--green-700); letter-spacing: .03em; }
.prod-foot .arrow-link { font-size: .86rem; }
.cat-empty { text-align: center; padding: 60px 20px; color: var(--muted); }

.anchor-offset { scroll-margin-top: 130px; }

/* ---------- FAQ accordion ---------- */
.acc-item { border: 1px solid var(--line); border-radius: var(--r); margin-bottom: 12px; overflow: hidden; background: #fff; }
.acc-item [data-acc-btn] { width: 100%; text-align: left; background: none; border: none; padding: 20px 22px; font-family: var(--serif); font-weight: 600; font-size: 1.1rem; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.acc-item .acc-ic { flex-shrink: 0; width: 24px; height: 24px; transition: transform .25s; color: var(--green-600); }
.acc-item.open .acc-ic { transform: rotate(45deg); }
.acc-item [data-acc-body] { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.acc-item [data-acc-body] p { padding: 0 22px 20px; color: var(--body); }

/* ---------- Utilities ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
@media print {
  .reveal { opacity: 1 !important; transform: none !important; }
  .header, .topbar, .wa-float, .to-top, .skip-link { position: static !important; }
  .wa-float, .to-top { display: none !important; }
}
.text-center { text-align: center; }
.divider { height: 1px; background: var(--line); border: 0; }
.tick { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 13px; }
.tick svg { width: 20px; height: 20px; color: var(--green-600); flex-shrink: 0; margin-top: 2px; }
.tick span { color: var(--body); }
