/* Xyncema Academy — approachable learning catalogue. Tokens: [data-theme="education"] */

[data-theme="education"] body { background: var(--bg); color: var(--text); font-family: var(--font-body); }
.ac-wrap { width: 100%; max-width: 1220px; margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2.5rem); }
.ac-kicker { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-heading); font-weight: 700; font-size: .85rem; color: var(--primary-ink); }
.ac-kicker::before { content: ""; width: 10px; height: 10px; border-radius: 3px; background: var(--secondary); }
.ac-h1 { font-family: var(--font-heading); font-weight: 800; font-size: clamp(2.5rem, 5.2vw, 4.2rem); line-height: 1.04; letter-spacing: -0.03em; }
.ac-h2 { font-family: var(--font-heading); font-weight: 800; font-size: clamp(1.9rem, 3.5vw, 2.8rem); line-height: 1.1; letter-spacing: -0.025em; }
.ac-h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem; line-height: 1.3; letter-spacing: -0.01em; }
.ac-lead { font-size: clamp(1.02rem, 1.4vw, 1.15rem); line-height: 1.6; color: var(--muted); max-width: 38rem; }
.ac-muted { color: var(--muted); }
.ac-section { padding-block: clamp(3.5rem, 7vw, 6rem); }
.ac-head { display: flex; justify-content: space-between; align-items: end; gap: 1rem 2rem; flex-wrap: wrap; margin-bottom: clamp(1.5rem, 4vw, 2.5rem); }
.ac-head > div { display: grid; gap: .6rem; max-width: 42rem; }

.ac-btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; min-height: 48px; padding: .7rem 1.25rem; border-radius: var(--radius-btn); border: 2px solid var(--primary); background: var(--primary); color: var(--on-primary); font-family: var(--font-heading); font-weight: 700; font-size: .95rem; text-decoration: none; cursor: pointer; }
.ac-btn:hover { background: #36357F; border-color: #36357F; }
.ac-btn svg { width: 18px; height: 18px; }
.ac-btn--gold { background: var(--secondary); border-color: var(--secondary); color: var(--on-secondary); }
.ac-btn--gold:hover { background: #F4C866; border-color: #F4C866; }
.ac-btn--line { background: var(--surface); color: var(--primary-ink); }
.ac-btn--line:hover { background: #ECEBFA; color: var(--primary-ink); }
.ac-btn--ghost { background: transparent; border-color: rgba(255, 255, 255, .55); color: #fff; }
.ac-btn--ghost:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }
.ac-btn--sm { min-height: 40px; padding: .4rem .85rem; font-size: .88rem; }
.ac-link { color: var(--primary-ink); font-weight: 700; display: inline-flex; gap: .35rem; align-items: center; text-underline-offset: .25em; }
.ac-link svg { width: 16px; height: 16px; }
.ac-pill { display: inline-flex; align-items: center; gap: .3rem; font-size: .8rem; font-weight: 600; padding: .25rem .6rem; border-radius: 999px; background: #ECEBFA; color: var(--primary-ink); }
.ac-pill--gold { background: #FBEFD2; color: #6B4A00; }
.ac-pill svg { width: 14px; height: 14px; }

/* Header */
.ac-header { position: sticky; top: 0; z-index: 40; background: var(--surface); border-bottom: 1px solid var(--border); }
.ac-header__row { display: flex; align-items: center; gap: 1.5rem; min-height: 70px; }
.ac-logo { display: inline-flex; align-items: center; gap: .55rem; text-decoration: none; margin-right: auto; font-family: var(--font-heading); font-weight: 800; font-size: 1.2rem; letter-spacing: -0.02em; }
.ac-logo i { width: 34px; height: 34px; border-radius: 10px; background: var(--primary); position: relative; }
.ac-logo i::before { content: ""; position: absolute; left: 8px; right: 8px; top: 11px; height: 3px; background: var(--secondary); border-radius: 2px; box-shadow: 0 6px 0 #fff, 0 12px 0 #fff; }
.ac-logo small { font-weight: 500; color: var(--muted); font-size: .78rem; }
.ac-nav { display: flex; gap: .3rem; }
.ac-nav a { text-decoration: none; font-weight: 600; font-size: .95rem; padding: .5rem .75rem; border-radius: 8px; }
.ac-nav a:hover, .ac-nav a[aria-current] { background: #ECEBFA; color: var(--primary-ink); }
.ac-header .ac-btn { min-height: 42px; }
.ac-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 10px; background: var(--surface); place-items: center; }
.ac-toggle svg { width: 22px; height: 22px; }
.ac-mobile { display: none; }
@media (max-width: 920px) {
  .ac-nav { display: none; }
  .ac-toggle { display: inline-grid; }
  .is-nav-open .ac-mobile { display: grid; gap: .15rem; padding-block: .25rem 1rem; }
  .ac-mobile a { text-decoration: none; padding: .75rem .5rem; border-radius: 8px; font-weight: 600; }
}
@media (max-width: 520px) { .ac-header .ac-btn { display: none; } }

/* Hero */
.ac-hero { background: var(--surface-2); color: #fff; overflow: hidden; }
.ac-hero__grid { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; padding-block: clamp(3rem, 7vw, 5.5rem); }
.ac-hero__text { display: grid; gap: 1.4rem; }
.ac-hero .ac-kicker { color: var(--secondary); }
.ac-hero .ac-lead { color: #D3D2F0; }
.ac-hero__actions { display: flex; gap: .7rem; flex-wrap: wrap; }
.ac-hero__stats { display: flex; gap: 2rem; flex-wrap: wrap; padding-top: 1.2rem; border-top: 1px solid rgba(255, 255, 255, .18); }
.ac-hero__stats b { display: block; font-family: var(--font-heading); font-size: 1.6rem; color: var(--secondary); }
.ac-hero__stats span { font-size: .88rem; color: #D3D2F0; }
.ac-hero__visual { position: relative; padding: 0 0 2.5rem 2.5rem; }
.ac-hero__visual > img { width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; border-radius: 20px; }
.ac-lessoncard { position: absolute; left: 0; bottom: 0; width: min(86%, 340px); background: var(--surface); color: var(--text); border-radius: 16px; padding: 1rem 1.1rem; box-shadow: 0 24px 50px -24px rgba(0, 0, 0, .55); display: grid; gap: .5rem; }
.ac-lessoncard small { color: var(--muted); font-size: .8rem; }
.ac-lessoncard b { font-family: var(--font-heading); line-height: 1.25; }
.ac-bar { height: 6px; border-radius: 6px; background: #ECEBFA; overflow: hidden; }
.ac-bar i { display: block; height: 100%; background: var(--primary); border-radius: 6px; }
.ac-hero__tag { position: absolute; right: 1rem; top: 1rem; }
@media (max-width: 860px) { .ac-hero__grid { grid-template-columns: 1fr; } .ac-hero__visual { padding: 0 0 2rem 1rem; } }

/* Pathways */
.ac-paths { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.ac-path { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.35rem; display: grid; gap: .6rem; align-content: start; text-decoration: none; transition: border-color .2s, box-shadow .2s; }
.ac-path:hover { border-color: var(--primary); box-shadow: 0 16px 36px -26px rgba(29, 28, 68, .5); }
.ac-path__num { width: 40px; height: 40px; border-radius: 12px; background: #FBEFD2; color: #6B4A00; display: grid; place-items: center; font-family: var(--font-heading); font-weight: 800; }
.ac-path .ac-link { margin-top: .2rem; }
@media (max-width: 820px) { .ac-paths { grid-template-columns: 1fr; } }

/* Course cards */
.ac-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.ac-card { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: grid; grid-template-rows: auto 1fr; }
.ac-card__img { position: relative; }
.ac-card__img img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.ac-card__img .ac-pill { position: absolute; left: .75rem; top: .75rem; background: rgba(255, 255, 255, .95); }
.ac-card__body { padding: 1.2rem; display: grid; gap: .7rem; grid-template-rows: auto auto 1fr auto; }
.ac-card h3 a { text-decoration: none; }
.ac-card h3 a::after { content: ""; position: absolute; inset: 0; }
.ac-card__stats { display: flex; flex-wrap: wrap; gap: .3rem 1rem; font-size: .88rem; color: var(--muted); }
.ac-card__stats span { display: inline-flex; gap: .3rem; align-items: center; }
.ac-card__stats svg { width: 15px; height: 15px; }
.ac-card__foot { display: flex; justify-content: space-between; align-items: center; gap: .6rem; padding-top: .8rem; border-top: 1px solid var(--border); }
.ac-card__foot b { font-family: var(--font-heading); font-size: 1.15rem; }
.ac-card__foot .ac-btn { position: relative; z-index: 1; }
@media (max-width: 960px) { .ac-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .ac-grid { grid-template-columns: 1fr; } }

/* Approach */
.ac-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; counter-reset: s; }
.ac-steps li { counter-increment: s; background: var(--surface); border-radius: var(--radius); padding: 1.3rem; display: grid; gap: .5rem; align-content: start; border-top: 4px solid var(--primary); }
.ac-steps li::before { content: "Step " counter(s); font-family: var(--font-heading); font-weight: 700; font-size: .8rem; color: var(--primary-ink); }
@media (max-width: 900px) { .ac-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .ac-steps { grid-template-columns: 1fr; } }
.ac-approach { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(1.5rem, 4vw, 3rem); align-items: center; margin-bottom: 2rem; }
.ac-approach img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--radius); }
@media (max-width: 820px) { .ac-approach { grid-template-columns: 1fr; } }

/* Course preview + curriculum */
.ac-preview { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(1.5rem, 4vw, 3rem); align-items: start; background: var(--surface); border: 1px solid var(--border); border-radius: calc(var(--radius) + 8px); padding: clamp(1.25rem, 3.5vw, 2.5rem); }
.ac-preview__side { display: grid; gap: 1rem; }
.ac-preview__side img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }
@media (max-width: 860px) { .ac-preview { grid-template-columns: 1fr; } }
.ac-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .5rem; margin: 0; }
.ac-stats div { background: #F4F3FC; border-radius: 12px; padding: .7rem .8rem; }
.ac-stats dt { font-size: .78rem; color: var(--muted); font-weight: 600; }
.ac-stats dd { margin: .1rem 0 0; font-family: var(--font-heading); font-weight: 800; font-size: 1.05rem; }
@media (max-width: 520px) { .ac-stats { grid-template-columns: 1fr 1fr; } }

.ac-curr { display: grid; gap: .6rem; }
.ac-curr__top { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.ac-curr__top button { background: none; border: 0; color: var(--primary-ink); font-weight: 700; cursor: pointer; text-decoration: underline; text-underline-offset: .2em; min-height: 44px; font: inherit; font-weight: 700; }
.ac-mod { border: 1px solid var(--border); border-radius: 12px; background: var(--surface); }
.ac-mod summary { list-style: none; cursor: pointer; display: grid; grid-template-columns: 2.4rem minmax(0, 1fr) auto 1.2rem; gap: .8rem; align-items: center; padding: .9rem 1rem; }
.ac-mod summary::-webkit-details-marker { display: none; }
.ac-mod summary::after { content: ""; width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); transition: transform .2s; justify-self: center; }
.ac-mod[open] summary::after { transform: rotate(-135deg); }
.ac-mod__n { width: 2.4rem; height: 2.4rem; border-radius: 10px; background: #ECEBFA; color: var(--primary-ink); display: grid; place-items: center; font-family: var(--font-heading); font-weight: 800; }
.ac-mod[open] .ac-mod__n { background: var(--primary); color: #fff; }
.ac-mod summary b { font-family: var(--font-heading); display: block; }
.ac-mod summary small { color: var(--muted); font-size: .85rem; }
.ac-mod summary > span:last-of-type { font-size: .85rem; color: var(--muted); white-space: nowrap; }
.ac-lessons { list-style: none; margin: 0; padding: 0 1rem .8rem; display: grid; }
.ac-lessons li { display: grid; grid-template-columns: 1.4rem minmax(0, 1fr) auto; gap: .7rem; align-items: center; padding: .6rem 0; border-top: 1px solid var(--border); font-size: .95rem; }
.ac-lessons li svg { width: 18px; height: 18px; color: var(--muted); }
.ac-lessons time { color: var(--muted); font-size: .85rem; font-variant-numeric: tabular-nums; }
.ac-lessons .ac-btn { min-height: 36px; padding: .25rem .7rem; font-size: .82rem; }
.ac-lessons .is-preview svg { color: var(--primary-ink); }
@media (max-width: 520px) { .ac-mod summary { grid-template-columns: 2.4rem minmax(0, 1fr) 1.2rem; } .ac-mod summary > span:last-of-type { display: none; } }

/* Lesson reader dialog */
#ac-lesson.xy-dialog { width: min(760px, calc(100vw - 2rem)); }
.ac-reader { display: grid; gap: 1.25rem; }
.ac-reader__meta { display: flex; gap: .5rem; flex-wrap: wrap; }
.ac-reader h3 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: .3rem; }
.ac-reader p { line-height: 1.75; max-width: 40rem; }
.ac-reader__example { background: #FBEFD2; border-left: 4px solid var(--secondary); border-radius: 0 12px 12px 0; padding: 1rem 1.1rem; }
.ac-reader__try { background: #ECEBFA; border-radius: 12px; padding: 1rem 1.1rem; }
.ac-reader textarea { margin-top: .6rem; }

/* FAQ / forms */
.ac-acc { display: grid; gap: .5rem; }
.ac-acc details { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; }
.ac-acc summary { list-style: none; cursor: pointer; padding: 1rem 1.1rem; font-family: var(--font-heading); font-weight: 700; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.ac-acc summary::-webkit-details-marker { display: none; }
.ac-acc summary::after { content: "+"; width: 28px; height: 28px; border-radius: 8px; background: #ECEBFA; color: var(--primary-ink); display: grid; place-items: center; flex: none; }
.ac-acc details[open] summary::after { content: "−"; }
.ac-acc details > p { padding: 0 1.1rem 1rem; color: var(--muted); }
.ac-two { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
@media (max-width: 860px) { .ac-two { grid-template-columns: 1fr; } }
.ac-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(1.2rem, 3vw, 1.8rem); display: grid; gap: 1rem; }
[data-theme="education"] .xy-input { border-radius: 10px; }
.ac-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
@media (max-width: 540px) { .ac-row { grid-template-columns: 1fr; } }
.ac-ok { display: flex; gap: .5rem; align-items: flex-start; color: var(--primary-ink); font-weight: 700; }
.ac-ok svg { width: 20px; height: 20px; flex: none; margin-top: .15rem; }

/* CTA band */
.ac-band { background: var(--surface-2); color: #fff; border-radius: calc(var(--radius) + 10px); padding: clamp(1.75rem, 4vw, 3rem); display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.ac-band p { color: #D3D2F0; max-width: 36rem; }

/* Enrol dialog */
.ac-enrol { display: grid; gap: 1.1rem; }
.ac-enrol__course { display: grid; grid-template-columns: 96px minmax(0, 1fr); gap: .9rem; align-items: center; background: #F4F3FC; border-radius: 12px; padding: .7rem; }
.ac-enrol__course img { width: 96px; height: 72px; object-fit: cover; border-radius: 8px; }
.ac-enrol fieldset { border: 0; padding: 0; margin: 0; min-width: 0; display: grid; gap: .45rem; }
.ac-enrol legend { font-weight: 600; font-size: .9rem; margin-bottom: .45rem; padding: 0; }
.ac-choices { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .5rem; }
.ac-choices label { position: relative; display: grid; gap: .1rem; padding: .7rem .8rem; border: 1.5px solid var(--border); border-radius: 12px; cursor: pointer; }
.ac-choices input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.ac-choices b { font-family: var(--font-heading); }
.ac-choices span { font-size: .82rem; color: var(--muted); }
.ac-choices label:has(input:checked) { border-color: var(--primary); background: #F4F3FC; }
.ac-choices label:has(input:focus-visible) { outline: 2px solid var(--focus); outline-offset: 2px; }
@media (max-width: 520px) { .ac-choices { grid-template-columns: 1fr; } }
.ac-sum { margin: 0; display: grid; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.ac-sum div { display: flex; justify-content: space-between; gap: 1rem; padding: .6rem .9rem; }
.ac-sum div + div { border-top: 1px solid var(--border); }
.ac-sum dt { color: var(--muted); }
.ac-sum dd { margin: 0; font-weight: 600; text-align: right; }
.ac-sum .is-total { background: #F4F3FC; }
.ac-sum .is-total dd { font-family: var(--font-heading); font-weight: 800; font-size: 1.15rem; }

/* Collection */
.ac-pagehead { background: var(--surface); border-bottom: 1px solid var(--border); padding-block: clamp(2rem, 5vw, 3.25rem); }
.ac-crumbs { display: flex; gap: .45rem; flex-wrap: wrap; font-size: .88rem; color: var(--muted); margin-bottom: .8rem; }
.ac-crumbs a { color: inherit; }
.ac-catalog { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 2rem; align-items: start; }
.ac-filters { position: sticky; top: 90px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.1rem; display: grid; gap: 1.2rem; }
.ac-filters fieldset { border: 0; padding: 0; margin: 0; display: grid; gap: .35rem; }
.ac-filters legend { font-family: var(--font-heading); font-weight: 700; margin-bottom: .4rem; padding: 0; }
.ac-filters label { display: flex; align-items: center; gap: .6rem; min-height: 40px; cursor: pointer; }
.ac-filters input { width: 18px; height: 18px; accent-color: var(--primary); margin: 0; }
.ac-filters label span { margin-left: auto; color: var(--muted); font-size: .85rem; }
.ac-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.ac-toolbar select { width: auto; min-width: 12rem; }
.ac-catalog .ac-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ac-empty { background: var(--surface); border: 1px dashed var(--border); border-radius: var(--radius); padding: 2.5rem 1rem; text-align: center; display: grid; gap: .8rem; justify-items: center; }
.ac-filterbtn { display: none; }
@media (max-width: 860px) {
  .ac-catalog { grid-template-columns: 1fr; }
  .ac-filters { position: static; grid-template-columns: 1fr 1fr; }
  .ac-filters > :last-child { grid-column: 1 / -1; }
}
@media (max-width: 600px) { .ac-catalog .ac-grid { grid-template-columns: 1fr; } }

/* Detail */
.ac-dhead { background: var(--surface-2); color: #fff; padding-block: clamp(2rem, 5vw, 3.5rem); }
.ac-dhead .ac-crumbs { color: #D3D2F0; }
.ac-dhead .ac-lead { color: #D3D2F0; }
.ac-dlayout { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.ac-dhead .ac-dlayout { align-items: center; }
.ac-buy { position: sticky; top: 90px; background: var(--surface); border: 1px solid var(--border); border-radius: calc(var(--radius) + 4px); overflow: hidden; display: grid; box-shadow: 0 24px 50px -34px rgba(29, 28, 68, .5); }
.ac-buy img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.ac-buy__body { padding: 1.2rem; display: grid; gap: .8rem; }
.ac-buy__price { font-family: var(--font-heading); font-weight: 800; font-size: 2rem; }
.ac-buy .ac-btn { width: 100%; }
.ac-buy ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .4rem; font-size: .92rem; }
.ac-buy li { display: flex; gap: .5rem; }
.ac-buy li svg { width: 17px; height: 17px; flex: none; margin-top: .15rem; color: var(--primary-ink); }
@media (max-width: 900px) { .ac-dlayout { grid-template-columns: 1fr; } .ac-buy { position: static; } .ac-dhead .ac-buy { display: none; } }
.ac-mobilebuy { display: none; }
@media (max-width: 900px) { .ac-mobilebuy { display: grid; } }
.ac-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ac-list { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem; display: grid; gap: .6rem; align-content: start; }
.ac-list ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .45rem; }
.ac-list li { display: flex; gap: .5rem; }
.ac-list li svg { width: 18px; height: 18px; flex: none; margin-top: .15rem; color: var(--primary-ink); }
@media (max-width: 600px) { .ac-lists { grid-template-columns: 1fr; } }
.ac-outcome { background: #FBEFD2; border-radius: var(--radius); padding: 1.2rem 1.3rem; display: grid; gap: .3rem; }
.ac-outcome b { font-family: var(--font-heading); }
.ac-dgal { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: .8rem; }
.ac-dgal figure { margin: 0; display: grid; gap: .4rem; }
.ac-dgal button { padding: 0; border: 0; background: none; border-radius: 12px; overflow: hidden; aspect-ratio: 4 / 3; cursor: zoom-in; display: grid; }
.ac-dgal img { width: 100%; height: 100%; object-fit: cover; }
.ac-dgal figcaption { font-size: .85rem; color: var(--muted); }

/* Footer */
.ac-footer { background: var(--surface); border-top: 1px solid var(--border); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; margin-top: clamp(2rem, 5vw, 3rem); }
.ac-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); margin-bottom: 1.5rem; }
.ac-footer h3 { font-family: var(--font-heading); font-size: .92rem; margin-bottom: .6rem; }
.ac-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .4rem; }
.ac-footer a { color: inherit; }
@media (max-width: 800px) { .ac-footer__grid { grid-template-columns: 1fr 1fr; } .ac-footer__grid > :first-child { grid-column: 1 / -1; } }
@media (max-width: 900px) { .ac-deskbuy { display: none; } }
