/* VA4U Talent: public site styles. No framework, no build step. */

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-600-latin.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: light;
  /* Brand (from va4u.com.au). --green is decorative only: white on it fails AA. */
  --green: #02b069;
  --green-600: #007f4b;   /* 5.1:1 on white: buttons, links */
  --green-700: #006b3f;
  --green-800: #005a35;
  --green-50: #eaf8f0;
  --green-100: #d3f1e1;
  --navy: #14234f;
  --navy-800: #0e1a3d;
  --ink: #101828;
  --ink-2: #344054;
  --muted: #667085;       /* 5:1 on white */
  --line: #e4e7ec;
  --line-2: #d0d5dd;
  --bg: #ffffff;
  --bg-soft: #f5f7f6;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, .06);
  --shadow: 0 1px 3px rgba(16, 24, 40, .06), 0 8px 24px rgba(16, 24, 40, .08);
  --shadow-lg: 0 12px 40px rgba(16, 24, 40, .16);
  --font-head: "Poppins", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-body: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --gutter: 16px;
  --header-h: 64px;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}
@media (min-width: 760px) { :root { --gutter: 24px; --header-h: 76px; } }

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font: 400 1rem/1.625 var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--green-600); text-underline-offset: 3px; }
a:hover { color: var(--green-700); }
h1, h2, h3 { font-family: var(--font-head); font-weight: 600; color: var(--navy); line-height: 1.2; margin: 0; letter-spacing: -.01em; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
a, button, summary, label, select { touch-action: manipulation; -webkit-tap-highlight-color: rgba(0, 127, 75, .12); }
ul, ol { margin: 0; padding: 0; }
button, input, select, textarea { font: inherit; color: inherit; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--green-600); outline-offset: 2px; border-radius: 4px; }
.icon { width: 1.15em; height: 1.15em; flex: none; }

.wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 var(--gutter); }
.narrow { max-width: 920px; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.muted { color: var(--muted); }
.center { text-align: center; justify-content: center; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 8px; }
.skip-link:focus { top: 12px; color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 44px; padding: .625rem 1.125rem;
  border: 1.5px solid transparent; border-radius: 12px;
  font: 600 1rem/1.2 var(--font-head); letter-spacing: 0;
  text-decoration: none; cursor: pointer; white-space: nowrap; -webkit-tap-highlight-color: transparent;
  transition: background-color .15s, border-color .15s, color .15s, box-shadow .15s, transform .1s;
}
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--green-600); color: #fff; box-shadow: 0 1px 2px rgba(0, 90, 53, .25); }
.btn-primary:hover { background: var(--green-700); color: #fff; }
.btn-primary:active { background: var(--green-800); }
.btn-secondary { background: #fff; color: var(--navy); border-color: var(--line-2); }
.btn-secondary:hover { border-color: var(--navy); color: var(--navy); }
.btn-ghost { background: transparent; color: var(--green-600); }
.btn-ghost:hover { background: var(--green-50); color: var(--green-700); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--green-50); color: var(--navy); }
.btn-sm { padding: .5rem .95rem; font-size: .9375rem; }
.btn-lg { min-height: 52px; padding: .75rem 1.4rem; font-size: 1.0625rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: progress; }
.link-btn { background: none; border: 0; padding: 10px 4px; min-height: 44px; color: var(--green-600); font-weight: 600; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 40; background: rgba(255, 255, 255, .94); backdrop-filter: saturate(160%) blur(10px); -webkit-backdrop-filter: saturate(160%) blur(10px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo { width: auto; height: 40px; }
.brand-tag { font: 600 .875rem/1 var(--font-head); color: var(--green-800); background: var(--green-50); border: 1px solid var(--green-100); padding: 7px 10px; border-radius: 999px; }
.header-nav { display: flex; align-items: center; gap: 4px; }
.nav-link { display: inline-flex; align-items: center; min-height: 44px; padding: 0 12px; color: var(--ink-2); font-weight: 500; text-decoration: none; border-radius: 8px; }
.nav-link:hover { color: var(--navy); background: var(--bg-soft); }
@media (max-width: 759px) { .hide-sm { display: none; } .brand-logo { height: 34px; } }
@media (min-width: 760px) { .header-inner { min-height: 76px; } .brand-logo { height: 46px; } }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 360px at 8% -20%, rgba(2, 176, 105, .13), transparent 65%),
    radial-gradient(700px 300px at 100% 0%, rgba(20, 35, 79, .07), transparent 60%),
    linear-gradient(#fff, var(--bg-soft));
  border-bottom: 1px solid var(--line);
}
.hero-inner { padding-top: 32px; padding-bottom: 28px; display: grid; gap: 24px; align-items: center; }
.hero-aside { display: none; }
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1fr auto; }
  .hero-aside { display: grid; justify-items: center; gap: 14px; padding: 24px 28px; background: rgba(255, 255, 255, .75); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
}
.faces { display: flex; }
.faces img { width: 64px; height: 64px; border-radius: 999px; object-fit: cover; border: 3px solid #fff; box-shadow: var(--shadow-sm); background: #eef1f4; }
.faces img + img { margin-left: -16px; }
.faces-count { font: 600 2rem/1 var(--font-head); color: var(--navy); }
.faces-label { font-size: .9375rem; color: var(--ink-2); text-align: center; max-width: 16ch; line-height: 1.4; }
.hero h1 { font-size: clamp(1.9rem, 4.2vw, 3rem); max-width: 20ch; }
.hero .hl { color: var(--green-600); }
.lead { font-size: 1.0625rem; color: var(--ink-2); margin-top: 12px; max-width: 62ch; }
@media (min-width: 760px) { .hero-inner { padding-top: 48px; padding-bottom: 40px; } .lead { font-size: 1.1875rem; } }
.trust { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 20px; color: var(--ink-2); font-size: .9375rem; }
.trust li { display: inline-flex; align-items: center; gap: 8px; }
.trust .icon { color: var(--green-600); }
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 0 8px; font-size: .9375rem; color: var(--muted); margin-bottom: 6px; }
.crumbs a { color: var(--ink-2); text-decoration: none; display: inline-flex; min-height: 44px; align-items: center; }
.crumbs a:hover { color: var(--green-700); text-decoration: underline; }
.crumbs-page { padding-top: 8px; margin-bottom: 0; }

/* ---------- Category chips ---------- */
.cat-nav { background: #fff; border-bottom: 1px solid var(--line); position: relative; }
.chip-row { list-style: none; display: flex; gap: 8px; overflow-x: auto; padding: 12px 0; scrollbar-width: none; scroll-snap-type: x proximity; }
.chip-row::-webkit-scrollbar { display: none; }
.chip-row li { scroll-snap-align: start; flex: none; }
@media (min-width: 900px) { .chip-row { flex-wrap: wrap; overflow: visible; } }
.chip-link {
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 0 16px;
  border: 1.5px solid var(--line-2); border-radius: 999px; background: #fff;
  color: var(--ink-2); font-weight: 600; font-size: .9375rem; text-decoration: none; white-space: nowrap;
}
.chip-link:hover { border-color: var(--navy); color: var(--navy); }
.chip-link.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }
.chip-count { font-size: .875rem; font-weight: 600; color: var(--muted); background: var(--bg-soft); border-radius: 999px; padding: 1px 8px; font-variant-numeric: tabular-nums; }
.chip-link.is-active .chip-count { background: rgba(255, 255, 255, .16); color: #fff; }

/* ---------- Filters ---------- */
.catalogue { padding: 20px 0 48px; }
.filters { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 8px; }
.filter-search { grid-column: 1 / -1; position: relative; }
.filter-search .icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.filters input[type="search"], .filters select {
  width: 100%; min-height: 48px; border: 1.5px solid var(--line-2); border-radius: 12px; background: #fff;
  font-size: 1rem; color: var(--ink);
}
.filters input[type="search"] { padding: 10px 14px 10px 42px; -webkit-appearance: none; appearance: none; }
.filters select {
  padding: 10px 38px 10px 14px; -webkit-appearance: none; appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23344054' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
}
.filters input:focus, .filters select:focus { border-color: var(--green-600); outline: 3px solid rgba(0, 127, 75, .18); outline-offset: 0; }
.toggle { grid-column: 1 / -1; display: inline-flex; align-items: center; gap: 10px; min-height: 44px; font-weight: 500; color: var(--ink-2); cursor: pointer; }
.toggle input { width: 20px; height: 20px; accent-color: var(--green-600); }
@media (min-width: 760px) {
  .filters { grid-template-columns: 1fr 1fr auto; align-items: center; gap: 12px; }
  .toggle { grid-column: auto; padding: 0 6px; }
}
@media (min-width: 1024px) {
  .filters { grid-template-columns: minmax(240px, 1fr) 220px 200px auto; }
  .filter-search { grid-column: auto; }
}
.results-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 44px; margin-bottom: 8px; }
.result-count { font-size: .9375rem; color: var(--muted); font-weight: 500; font-variant-numeric: tabular-nums; }

/* ---------- Cards ---------- */
.grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 12px; }
@media (min-width: 760px) { .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px 20px; } }
@media (min-width: 1100px) { .grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px 24px; } }
.card { min-width: 0; }
.card-link {
  display: flex; flex-direction: column; height: 100%;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent;
  transition: box-shadow .2s var(--ease-out), border-color .2s;
}
.card-link:active { border-color: var(--green-600); }
.card-media { position: relative; aspect-ratio: 4 / 5; background: #eef1f4; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease-out); }
@media (hover: hover) {
  .card-link:hover { box-shadow: var(--shadow); border-color: var(--line-2); color: inherit; }
  .card-link:hover .card-media img { transform: scale(1.03); }
  .card-link:hover .card-name { color: var(--green-700); }
}
.card-initial, .profile-initial {
  width: 100%; height: 100%; display: grid; place-items: center; align-content: center; gap: 10px;
  background: radial-gradient(90% 70% at 50% 35%, #f4fbf7 0%, #e3f5eb 60%, #d3efe0 100%);
}
.card-initial span, .profile-initial span {
  width: 42%; aspect-ratio: 1; display: grid; place-items: center; border-radius: 999px;
  font: 600 clamp(2.4rem, 7vw, 3.6rem)/1 var(--font-head); color: var(--green-700);
  background: #fff; box-shadow: 0 6px 20px rgba(0, 107, 63, .12); border: 1px solid var(--green-100);
}
.profile-initial .initial-note { width: auto; aspect-ratio: auto; font: 500 .875rem/1.4 var(--font-body); color: var(--green-800); background: none; box-shadow: none; border: 0; }
.card-body { display: flex; flex-direction: column; gap: 6px; padding: 14px 14px 14px; flex: 1; }
.card-name { display: flex; align-items: center; gap: 6px; font-size: 1.125rem; transition: color .15s; }
.card-name .icon { width: 18px; height: 18px; color: var(--green-600); }
.card-role { font-size: .9375rem; line-height: 1.45; color: var(--ink-2); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-tools { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 4px 0 6px; }
.card-tools li { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .875rem; line-height: 1.3; font-weight: 500; color: var(--green-800); background: var(--green-50); border-radius: 6px; padding: 3px 8px; }
.card-tools .card-tools-more { color: var(--ink-2); background: var(--bg-soft); }
.card-meta { margin-top: auto; padding-top: 10px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; align-items: center; gap: 2px 0; font-size: .875rem; color: var(--muted); font-variant-numeric: tabular-nums; }
.card-meta > span { white-space: nowrap; }
.card-meta > span + span:not(.card-now)::before { content: "·"; margin: 0 6px; }
.card-now { flex-basis: 100%; display: inline-flex; align-items: center; gap: 6px; color: var(--green-700); font-weight: 600; }
.card-now::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px var(--green-100); }
@media (min-width: 760px) { .card-body { padding: 16px 18px 16px; } .card-name { font-size: 1.25rem; } }
@media (max-width: 559px) {
  .card-tools { display: none; }
  .card-meta > span { flex-basis: 100%; }
  .card-meta > span + span:not(.card-now)::before { content: none; }
}

.empty { text-align: center; padding: 48px 16px; border: 1.5px dashed var(--line-2); border-radius: var(--radius); background: var(--bg-soft); display: grid; gap: 16px; justify-items: center; color: var(--ink-2); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--navy) 0%, #1b3264 100%); color: #fff; }
.cta-inner { display: grid; gap: 20px; padding-top: 40px; padding-bottom: 40px; align-items: center; }
.cta-band h2 { color: #fff; font-size: clamp(1.4rem, 3vw, 1.9rem); }
.cta-band p { color: rgba(255, 255, 255, .86); margin-top: 8px; max-width: 56ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-band .btn-primary { background: var(--green-600); }
@media (min-width: 900px) { .cta-inner { grid-template-columns: 1fr auto; padding-top: 48px; padding-bottom: 48px; } }

/* ---------- Footer (centred) ---------- */
.site-footer { background: #fff; border-top: 1px solid var(--line); padding: 40px 0 20px; font-size: .9375rem; color: var(--ink-2); text-align: center; }
.footer-inner { display: grid; justify-items: center; gap: 12px; }
.footer-logo { display: inline-flex; min-height: 44px; align-items: center; }
.footer-logo img { height: 40px; width: auto; }
.footer-tagline { color: var(--muted); max-width: 64ch; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 0 24px; margin-top: 4px; }
.footer-links a, .footer-meta a { display: inline-flex; align-items: center; min-height: 44px; color: var(--ink-2); font-weight: 500; text-decoration: none; }
.footer-links a:hover, .footer-meta a:hover { color: var(--green-700); text-decoration: underline; }
.footer-meta { width: 100%; margin-top: 12px; padding-top: 8px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0 12px; font-size: .875rem; color: var(--muted); }
.footer-meta a { font-weight: 400; }

/* ---------- VA profile ----------
   Phones: photo, intro, buttons, content. Tablets: photo beside the intro.
   Desktop: a sticky column (photo + buttons) beside the content, both lined up with the header. */
.profile { display: grid; gap: 24px; padding-top: 8px; padding-bottom: 56px; }
.profile-side, .profile-main { display: contents; }
.profile-photo { order: 1; }
.profile-intro { order: 2; min-width: 0; }
.profile-actions { order: 3; }
.profile-content { order: 4; min-width: 0; }
.profile-photo { border-radius: 20px; overflow: hidden; background: #eef1f4; aspect-ratio: 4 / 5; }
.profile-photo img { width: 100%; height: 100%; object-fit: cover; }
.profile-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.tag { position: relative; display: inline-flex; align-items: center; gap: 6px; min-height: 36px; padding: 0 12px; border-radius: 999px; font-size: .875rem; font-weight: 600; color: var(--ink-2); background: var(--bg-soft); border: 1px solid var(--line); text-decoration: none; }
a.tag::after { content: ""; position: absolute; inset: -4px 0; } /* 44px tap area */
a.tag:hover { border-color: var(--navy); color: var(--navy); }
.tag-verified { color: var(--green-800); background: var(--green-50); border-color: var(--green-100); }
.tag-verified .icon { color: var(--green-600); }
.profile-name { font-size: clamp(2.2rem, 5vw, 3.2rem); }
.profile-headline { font-size: 1.125rem; color: var(--ink-2); margin-top: 8px; line-height: 1.5; }
.facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 22px 0 0; }
.fact { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; min-width: 0; }
.fact dt { display: flex; align-items: center; gap: 7px; font-size: .875rem; color: var(--muted); font-weight: 500; }
.fact dt .icon { color: var(--green-600); width: 16px; height: 16px; }
.fact dd { margin: 4px 0 0; font-weight: 600; color: var(--ink); overflow-wrap: break-word; line-height: 1.4; }
.profile-actions { display: flex; flex-wrap: wrap; gap: 10px; }
@media (max-width: 639px) {
  .profile-photo { aspect-ratio: 1 / 1; }
  .profile-photo img { object-position: 50% 30%; }
  .profile-actions .btn { width: 100%; }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .profile { grid-template-columns: minmax(0, 40%) minmax(0, 1fr); grid-template-areas: "photo intro" "photo actions" "content content"; column-gap: 32px; row-gap: 20px; align-items: start; }
  .profile-photo { grid-area: photo; }
  .profile-intro { grid-area: intro; }
  .profile-actions { grid-area: actions; }
  .profile-actions .btn { flex: 1 1 auto; }
  .profile-content { grid-area: content; }
}
@media (min-width: 1024px) {
  .profile { grid-template-columns: 300px minmax(0, 1fr); column-gap: 40px; padding-top: 16px; align-items: start; }
  .profile-side { display: grid; gap: 16px; position: sticky; top: calc(var(--header-h) + 20px); }
  .profile-main { display: block; min-width: 0; }
  .profile-actions { display: grid; }
  .profile-actions .btn { width: 100%; }
  .profile-content { margin-top: 32px; }
  .facts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1200px) { .profile { grid-template-columns: 340px minmax(0, 1fr); column-gap: 56px; } }
/* Short screens: a sticky column taller than the window would hide its buttons. */
@media (min-width: 1024px) and (max-height: 699px) { .profile-side { position: static; } }

.pro-section { padding: 32px 0; border-top: 1px solid var(--line); }
.pro-section:last-child { padding-bottom: 0; }
.section-title { font-size: clamp(1.35rem, 2.6vw, 1.625rem); margin-bottom: 18px; }
.prose { font-size: 1.0625rem; color: var(--ink-2); max-width: 68ch; }

.video-frame { position: relative; aspect-ratio: 16 / 9; border-radius: 16px; overflow: hidden; background: var(--navy); }
.video-frame iframe, .video-frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: #000; }
.video-facade { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; cursor: pointer; background: radial-gradient(120% 90% at 20% 10%, #0f8a57 0%, var(--navy) 100%); -webkit-tap-highlight-color: transparent; }
.video-facade img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease-out), filter .3s; }
.play-btn { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 76px; height: 76px; border-radius: 999px; display: grid; place-items: center; background: var(--green-600); color: #fff; box-shadow: 0 8px 30px rgba(0, 0, 0, .35); transition: transform .2s var(--ease-out); }
.play-btn .icon { width: 30px; height: 30px; margin-left: 4px; }
@media (hover: hover) {
  .video-facade:hover img { transform: scale(1.02); filter: brightness(.92); }
  .video-facade:hover .play-btn { transform: translate(-50%, -50%) scale(1.06); }
}
.video-facade:active .play-btn { transform: translate(-50%, -50%) scale(.96); }
.video-label { position: absolute; left: 14px; bottom: 14px; font-size: .875rem; font-weight: 600; color: #fff; background: rgba(16, 24, 40, .7); padding: 7px 12px; border-radius: 999px; }

.service-list { list-style: none; display: grid; gap: 12px 32px; }
@media (min-width: 640px) { .service-list { grid-template-columns: 1fr 1fr; } }
.service-list li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-2); line-height: 1.5; }
.service-list .icon { width: 18px; height: 18px; margin-top: 3px; color: var(--green-600); }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.chips li { font-size: .9375rem; line-height: 1.35; font-weight: 500; padding: 7px 12px; border-radius: 10px; background: var(--green-50); border: 1px solid var(--green-100); color: var(--green-800); }
.more > summary { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; margin-top: 6px; color: var(--green-700); font-weight: 600; cursor: pointer; list-style: none; }
.more > summary::-webkit-details-marker { display: none; }
.more > summary::after { content: ""; width: 8px; height: 8px; margin-top: -4px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); }
.more[open] > summary { display: none; }
.more > .chips { margin-top: 8px; }
.plain { list-style: none; display: grid; gap: 6px; color: var(--ink-2); }

.timeline { list-style: none; display: grid; }
.tl-item { position: relative; padding: 0 0 26px 30px; }
.tl-item::before { content: ""; position: absolute; left: 0; top: 5px; width: 13px; height: 13px; border-radius: 50%; background: #fff; border: 3px solid var(--green); }
.tl-item::after { content: ""; position: absolute; left: 5px; top: 24px; bottom: 4px; width: 3px; border-radius: 3px; background: var(--line); }
.tl-item:last-child { padding-bottom: 0; }
.tl-item:last-child::after { display: none; }
.tl-head { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2px 16px; align-items: baseline; }
.tl-title { font: 600 1.0625rem/1.35 var(--font-head); color: var(--navy); }
.tl-dates { font-size: .875rem; color: var(--muted); font-weight: 500; font-variant-numeric: tabular-nums; }
.tl-context { display: block; font-size: .9375rem; color: var(--green-700); font-weight: 600; margin-top: 2px; }
.tl-details > summary { list-style: none; cursor: pointer; position: relative; padding-right: 34px; border-radius: 6px; }
.tl-details > summary::-webkit-details-marker { display: none; }
.tl-details > summary::after {
  content: ""; position: absolute; right: 4px; top: 6px; width: 9px; height: 9px;
  border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: rotate(45deg); transition: transform .2s var(--ease-out);
}
.tl-details[open] > summary::after { transform: rotate(-135deg); top: 10px; }
@media (hover: hover) { .tl-details > summary:hover .tl-title { color: var(--green-700); } }
.tl-more { display: inline-flex; align-items: center; min-height: 32px; font-size: .875rem; font-weight: 600; color: var(--green-600); margin-top: 2px; }
.tl-details[open] .tl-more { display: none; }
.tl-bullets { margin-top: 10px; padding-left: 18px; display: grid; gap: 6px; color: var(--ink-2); }
.tl-bullets li::marker { color: var(--green); }

.background { display: grid; gap: 24px 32px; }
@media (min-width: 640px) { .background { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); } }
.bg-title { display: flex; align-items: center; gap: 8px; font-size: 1.0625rem; margin-bottom: 10px; }
.bg-title .icon { color: var(--green-600); }
.bg-item > p { color: var(--ink-2); }
.edu { color: var(--ink-2); }
.edu + .edu { margin-top: 12px; }
.edu strong { color: var(--ink); }
.checklist { list-style: none; display: grid; gap: 10px; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-2); }
.checklist .icon { color: var(--green-600); margin-top: 4px; }

.section-similar { background: var(--bg-soft); border-top: 1px solid var(--line); padding: 44px 0 56px; }
/* Tablets show 3 columns: keep the row full. */
@media (min-width: 760px) and (max-width: 1099px) { .section-similar .card:nth-child(4) { display: none; } }

.sticky-actions { display: none; }
@media (max-width: 1023px) {
  .page-va .sticky-actions {
    display: flex; gap: 10px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
    padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .96); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgba(16, 24, 40, .08);
    transition: transform .25s var(--ease-out);
  }
  .page-va .sticky-actions.is-hidden { transform: translateY(110%); visibility: hidden; transition: transform .25s var(--ease-out), visibility 0s .25s; }
  .page-va .sticky-actions .btn { flex: 1; }
  .page-va { padding-bottom: 76px; }
}
.preview-bar { position: sticky; top: 0; z-index: 50; background: #fff4d6; color: #5c3d00; border-bottom: 1px solid #f0d58a; text-align: center; font-weight: 600; padding: 10px 16px; }

/* ---------- Modal & forms ---------- */
.modal { border: 0; padding: 0; width: min(560px, calc(100% - 24px)); max-height: calc(100% - 24px); overscroll-behavior: contain; border-radius: 20px; box-shadow: var(--shadow-lg); color: var(--ink); background: #fff; }
.modal::backdrop { background: rgba(16, 24, 40, .55); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); }
.modal[open] { animation: pop .18s ease-out; }
@keyframes pop { from { opacity: 0; transform: translateY(8px) scale(.98); } to { opacity: 1; transform: none; } }
.modal-card { position: relative; padding: 28px 22px 24px; }
@media (min-width: 560px) { .modal-card { padding: 32px 32px 28px; } }
.modal-close { position: absolute; top: 10px; right: 10px; width: 44px; height: 44px; display: grid; place-items: center; border: 0; background: transparent; border-radius: 10px; color: var(--muted); cursor: pointer; }
.modal-close:hover { background: var(--bg-soft); color: var(--ink); }
.modal-title { font-size: 1.5rem; padding-right: 36px; }
.modal-sub { color: var(--ink-2); margin: 8px 0 20px; }
.form-grid { display: grid; gap: 14px; }
@media (min-width: 560px) { .form-grid { grid-template-columns: 1fr 1fr; } .field-full { grid-column: 1 / -1; } }
.field { display: grid; gap: 6px; }
.field-label { font-size: .9375rem; font-weight: 600; color: var(--ink-2); }
.opt { font-weight: 400; color: var(--muted); }
.field input, .field textarea {
  width: 100%; min-height: 48px; padding: 11px 13px; border: 1.5px solid var(--line-2); border-radius: 10px; background: #fff; font-size: 1rem;
}
.field textarea { resize: vertical; min-height: 88px; line-height: 1.5; }
.field input:focus, .field textarea:focus { border-color: var(--green-600); outline: 3px solid rgba(0, 127, 75, .18); outline-offset: 0; }
.field input:user-invalid { border-color: #b42318; }
.consent { display: flex; gap: 10px; align-items: flex-start; margin: 16px 0 18px; font-size: .9375rem; color: var(--ink-2); cursor: pointer; }
.consent input { width: 20px; height: 20px; margin-top: 3px; flex: none; accent-color: var(--green-600); }
.form-error { color: #b42318; background: #fef3f2; border: 1px solid #fecdca; border-radius: 10px; padding: 10px 12px; margin-bottom: 14px; font-size: .9375rem; }
.form-note { text-align: center; color: var(--muted); font-size: .875rem; margin-top: 12px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.lead-done { text-align: center; padding: 12px 0 4px; display: grid; gap: 12px; justify-items: center; }
.done-icon { width: 64px; height: 64px; border-radius: 999px; display: grid; place-items: center; background: var(--green-50); color: var(--green-600); }
.done-icon .icon { width: 32px; height: 32px; }

.message-page { padding: 56px 0 72px; text-align: center; }
.message-page .done-icon { margin: 0 auto 18px; }
.message-page h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); }
.message-page .lead { margin: 12px auto 28px; }
.message-page .cta-actions { justify-content: center; }
.gate-form { text-align: left; max-width: 560px; margin: 0 auto 20px; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 24px; box-shadow: var(--shadow); }

/* ---------- Sign-in screen (private catalogue) ---------- */
.login { min-height: 100vh; min-height: 100dvh; display: grid; }
.login-panel { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px; padding: 40px var(--gutter) 20px; }
.login-card { width: 100%; max-width: 400px; display: grid; gap: 22px; }
.login-logo { justify-self: start; display: inline-flex; align-items: center; gap: 12px; min-height: 44px; text-decoration: none; }
.login-logo img { height: 46px; width: auto; }
.login-title { font-size: clamp(1.75rem, 3.4vw, 2.25rem); }
.login-sub { color: var(--ink-2); margin-top: 8px; }
.login-form { display: grid; gap: 16px; }
.login .form-error { margin: 0; }
.password-wrap { position: relative; }
.password-wrap input { width: 100%; min-height: 52px; padding: 12px 56px 12px 14px; border: 1.5px solid var(--line-2); border-radius: 12px; background: #fff; font-size: 1.0625rem; letter-spacing: .02em; }
.password-wrap input:focus { border-color: var(--green-600); outline: 3px solid rgba(0, 127, 75, .18); outline-offset: 0; }
.password-wrap input[aria-invalid="true"] { border-color: #b42318; }
.password-toggle { position: absolute; right: 4px; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; display: grid; place-items: center; padding: 0; border: 0; border-radius: 10px; background: none; color: var(--muted); cursor: pointer; }
.password-toggle:hover { color: var(--ink); background: var(--bg-soft); }
.password-toggle[aria-pressed="true"] .icon-show, .password-toggle[aria-pressed="false"] .icon-hide { display: none; }
.login-help { padding-top: 18px; border-top: 1px solid var(--line); font-size: .9375rem; color: var(--ink-2); }
.login-legal { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0 10px; font-size: .875rem; color: var(--muted); }
.login-legal a { display: inline-flex; align-items: center; min-height: 44px; color: var(--ink-2); }
.login-brand {
  display: flex; align-items: center; padding: 48px var(--gutter); color: #fff;
  background:
    radial-gradient(640px 420px at 88% 8%, rgba(2, 176, 105, .28), transparent 62%),
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .08) 1px, transparent 0) 0 0 / 22px 22px,
    var(--navy);
}
.login-brand-inner { width: 100%; max-width: 480px; margin: 0 auto; display: grid; gap: 20px; }
.login-teaser { width: 100%; height: auto; border-radius: 14px; box-shadow: 0 18px 50px rgba(0, 0, 0, .35); }
.login-kicker { display: inline-flex; align-items: center; gap: 8px; justify-self: start; padding: 7px 12px; border-radius: 999px; background: rgba(255, 255, 255, .1); color: #fff; font-size: .875rem; font-weight: 600; }
.login-kicker .icon { width: 16px; height: 16px; color: var(--green); }
.login-brand-title { color: #fff; font-size: clamp(1.6rem, 3.2vw, 2.5rem); }
.login-brand-text { color: rgba(255, 255, 255, .84); font-size: 1.0625rem; }
.login-points { list-style: none; display: grid; gap: 12px; }
.login-points li { display: flex; gap: 12px; align-items: flex-start; color: rgba(255, 255, 255, .92); }
.login-points .icon { color: var(--green); margin-top: 3px; }
.login-stats { display: flex; flex-wrap: wrap; gap: 12px 40px; margin: 8px 0 0; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .16); }
.login-stats div { display: flex; flex-direction: column-reverse; }
.login-stats dt { font-size: .875rem; color: rgba(255, 255, 255, .78); }
.login-stats dd { margin: 0; font: 600 2.25rem/1.1 var(--font-head); color: #fff; font-variant-numeric: tabular-nums; }
@media (min-width: 960px) {
  .login { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .login-panel { padding: 56px 48px 24px; }
  .login-brand { padding: 64px 56px; }
}

/* Booth tablets: keep visitors inside the catalogue. */
.is-booth .nav-link[href^="http"], .is-booth .footer-meta a { display: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
