/* ============================================================
   3@1 STORE TEMPLATE — layer on top of stark.css
   Store-level components: product cards, contact info, hours,
   courier quote widget, nav dropdowns, FAQ, price tables.
   ============================================================ */

/* ---- nav dropdown (Courier / Printing groups) ---- */
.has-sub { position: relative; }
.has-sub > a::after { content: " ▾"; font-size: .7em; opacity: .7; }
.sub {
  list-style: none; margin: 0; padding: .45rem;
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  min-width: 230px; border-radius: 14px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(14px);
  border: 1px solid rgba(0,49,121,.14); box-shadow: 0 14px 34px rgba(4,18,51,.18);
  opacity: 0; visibility: hidden; translate: 0 6px; transition: .18s ease;
}
.has-sub:hover .sub, .has-sub:focus-within .sub { opacity: 1; visibility: visible; translate: 0 0; }
.sub a { display: block; padding: .55rem .9rem; border-radius: 9px; white-space: nowrap; }
@media (max-width: 1080px) {
  /* fullscreen menu: flatten groups */
  .has-sub > a { display: none; }
  .sub {
    position: static; transform: none; opacity: 1; visibility: visible; translate: 0;
    background: none; border: 0; box-shadow: none; backdrop-filter: none; padding: 0; min-width: 0;
  }
  .sub li { margin: 0; }
}

/* ---- product showcase ---- */
.pgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.pcard {
  display: flex; flex-direction: column; border-radius: 18px; overflow: hidden;
  background: rgba(255,255,255,.86); backdrop-filter: blur(8px);
  border: 1px solid rgba(0,49,121,.12); box-shadow: 0 10px 26px rgba(4,18,51,.10);
  transition: translate .2s ease, box-shadow .2s ease;
}
.pcard:hover { translate: 0 -4px; box-shadow: 0 18px 38px rgba(4,18,51,.16); }
.pcard__imgwrap { display: block; aspect-ratio: 1; overflow: hidden; }
.pcard__imgwrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: scale .3s ease; }
.pcard:hover .pcard__imgwrap img { scale: 1.05; }
.pcard__body { display: flex; flex-direction: column; gap: .45rem; padding: 1rem 1.1rem 1.2rem; flex: 1; }
.pcard__body h3 { font-family: var(--font-d); text-transform: uppercase; font-size: 1.25rem; margin: 0; color: var(--navy); }
.pcard__blurb { font-size: .84rem; margin: 0; color: rgba(10,21,48,.72); flex: 1; }
.pcard__price { font-weight: 800; color: var(--red); margin: 0; }
.pcard__price span { font-weight: 600; font-size: .72rem; color: rgba(10,21,48,.55); }
.pcard__cta { justify-content: center; }
.pcard__more { font-size: .8rem; font-weight: 700; text-align: center; color: var(--navy); }
@media (max-width: 1080px) { .pgrid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px)  { .pgrid { grid-template-columns: 1fr; } }

/* ---- store info block (contact section) ---- */
.sinfo { font-style: normal; margin: 1.2rem 0 1.6rem; display: grid; gap: .55rem; }
.sinfo__row { display: flex; gap: .6rem; align-items: flex-start; margin: 0; }
.sinfo__row svg { width: 20px; height: 20px; flex: none; margin-top: .15rem; color: var(--yellow); }
.sinfo__row a { color: #fff; font-weight: 700; }
.sinfo__h { font-family: var(--font-d); text-transform: uppercase; font-size: 1.15rem; margin: 1.4rem 0 .5rem; }
.hours { border-collapse: collapse; font-size: .88rem; }
.hours td { padding: .3rem 1.4rem .3rem 0; border-bottom: 1px dashed rgba(255,255,255,.18); }
.hours td:last-child { font-weight: 700; }
.tbc { font-style: normal; font-size: .72rem; font-weight: 700; color: var(--yellow); text-transform: uppercase; letter-spacing: .04em; }
.ssec--light .tbc { color: var(--orange); }

/* ---- courier quote widget ---- */
.qw {
  border-radius: 20px; padding: 1.6rem;
  background: rgba(4,18,51,.55); backdrop-filter: blur(12px);
  border: 1px solid rgba(0,174,239,.25);
}
.qw h3 { font-family: var(--font-d); text-transform: uppercase; font-size: 1.5rem; margin: 0 0 .3rem; }
.qw__sub { font-size: .86rem; color: rgba(255,255,255,.65); margin: 0 0 1.1rem; }
.qw__row { margin-bottom: 1rem; }
.qw__row > label { display: block; font-weight: 700; font-size: .82rem; margin-bottom: .4rem; color: rgba(255,255,255,.8); }
.qw__row input {
  width: 100%; padding: .7rem .9rem; border-radius: 10px; font: inherit; color: #fff;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.22);
}
.qw__select {
  width: 100%; padding: .7rem .9rem; border-radius: 10px; font: inherit; color: #fff;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.22);
}
.qw__select option { color: #0a1530; }
.qw__grid--one { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; }
.qw__grid--one .qw__opt { padding: 1.2rem; }
.qw__grid--one .qw__price { font-size: 1.5rem; }
.qw__chips { display: flex; flex-wrap: wrap; gap: .45rem; }
.qw__chips .chip { cursor: pointer; font: inherit; font-size: .8rem; }
.qw__chips .chip.is-on { background: linear-gradient(120deg, var(--red), var(--red-hot)); border-color: transparent; color: #fff; }
.qw__custom .field input { color: #fff; }
.qw__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin: 1.1rem 0 .6rem; }
.qw__opt {
  border-radius: 14px; padding: .9rem; text-align: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
}
.qw__opt h4 { font-family: var(--font-d); text-transform: uppercase; font-size: 1rem; margin: 0; }
.qw__days { font-size: .72rem; color: rgba(255,255,255,.55); margin: .15rem 0 .5rem; }
.qw__price { font-weight: 800; font-size: 1.15rem; color: var(--yellow); margin: 0; }
.qw__fine { font-size: .72rem; color: rgba(255,255,255,.45); margin: .4rem 0 1rem; }
.qw__actions { display: flex; gap: .7rem; flex-wrap: wrap; }
@media (max-width: 680px) { .qw__grid { grid-template-columns: 1fr; } .qw { padding: 1.2rem; } }

/* ---- 3-step strip (how it works) ---- */
.steps3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; counter-reset: step; }
.step3 { text-align: center; padding: 1.4rem 1.1rem; border-radius: 18px;
  background: rgba(255,255,255,.86); border: 1px solid rgba(0,49,121,.12); box-shadow: 0 10px 26px rgba(4,18,51,.08); }
.step3 img { width: 74px; height: 74px; object-fit: contain; margin-bottom: .6rem; }
.step3 h3 { font-family: var(--font-d); text-transform: uppercase; color: var(--navy); font-size: 1.2rem; margin: .2rem 0 .4rem; }
.step3 p { font-size: .86rem; color: rgba(10,21,48,.72); margin: 0; }
@media (max-width: 680px) { .steps3 { grid-template-columns: 1fr; } }

/* ---- FAQ ---- */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: .7rem; }
.faq details {
  border-radius: 14px; background: rgba(255,255,255,.86);
  border: 1px solid rgba(0,49,121,.12); padding: .9rem 1.2rem;
}
.faq summary { font-weight: 800; color: var(--navy); cursor: pointer; }
.faq details p { font-size: .9rem; color: rgba(10,21,48,.78); margin: .6rem 0 0; }
.ssec--deep .faq details { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.16); }
.ssec--deep .faq summary { color: #fff; }
.ssec--deep .faq details p { color: rgba(255,255,255,.75); }

/* ---- price cards (photo sizes / stamps) ---- */
.prices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.price-card {
  text-align: center; padding: 1.5rem 1rem; border-radius: 18px;
  background: rgba(255,255,255,.86); border: 1px solid rgba(0,49,121,.12); box-shadow: 0 10px 26px rgba(4,18,51,.08);
}
.price-card h3 { font-family: var(--font-d); text-transform: uppercase; color: var(--navy); margin: 0 0 .2rem; font-size: 1.25rem; }
.price-card .sz { font-size: .8rem; color: rgba(10,21,48,.6); margin: 0 0 .6rem; }
.price-card .amt { font-weight: 800; font-size: 1.5rem; color: var(--red); margin: 0; }
.price-card .amt span { display: block; font-size: .7rem; font-weight: 600; color: rgba(10,21,48,.5); }
@media (max-width: 680px) { .prices { grid-template-columns: 1fr; } }

/* ---- stamp size chips ---- */
.sizes { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.sizes .chip { font-size: .84rem; }
.ssec--light .chip {
  color: var(--navy); border-color: rgba(0,49,121,.3);
  background: rgba(0,49,121,.07);
}

/* ---- generic split media section ---- */
.media-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: center; }
.media-split img { width: 100%; border-radius: 18px; box-shadow: 0 16px 40px rgba(4,18,51,.22); }
@media (max-width: 900px) { .media-split { grid-template-columns: 1fr; } }

/* ---- page-hero art: bigger, overlapping the next section ---- */
.page-hero__art img { width: min(100%, 540px); }
.page-hero--overlap .page-hero__art img { margin-bottom: -3.4rem; }
@media (max-width: 900px) {
  .page-hero__art img { width: min(78vw, 420px); }
  .page-hero--overlap .page-hero__art img { margin-bottom: -2.4rem; }
}

/* ---- courier partner logos ---- */
.partners-row { display: flex; gap: 1.4rem; align-items: center; flex-wrap: wrap; }
.partners-row img { height: 34px; width: auto; background: #fff; padding: 6px 10px; border-radius: 8px; }

/* ============================================================
   MARATHON ADDITIONS — nav location lockup, hero slider,
   futuristic services grid
   ============================================================ */

/* ---- nav store-location lockup ---- */
.snav__brand { display: flex; align-items: center; gap: .7rem; }
.snav__loc {
  display: inline-flex; align-items: center; gap: .42rem;
  padding-left: .7rem; border-left: 2px solid rgba(0,49,121,.18);
  font-family: var(--font-d); text-transform: uppercase; line-height: 1;
}
.snav__loc i {
  width: 8px; height: 8px; border-radius: 50%; flex: none;
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(213,35,47,.18);
  animation: locpulse 2.4s ease-in-out infinite;
}
@keyframes locpulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(213,35,47,.18); }
  50%      { box-shadow: 0 0 0 6px rgba(213,35,47,.06); }
}
.snav__loc b { font-weight: 700; font-size: 1.02rem; color: var(--navy); letter-spacing: .04em; white-space: nowrap; }
@media (max-width: 1080px) { .snav__loc { display: none; } } /* burger layouts: name lives in menu */
.menu-loc {
  display: block; text-align: center; margin-top: .5rem;
  font-family: var(--font-d); text-transform: uppercase; letter-spacing: .14em;
  font-size: 1rem; color: var(--yellow);
}

/* ---- home hero slider ---- */
.hslides { display: grid; }
.hslide {
  grid-area: 1 / 1; display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center;
  opacity: 0; visibility: hidden; transition: opacity .55s ease, visibility .55s;
}
.hslide.is-on { opacity: 1; visibility: visible; }
.hslide__copy .pill { margin-bottom: .4rem; }
.hslide.is-on .hslide__copy > * { animation: hsUp .6s cubic-bezier(.2,.7,.2,1) both; }
.hslide.is-on .hslide__copy > *:nth-child(2) { animation-delay: .1s; }
.hslide.is-on .hslide__copy > *:nth-child(3) { animation-delay: .2s; }
.hslide.is-on .hslide__copy > *:nth-child(4) { animation-delay: .3s; }
@keyframes hsUp { from { opacity: 0; translate: 0 26px; } to { opacity: 1; translate: 0 0; } }
.hslide__art { margin: 0; }
a.hslide__art img {
  display: block; width: min(100%, 560px); margin-inline: auto;
  border: 6px solid #fff; border-radius: 16px; rotate: 2.5deg;
  box-shadow: 0 30px 70px -28px rgba(0,0,0,.75);
}
.hslide__art--stage { text-align: center; }
.hslide__art--stage .shero__logo { width: min(100%, 420px); }
.hslide.is-on .hslide__art { animation: hsArt .7s cubic-bezier(.2,.7,.2,1) both .15s; }
@keyframes hsArt { from { opacity: 0; translate: 40px 0; rotate: 2deg; } to { opacity: 1; translate: 0 0; rotate: 0deg; } }
.hslider__ctrl { display: flex; align-items: center; gap: 1rem; margin-top: 1.6rem; }
.hslider__dots { display: flex; gap: .5rem; }
.hslider__dot {
  width: 34px; height: 6px; border-radius: 999px; border: 0; cursor: pointer;
  background: rgba(255,255,255,.25); transition: background .3s; padding: 0; position: relative; overflow: hidden;
}
.hslider__dot.is-on { background: rgba(255,255,255,.35); }
.hslider__dot.is-on::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  transform-origin: left; animation: dotfill var(--hs-interval, 6.5s) linear forwards;
}
@keyframes dotfill { from { scale: 0 1; } to { scale: 1 1; } }
.hslider__arrow {
  width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
  border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.08);
  color: #fff; font-size: 1.15rem; line-height: 1; backdrop-filter: blur(6px);
  transition: background .25s;
}
.hslider__arrow:hover { background: rgba(255,255,255,.18); }
@media (max-width: 900px) {
  .hslide { grid-template-columns: 1fr; text-align: center; }
  .hslide__copy .shero__actions { justify-content: center; }
  .hslide__art img { width: min(82vw, 440px); }
  .hslider__ctrl { justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .hslide.is-on .hslide__copy > *, .hslide.is-on .hslide__art { animation: none; }
  .hslider__dot.is-on::after { animation: none; scale: 1 1; }
}

/* ---- futuristic services grid (STARK bento) ---- */
@property --sga { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
.sgrid {
  display: grid; gap: 1.1rem;
  grid-template-columns: repeat(6, 1fr);
}
.sgcard {
  --sga: 0deg;
  position: relative; grid-column: span 2; min-height: 240px;
  border-radius: 20px; padding: 1.35rem; display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden; isolation: isolate; text-decoration: none;
  border: 1px solid transparent;
  background:
    linear-gradient(180deg, rgba(6,20,52,.92), rgba(4,14,40,.96)) padding-box,
    conic-gradient(from var(--sga), rgba(0,174,239,.0) 0%, rgba(0,174,239,.85) 12%, rgba(255,197,16,.9) 22%, rgba(0,174,239,0) 34%) border-box;
  transition: translate .3s ease, box-shadow .3s ease;
}
@supports (animation-timeline: none) or (not (animation-timeline: none)) {
  .sgcard { animation: sgspin 7s linear infinite paused; }
}
.sgcard:hover { animation-play-state: running; translate: 0 -5px; box-shadow: 0 22px 50px -18px rgba(0,10,40,.8); }
@keyframes sgspin { to { --sga: 360deg; } }
.sgcard--wide { grid-column: span 3; min-height: 280px; }
.sgcard--full { grid-column: 1 / -1; min-height: 240px; }
.sgcard__bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  transition: scale .6s cubic-bezier(.2,.7,.2,1), filter .4s;
  filter: saturate(.9);
}
.sgcard:hover .sgcard__bg { scale: 1.07; filter: saturate(1.1); }
.sgcard::before { /* legibility fade — opaque bottom-left → transparent top-right */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top right, rgba(2,14,43,.95) 0%, rgba(2,14,43,.78) 32%, rgba(2,14,43,.34) 60%, transparent 82%);
}
.sgcard::after { /* scan sweep on hover */
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 42%, rgba(0,174,239,.22) 50%, transparent 58%);
  translate: -120% 0; transition: translate .001s;
}
.sgcard:hover::after { translate: 120% 0; transition: translate .8s ease; }
.sgcard__tag {
  position: absolute; top: 1.05rem; left: 1.25rem;
  font-family: "SF Mono", ui-monospace, monospace; font-size: .64rem; letter-spacing: .16em;
  text-transform: uppercase; color: #7fd8ff; text-shadow: 0 0 12px rgba(0,174,239,.6);
  background: rgba(2,14,43,.6); padding: .3rem .55rem; border-radius: 7px;
  backdrop-filter: blur(6px); border: 1px solid rgba(127,216,255,.22);
}
.sgcard__corner { position: absolute; width: 16px; height: 16px; border-color: rgba(127,216,255,.55); border-style: solid; }
.sgcard__corner--tl { top: 10px; left: 10px; border-width: 2px 0 0 2px; border-radius: 6px 0 0 0; }
.sgcard__corner--br { bottom: 10px; right: 10px; border-width: 0 2px 2px 0; border-radius: 0 0 6px 0; }
.sgcard h3 {
  font-family: var(--font-d); text-transform: uppercase; color: #fff;
  font-size: clamp(1.25rem, 1.6vw, 1.6rem); margin: 0 0 .25rem; line-height: 1;
}
.sgcard p { font-size: .82rem; color: rgba(255,255,255,.75); margin: 0 0 .7rem; max-width: 34ch; }
.sgcard__go {
  display: inline-flex; align-items: center; gap: .45rem; width: fit-content;
  font-weight: 800; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em;
  color: var(--yellow);
}
.sgcard__go::after { content: "→"; transition: translate .25s; }
.sgcard:hover .sgcard__go::after { translate: 5px 0; }
@media (max-width: 1080px) {
  .sgrid { grid-template-columns: 1fr 1fr; }
  .sgcard, .sgcard--wide { grid-column: span 1; min-height: 220px; }
  .sgcard--full { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .sgrid { grid-template-columns: 1fr; }
}

/* ---- slim hero (slider) ---- */
.shero--slim { min-height: 46vh; padding: 2rem 0 2.6rem; }
.shero--slim h1 { font-size: clamp(2rem, 4vw, 3.1rem); }
.shero--slim .shero__lead { margin-bottom: 1.2rem; }
.shero--slim a.hslide__art img { width: min(100%, 430px); }
.shero--slim .hslide__art--stage .shero__logo { width: min(100%, 300px); }
.shero--slim .shero__stage { scale: .74; transform-origin: top center; margin: -.6rem 0 -3.4rem; }
.shero--slim .hslider__ctrl { margin-top: 1rem; }
@media (max-width: 900px) {
  .shero--slim { min-height: auto; }
  .shero--slim a.hslide__art img { width: min(70vw, 360px); }
}

/* ---- type scale: hero H1 up, section H2 down + lighter ---- */
.shero--slim h1 { font-size: clamp(2.7rem, 5.2vw, 4.1rem); }
.ssec__title { font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 600; }
.page-hero h1 { font-size: clamp(2.6rem, 5.4vw, 4rem); }

/* ---- slider v2: full-bleed right image, faded into the navy ---- */
.shero--slim { position: relative; overflow: hidden; }
.hslide--bleed { display: flex; align-items: center; min-height: 340px; }
.hslide--bleed .hslide__copy { max-width: 50%; position: relative; z-index: 2; }
.hslide--bleed .hslide__art {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(56vw, 860px);
  display: block; margin: 0; z-index: 1;
}
.hslide--bleed .hslide__art img,
.shero--slim .hslide--bleed a.hslide__art img {
  width: 100%; height: 100%; object-fit: cover;
  border: 0; border-radius: 0; rotate: none; box-shadow: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 34%);
          mask-image: linear-gradient(90deg, transparent 0, #000 34%);
}
.hslide--bleed.is-on .hslide__art { animation: hsBleed .8s cubic-bezier(.2,.7,.2,1) both .1s; }
@keyframes hsBleed { from { opacity: 0; translate: 60px 0; } to { opacity: 1; translate: 0 0; } }
@media (max-width: 900px) {
  .hslide--bleed { display: block; min-height: 0; }
  .hslide--bleed .hslide__copy { max-width: none; }
  .hslide--bleed .hslide__art {
    position: static; width: calc(100% + 3rem); height: 230px; margin: 1.2rem -1.5rem -1rem;
  }
  .hslide--bleed .hslide__art img {
    -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 30%);
            mask-image: linear-gradient(180deg, transparent 0, #000 30%);
  }
}
@media (prefers-reduced-motion: reduce) { .hslide--bleed.is-on .hslide__art { animation: none; } }

/* slider art must anchor to the SECTION edges, not the container */
.shero--slim > .container { position: static; }

/* ---- fluid desktop nav: compress typography with viewport so the
       burger breakpoint (1080) is only needed near tablet sizes ---- */
@media (min-width: 1081px) {
  .snav__inner { gap: clamp(.4rem, 1.1vw, 1.3rem); }
  .snav__brand { gap: clamp(.35rem, .55vw, .7rem); }
  .snav__brand img { height: clamp(46px, 4vw, 60px); }
  .snav__loc { padding-left: clamp(.4rem, .65vw, .75rem); }
  .snav__loc b { font-size: clamp(.8rem, .75vw + .3rem, 1.1rem); }
  .snav__menu { gap: clamp(.05rem, .3vw, .4rem); }
  .snav__menu a {
    font-size: clamp(.68rem, .62vw + .28rem, .92rem);
    padding: .5rem clamp(.3rem, .6vw, .78rem);
  }
  .snav__menu a.snav__cta {
    font-size: clamp(.7rem, .62vw + .3rem, .94rem);
    padding: .55rem clamp(.7rem, 1vw, 1.35rem) !important;
  }
}

/* plain hero art: bare logo, no comic frame */
.page-hero__art--plain img {
  border: 0; border-radius: 0; rotate: none; box-shadow: none;
  width: min(100%, 240px); margin-bottom: 0 !important;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.35));
}

/* ---- quote request wizard (no prices — store replies manually) ---- */
.qz {
  border-radius: 20px; padding: 1.7rem;
  background: rgba(4,18,51,.55); backdrop-filter: blur(12px);
  border: 1px solid rgba(0,174,239,.25);
}
.qz__head h3 { font-family: var(--font-d); text-transform: uppercase; font-size: 1.5rem; margin: 0 0 .3rem; display: flex; align-items: center; gap: .5rem; }
.qz__head h3 svg { width: 26px; height: 26px; color: #35d07f; }
.qz__sub { font-size: .86rem; color: rgba(255,255,255,.65); margin: 0 0 1.2rem; }
.qz__steps {
  list-style: none; display: flex; gap: .4rem; padding: 0; margin: 0 0 1.4rem;
}
.qz__steps li {
  flex: 1; display: flex; align-items: center; gap: .5rem;
  padding: .45rem .6rem; border-radius: 10px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  color: rgba(255,255,255,.45); transition: .25s;
}
.qz__steps li b {
  width: 22px; height: 22px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-size: .72rem;
  background: rgba(255,255,255,.12); color: #fff;
}
.qz__steps li b svg { width: 12px; height: 12px; }
.qz__steps li.is-on { color: #fff; border-color: rgba(0,174,239,.5); background: rgba(0,174,239,.1); }
.qz__steps li.is-on b { background: linear-gradient(120deg, var(--yellow), var(--orange)); color: var(--navy); }
.qz__steps li.is-done { color: rgba(255,255,255,.7); }
.qz__steps li.is-done b { background: #35d07f; color: #04123a; }
.qz__step { display: none; }
.qz__step.is-on { display: block; animation: hsUp .4s cubic-bezier(.2,.7,.2,1) both; }
.qz__cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: .6rem; }
.qz__cards--row { grid-template-columns: repeat(3, 1fr); }
.qz__card {
  display: flex; flex-direction: column; align-items: center; gap: .25rem;
  padding: .9rem .5rem .75rem; border-radius: 14px; cursor: pointer; font: inherit;
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.85); transition: .2s; text-align: center;
}
.qz__card:hover { background: rgba(255,255,255,.1); translate: 0 -2px; }
.qz__card.is-on {
  border-color: var(--yellow); background: rgba(255,197,16,.1);
  box-shadow: 0 0 18px rgba(255,197,16,.18); color: #fff;
}
.qz__ico { width: 34px; height: 34px; color: #7fd8ff; }
.qz__card.is-on .qz__ico { color: var(--yellow); }
.qz__ico svg { width: 100%; height: 100%; }
.qz__card b { font-size: .82rem; }
.qz__cardsub { font-size: .66rem; color: rgba(255,255,255,.5); }
.qz__label { font-weight: 700; font-size: .82rem; margin: 1rem 0 .45rem; color: rgba(255,255,255,.8); }
.qz__custom { margin-top: .9rem; }
.qz .field input, .qz .field textarea { color: #fff; }
.qz__nav { display: flex; justify-content: space-between; align-items: center; gap: .8rem; margin-top: 1.2rem; }
.qz__send { display: flex; gap: .6rem; flex-wrap: wrap; }
.qz__send .btn svg, .qz__nav .btn svg { width: 15px; height: 15px; margin-right: .35rem; vertical-align: -2px; }
.qz__summary {
  display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; margin-top: .9rem;
  padding: .8rem 1rem; border-radius: 12px;
  background: rgba(0,174,239,.08); border: 1px dashed rgba(0,174,239,.35);
  font-size: .82rem;
}
.qz__summary span { display: inline-flex; gap: .45rem; align-items: baseline; }
.qz__summary i {
  font-style: normal; font-size: .64rem; text-transform: uppercase; letter-spacing: .1em;
  color: #7fd8ff;
}
.qz__fine { font-size: .72rem; color: rgba(255,255,255,.45); margin: .8rem 0 0; }
@media (max-width: 680px) {
  .qz { padding: 1.2rem; }
  .qz__cards { grid-template-columns: repeat(2, 1fr); }
  .qz__cards--row { grid-template-columns: 1fr; }
  .qz__steps li span { display: none; }
  .qz__steps li { justify-content: center; }
}

/* ===== Canon print-machine hero stage (slide 2) — glow + STARK brackets + rotating rings ===== */
.hslide--bleed .hslide__art--chero { display: grid; place-items: center; }
.chero__img {
  position: relative; z-index: 3;
  width: min(46vw, 600px) !important; height: auto !important; object-fit: contain !important;
  -webkit-mask-image: none !important; mask-image: none !important; border: 0 !important;
  filter: drop-shadow(0 26px 46px rgba(0,10,40,.55));
}
.hslide--bleed.is-on .hslide__art--chero .chero__img { animation: hsBleed .8s cubic-bezier(.2,.7,.2,1) both .1s; }
.chero__glow {
  position: absolute; z-index: 0; width: min(42vw, 560px); aspect-ratio: 1 / .82; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0,174,239,.5), rgba(0,174,239,.13) 46%, transparent 70%);
  filter: blur(5px);
}
.chero__ring { position: absolute; z-index: 1; border-radius: 50%; aspect-ratio: 1; pointer-events: none; }
.chero__ring--1 { width: min(38vw, 480px); border: 1.5px dashed rgba(0,174,239,.5); animation: spin 42s linear infinite; }
.chero__ring--2 { width: min(30vw, 380px); border: 1.5px solid rgba(255,197,16,.32); animation: spin 30s linear infinite reverse; }
.chero__corner {
  position: absolute; z-index: 4; width: 26px; height: 26px;
  border-color: rgba(127,216,255,.7); border-style: solid;
  filter: drop-shadow(0 0 6px rgba(0,174,239,.5));
}
.chero__corner--tl { top: 8%;  left: 9%;  border-width: 2px 0 0 2px; border-radius: 8px 0 0 0; }
.chero__corner--tr { top: 8%;  right: 9%; border-width: 2px 2px 0 0; border-radius: 0 8px 0 0; }
.chero__corner--bl { bottom: 10%; left: 9%;  border-width: 0 0 2px 2px; border-radius: 0 0 0 8px; }
.chero__corner--br { bottom: 10%; right: 9%; border-width: 0 2px 2px 0; border-radius: 0 0 8px 0; }
@media (prefers-reduced-motion: reduce) { .chero__ring { animation: none; } }
@media (max-width: 900px) {
  .chero__img { width: min(74vw, 380px) !important; }
  .chero__glow { width: min(80vw, 400px); }
  .chero__ring--1 { width: min(66vw, 340px); }
  .chero__ring--2 { width: min(54vw, 280px); }
  .chero__corner { width: 20px; height: 20px; }
}

/* ===== Courier dom/intl toggle + DHL box table ===== */
.ctoggle { display: flex; width: fit-content; gap: .35rem; padding: .35rem; margin: 0 auto 1.4rem; border-radius: 999px; background: rgba(2,14,43,.5); border: 1px solid rgba(127,216,255,.2); }
.ctoggle__btn { border: 0; cursor: pointer; padding: .6rem 1.15rem; border-radius: 999px; font-weight: 800; font-size: .82rem; letter-spacing: .02em; color: rgba(255,255,255,.8); background: transparent; transition: background .2s, color .2s; }
.ctoggle__btn.is-on { color: #04123a; background: linear-gradient(120deg, var(--cyan), #7fd8ff); box-shadow: 0 6px 18px -8px rgba(0,174,239,.7); }
.cpane[hidden] { display: none; }
.dhlbox { margin-top: 1.6rem; padding: 1.3rem; border-radius: 16px; background: rgba(2,14,43,.5); border: 1px solid rgba(127,216,255,.16); }
.dhlbox__h { font-family: var(--font-d); text-transform: uppercase; color: #fff; margin: 0 0 .2rem; font-size: 1.15rem; }
.dhlbox__sub { color: rgba(255,255,255,.7); font-size: .85rem; margin: 0 0 .9rem; }
.dhlbox__scroll { overflow-x: auto; }
.dhlbox__table { width: 100%; border-collapse: collapse; font-size: .86rem; min-width: 380px; }
.dhlbox__table th, .dhlbox__table td { text-align: left; padding: .55rem .6rem; border-bottom: 1px solid rgba(127,216,255,.12); color: rgba(255,255,255,.85); white-space: nowrap; }
.dhlbox__table th { font-family: var(--font-m); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: #7fd8ff; }
.dhlbox__table tbody tr:hover { background: rgba(0,174,239,.06); }

/* dropdown item descriptions */
.sub__desc { display: block; font-size: .7rem; font-weight: 600; color: rgba(10,21,48,.55); margin-top: .1rem; letter-spacing: 0; text-transform: none; }
@media (max-width: 1080px) { .sub__desc { color: rgba(255,255,255,.6); } }
