/* =====================================================================
   Play Therapy Practice Kit — Members Area
   Poppins · teal / peach
   ===================================================================== */

/* ---------- tokens ---------- */
:root {
  --teal: #2A9D8F;
  --teal-dark: #20786C;
  --teal-light: #E8F5F3;
  --peach: #F4A261;
  --peach-dark: #E17B3C;
  --peach-light: #FDF1E7;
  --red: #E63946;
  --bg: #FAF9F6;
  --bg-alt: #F5F0EB;
  --dark: #2B2D42;
  --body: #4A4A5A;
  --muted: #7F8C9B;
  --white: #FDFDFD;
  --green-ok: #27AE60;
  --border: #E7E1D9;
  --border-soft: #EFEAE3;
  --shadow-sm: 0 8px 24px rgba(43, 45, 66, .06);
  --shadow-md: 0 16px 38px rgba(43, 45, 66, .10);
  --shadow-lg: 0 24px 60px rgba(43, 45, 66, .14);
  --soft-bg: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--body);
  background: var(--soft-bg);
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }

.ui-icon { width: 1.15em; height: 1.15em; flex-shrink: 0; }

/* ---------- brand strip + header ---------- */
.brand-strip {
  height: 4px; width: 100%;
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal) 55%, var(--peach) 100%);
}
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand img { height: 38px; width: auto; object-fit: contain; display: block; }

/* ===== Language switcher (header) ===== */
.lang-switch {
  display: inline-flex; align-items: center; gap: 3px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 11px; padding: 4px;
  box-shadow: inset 0 1px 2px rgba(127, 140, 155, .12);
}
.lang-opt {
  display: inline-flex; width: 28px; height: 20px; border-radius: 5px; overflow: hidden;
  border: 1px solid transparent; opacity: .45;
  transition: opacity .15s ease, box-shadow .15s ease, transform .12s ease;
}
.lang-opt svg { width: 100%; height: 100%; display: block; }
.lang-opt:hover, .lang-opt:focus-visible { opacity: .9; transform: translateY(-1px); outline: none; }
.lang-opt.is-active {
  opacity: 1; cursor: default;
  border-color: rgba(255, 255, 255, .9);
  box-shadow: 0 0 0 2px var(--teal), 0 1px 3px rgba(43, 45, 66, .25);
}

#app { flex: 1; padding: 2.5rem 0 3.5rem; }

/* ---------- shared type ---------- */
.kicker {
  display: inline-block;
  font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--teal-light);
  border: 1px solid rgba(42, 157, 143, .2);
  padding: .38rem .8rem; border-radius: 999px;
  margin-bottom: .9rem;
}
.page-title {
  font-size: clamp(1.9rem, 4.4vw, 2.9rem);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.1; color: var(--dark);
}
.page-title span {
  background-image: linear-gradient(135deg, var(--teal), var(--teal-dark));
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.page-sub { font-size: 1.02rem; color: var(--body); max-width: 620px; margin-top: 1rem; }

/* ---------- hero ---------- */
.library-hero {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2rem;
  padding: clamp(2rem, 4vw, 3.2rem);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  background: linear-gradient(125deg, #fff 4%, var(--teal-light) 58%, var(--peach-light) 100%);
  box-shadow: var(--shadow-md);
  margin-bottom: 3rem;
}
.library-hero::before {
  content: ""; position: absolute; width: 320px; height: 320px; right: -90px; top: -140px;
  border-radius: 50%; border: 56px solid rgba(42, 157, 143, .08);
}
.hero-copy { position: relative; z-index: 1; }
.hero-chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.hero-chip {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .82rem; font-weight: 700; color: var(--dark);
  background: rgba(255, 255, 255, .8);
  border: 1px solid var(--border);
  padding: .5rem .9rem; border-radius: 999px;
}
.hero-chip .ui-icon { color: var(--teal); }
.hero-badge {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .1rem;
  width: 168px; height: 168px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff; box-shadow: 0 18px 40px rgba(32, 120, 108, .38);
  text-align: center; flex-shrink: 0;
}
.hero-badge-num { font-size: 2.9rem; font-weight: 900; line-height: 1; letter-spacing: -.02em; }
.hero-badge-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; opacity: .92; max-width: 8rem; }

/* ---------- section heads ---------- */
.home-section { margin-bottom: 3.4rem; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem;
  margin-bottom: 1.6rem;
}
.section-head h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 800; color: var(--dark);
  letter-spacing: -.02em; line-height: 1.15;
}
.section-head h2 span {
  background-image: linear-gradient(135deg, var(--teal), var(--teal-dark));
  -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
}
.section-head p { font-size: .95rem; color: var(--body); max-width: 560px; margin-top: .5rem; }
.section-head .kicker { margin-bottom: .7rem; }
.section-count {
  flex-shrink: 0; white-space: nowrap;
  font-size: .74rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: var(--peach-dark); background: var(--peach-light);
  border: 1px solid rgba(225, 123, 60, .22);
  padding: .5rem .9rem; border-radius: 999px;
}

/* ---------- collection grid + cards ---------- */
.col-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.4rem;
}
.col-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1.15rem; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.col-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(42, 157, 143, .45); }
.col-cover {
  position: relative; aspect-ratio: 16 / 10; overflow: hidden;
  background: var(--bg-alt);
}
.col-cover img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .35s ease; }
.col-card:hover .col-cover img { transform: scale(1.04); }
.col-icon {
  position: absolute; left: 14px; top: 14px;
  width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  border-radius: 12px; color: var(--teal-dark);
  background: rgba(255, 255, 255, .92); box-shadow: 0 6px 16px rgba(43, 45, 66, .16);
  backdrop-filter: blur(4px);
}
.col-icon .ui-icon { width: 22px; height: 22px; }
.wb-cover { display: flex; align-items: center; justify-content: center; }
.wb-cover .col-icon.big {
  position: static; width: 74px; height: 74px; border-radius: 20px;
  background: rgba(255, 255, 255, .9); color: var(--teal-dark);
}
.wb-cover .col-icon.big .ui-icon { width: 38px; height: 38px; }
.accent-teal.wb-cover, .wb-cover.accent-teal { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%); }
.accent-peach.wb-cover, .wb-cover.accent-peach { background: linear-gradient(135deg, var(--peach) 0%, var(--peach-dark) 100%); }
.wb-cover.accent-peach .col-icon.big { color: var(--peach-dark); }

.col-body { padding: 1.35rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.col-eyebrow {
  font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em;
  color: var(--muted); margin-bottom: .5rem;
}
.col-body h3 { font-size: 1.22rem; font-weight: 800; color: var(--dark); letter-spacing: -.02em; line-height: 1.2; margin-bottom: .5rem; }
.col-body p { font-size: .92rem; color: var(--body); line-height: 1.6; flex: 1; }
.col-meta { font-size: .8rem; font-weight: 700; color: var(--teal-dark); margin-top: .9rem; }
.col-open {
  margin-top: .9rem; font-size: .86rem; font-weight: 800; color: var(--teal);
  display: inline-flex; align-items: center; gap: .35rem;
  transition: gap .2s ease;
}
.col-card:hover .col-open { gap: .6rem; }

/* ---------- breadcrumb + detail hero ---------- */
.breadcrumb { display: flex; align-items: center; gap: .55rem; font-size: .82rem; font-weight: 600; color: var(--muted); margin-bottom: 1.2rem; }
.breadcrumb a { color: var(--teal-dark); font-weight: 700; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { opacity: .5; }

.detail-hero {
  display: flex; align-items: center; gap: 1.5rem;
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
  border: 1px solid var(--border); border-radius: 1.4rem;
  background: linear-gradient(125deg, #fff 6%, var(--teal-light) 100%);
  box-shadow: var(--shadow-sm); margin-bottom: 2.2rem;
}
.detail-hero.accent-peach { background: linear-gradient(125deg, #fff 6%, var(--peach-light) 100%); }
.detail-hero-icon {
  flex-shrink: 0; width: 76px; height: 76px; border-radius: 22px;
  display: flex; align-items: center; justify-content: center; color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  box-shadow: 0 12px 28px rgba(32, 120, 108, .32);
}
.detail-hero.accent-peach .detail-hero-icon { background: linear-gradient(135deg, var(--peach), var(--peach-dark)); box-shadow: 0 12px 28px rgba(225, 123, 60, .32); }
.detail-hero-icon .ui-icon { width: 40px; height: 40px; }
.detail-tagline { font-size: 1.02rem; color: var(--body); margin-top: .6rem; max-width: 640px; }

/* ---------- detail blocks ---------- */
.detail-block { margin-bottom: 2rem; }
.block-title {
  display: flex; align-items: center; gap: .55rem;
  font-size: 1.15rem; font-weight: 800; color: var(--dark); letter-spacing: -.01em;
  margin-bottom: 1.1rem;
}
.block-title .ui-icon { color: var(--teal); width: 1.3em; height: 1.3em; }
.prose {
  background: var(--white); border: 1px solid var(--border); border-radius: 1.1rem;
  padding: 1.6rem 1.8rem; box-shadow: var(--shadow-sm);
}
.prose p { font-size: .98rem; color: var(--body); line-height: 1.75; }
.prose p + p { margin-top: 1rem; }
.prose b { color: var(--dark); font-weight: 700; }

.detail-block.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 2.6rem; align-items: start; }

/* ---------- checklist ---------- */
.check-list { display: flex; flex-direction: column; gap: .7rem; list-style: none; }
.check-list li {
  display: flex; align-items: flex-start; gap: .7rem;
  background: var(--white); border: 1px solid var(--border-soft); border-radius: .8rem;
  padding: .8rem 1rem; box-shadow: var(--shadow-sm);
  font-size: .92rem; color: var(--body);
}
.check-list li .ui-icon {
  flex-shrink: 0; width: 20px; height: 20px; margin-top: .12rem;
  color: var(--green-ok); stroke-width: 2.6;
  background: rgba(39, 174, 96, .12); border-radius: 50%; padding: 3px;
}

/* ---------- how-to steps ---------- */
.howto-list { list-style: none; display: flex; flex-direction: column; gap: .8rem; counter-reset: step; }
.howto-item {
  display: flex; gap: .95rem; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border-soft); border-radius: .9rem;
  padding: 1rem 1.1rem; box-shadow: var(--shadow-sm);
}
.howto-num {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 800; color: var(--teal-dark);
  background: linear-gradient(145deg, var(--teal-light), var(--peach-light));
  border: 1px solid rgba(42, 157, 143, .18);
}
.howto-item h4 { font-size: .92rem; font-weight: 800; color: var(--dark); margin-bottom: .2rem; }
.howto-item p { font-size: .88rem; color: var(--body); line-height: 1.6; }

/* ---------- file rows (guides) ---------- */
.file-list { display: flex; flex-direction: column; gap: .9rem; }
.file-row {
  display: flex; align-items: center; gap: 1rem;
  background: var(--white); border: 1px solid var(--border); border-radius: 1rem;
  padding: 1.1rem 1.25rem; box-shadow: var(--shadow-sm);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.file-row:hover { border-color: rgba(42, 157, 143, .4); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.file-ic {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center; color: var(--teal-dark);
  background: var(--teal-light); border: 1px solid rgba(42, 157, 143, .18);
}
.file-ic .ui-icon { width: 24px; height: 24px; }
.file-info { flex: 1; min-width: 0; }
.file-tag {
  display: inline-block; font-size: .64rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  color: var(--peach-dark); background: var(--peach-light); border-radius: 999px;
  padding: .25rem .6rem; margin-bottom: .35rem;
}
.file-info h4 { font-size: 1rem; font-weight: 800; color: var(--dark); line-height: 1.25; }
.file-info p { font-size: .86rem; color: var(--body); line-height: 1.55; margin-top: .2rem; }

/* ---------- download buttons ---------- */
.dl-btn {
  flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-size: .85rem; font-weight: 800; letter-spacing: .01em; white-space: nowrap;
  color: #fff; background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 12px; padding: .8rem 1.3rem;
  box-shadow: 0 10px 24px rgba(32, 120, 108, .28);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.dl-btn:hover { transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 14px 30px rgba(32, 120, 108, .36); }
.dl-btn .ui-icon { width: 18px; height: 18px; stroke-width: 2.2; }
.dl-btn.dl-sm { width: 100%; padding: .65rem 1rem; font-size: .8rem; margin-top: .9rem; }
.dl-btn.dl-lg { padding: 1rem 1.8rem; font-size: .95rem; }

/* ---------- printables gallery ---------- */
.section-head.inline { margin-bottom: 1.4rem; }
.print-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 1.3rem;
}
.print-card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--border); border-radius: 1rem; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.print-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(42, 157, 143, .45); }
.print-thumb {
  position: relative; display: block; aspect-ratio: 3 / 4; overflow: hidden; background: var(--bg-alt);
  border-bottom: 1px solid var(--border-soft);
}
.print-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .35s ease; }
.print-card:hover .print-thumb img { transform: scale(1.05); }
.print-zoom {
  position: absolute; right: 12px; bottom: 12px;
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  box-shadow: 0 8px 18px rgba(32, 120, 108, .4);
  opacity: 0; transform: translateY(8px); transition: opacity .2s ease, transform .2s ease;
}
.print-card:hover .print-zoom { opacity: 1; transform: translateY(0); }
.print-zoom .ui-icon { width: 20px; height: 20px; }
.print-body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; flex: 1; }
.print-body h4 { font-size: .96rem; font-weight: 800; color: var(--dark); line-height: 1.25; }
.print-body p { font-size: .82rem; color: var(--body); line-height: 1.55; margin-top: .35rem; flex: 1; }

/* ---------- download block ---------- */
.download-block {
  display: flex; align-items: center; gap: 1.3rem;
  padding: 1.6rem 1.8rem; border-radius: 1.2rem;
  background: linear-gradient(125deg, var(--teal-light) 0%, #fff 100%);
  border: 1px solid rgba(42, 157, 143, .28); box-shadow: var(--shadow-sm);
}
.download-block.accent-peach { background: linear-gradient(125deg, var(--peach-light) 0%, #fff 100%); border-color: rgba(225, 123, 60, .28); }
.download-cta-icon {
  flex: 0 0 auto; width: 60px; height: 60px; border-radius: 16px; color: #fff;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark)); box-shadow: 0 10px 24px rgba(32, 120, 108, .3);
}
.download-block.accent-peach .download-cta-icon { background: linear-gradient(135deg, var(--peach), var(--peach-dark)); box-shadow: 0 10px 24px rgba(225, 123, 60, .3); }
.download-cta-icon .ui-icon { width: 30px; height: 30px; }
.download-block > div:not(.download-cta-icon) { flex: 1; min-width: 0; }
.download-block h3 { font-size: 1.1rem; font-weight: 800; color: var(--dark); }
.download-block p { font-size: .88rem; color: var(--body); margin-top: .2rem; }

/* ---------- back link + empty ---------- */
.back-link {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .9rem; font-weight: 800; color: var(--teal-dark);
  margin-top: 1rem; padding: .6rem 0;
}
.back-link:hover { text-decoration: underline; }
.empty-state { text-align: center; padding: 4rem 0; }
.empty-state h1 { font-size: 1.8rem; font-weight: 800; color: var(--dark); margin-bottom: .6rem; }
.empty-state p { color: var(--body); max-width: 420px; margin: 0 auto 1rem; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--border); background: var(--white); padding: 3.5rem 0 2.5rem; margin-top: auto; }
.footer-inner { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; text-align: center; }
.footer-logo { height: 46px; width: auto; object-fit: contain; opacity: .92; margin-bottom: 2.25rem; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem 3.5rem; width: 100%; margin-bottom: 2.25rem; }
.footer-col h4 { font-weight: 800; color: var(--dark); text-transform: uppercase; font-size: .8rem; letter-spacing: .14em; margin-bottom: 1.1rem; }
.footer-list { display: flex; flex-direction: column; align-items: center; gap: .7rem; }
.footer-item { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; color: var(--dark); font-size: .92rem; }
.footer-item.muted { color: var(--muted); font-size: .85rem; font-weight: 500; margin-top: .15rem; }
.footer-item.accent { color: var(--teal); font-weight: 700; }
.footer-item svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.footer-seal { height: 116px; width: auto; object-fit: contain; opacity: .92; }
.footer-bottom { padding-top: 1.5rem; border-top: 1px solid var(--border); width: 100%; max-width: 380px; }
.footer-bottom p { color: var(--muted); font-size: .72rem; line-height: 1.55; }
.footer-bottom .legal { margin-top: .6rem; }

/* ---------- practice pack (upsell) ---------- */
.pack-section { margin-top: .5rem; }
.pack-banner {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1.7rem 1.9rem; border-radius: 22px;
  background: linear-gradient(125deg, var(--peach-light) 0%, #fff 70%);
  border: 1px solid rgba(225, 123, 60, .3); box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.pack-banner:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(225, 123, 60, .55); }
.pack-banner-icon {
  width: 66px; height: 66px; border-radius: 18px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; color: #fff;
  background: linear-gradient(135deg, var(--peach), var(--peach-dark));
  box-shadow: 0 12px 26px rgba(225, 123, 60, .32);
}
.pack-banner-icon .ui-icon { width: 34px; height: 34px; }
.pack-banner-copy { flex: 1; min-width: 0; }
.pack-banner-badge {
  display: inline-block; font-size: .66rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--peach-dark); background: rgba(225, 123, 60, .14);
  padding: .28rem .7rem; border-radius: 999px; margin-bottom: .5rem;
}
.pack-banner-copy h3 { font-size: 1.28rem; font-weight: 800; color: var(--dark); line-height: 1.15; }
.pack-banner-copy p { font-size: .9rem; color: var(--body); margin-top: .35rem; max-width: 60ch; }
.pack-banner-cta {
  flex-shrink: 0; font-weight: 700; font-size: .9rem; color: var(--peach-dark);
  display: inline-flex; align-items: center; gap: .4rem; white-space: nowrap;
}

.pack-modules { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.pack-module {
  border: 1px solid var(--border); border-radius: 18px; background: #fff;
  padding: 1.3rem 1.4rem; box-shadow: var(--shadow-sm);
}
.pack-module-head { margin-bottom: 1rem; }
.pack-module-head h3 { font-size: 1.05rem; font-weight: 800; color: var(--dark); }
.pack-module-head p { font-size: .82rem; color: var(--body); margin-top: .3rem; line-height: 1.5; }
.pack-module .file-list { gap: .6rem; }
.pack-module .file-row { padding: .8rem .9rem; }
.pack-module .file-info h4 { font-size: .92rem; }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .detail-block.split { grid-template-columns: 1fr; gap: 1.6rem; }
  .pack-modules { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .library-hero { grid-template-columns: 1fr; text-align: left; }
  .hero-badge { display: none; }
  .section-head { flex-direction: column; align-items: flex-start; gap: .7rem; }
  .file-row { flex-wrap: wrap; }
  .dl-btn:not(.dl-sm) { width: 100%; margin-top: .4rem; }
  .download-block { flex-direction: column; align-items: flex-start; text-align: left; }
  .download-block .dl-btn { width: 100%; }
  .pack-banner { flex-direction: column; align-items: flex-start; text-align: left; gap: 1rem; }
  .pack-banner-cta { align-self: flex-start; }
}
@media (max-width: 600px) {
  .header-inner { height: 60px; }
  .brand img { height: 30px; }
  .lang-switch { gap: 2px; padding: 3px; }
  .lang-opt { width: 24px; height: 17px; }
  #app { padding: 1.5rem 0 2.5rem; }
  .detail-hero { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer-cols { grid-template-columns: 1fr; gap: 2.25rem; }
  .print-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: .9rem; }
}

.brand-mark{display:inline-flex;align-items:center;gap:10px}.brand-mark img{height:38px;width:38px;border-radius:50%}.brand-name{font-weight:800;font-size:15px;line-height:1.15;color:#1f3d5a;letter-spacing:-.01em;max-width:260px}.footer-logo{margin-bottom:2rem}.footer-logo .brand-name{color:inherit}@media(max-width:640px){.brand-mark img{height:30px;width:30px}.brand-name{font-size:13px}}
