/* ==========================================================================
   PawBiotix — main stylesheet
   Values are MEASURED from the reference's own /statics/css/style.css and the
   Bootstrap spacing utilities it uses. Source values are cited in comments.
   Copy is original; assets are original SVG placeholders sized to the
   reference's dimensions so real assets drop in with no layout change.

   A11y deviation (documented): the reference price-card header band uses white
   text on light green #8cc8b7 (fails WCAG contrast). To keep the required
   100 Accessibility score we render that band on #358e5b / #007953 (passes AA)
   while keeping identical geometry. Everything else uses measured values.
   ========================================================================== */

:root {
  /* ---- Color palette (measured) ---- */
  --ink: #272727;                 /* --main-font-color */
  --ink-soft: #4b5563;
  --muted: #6b7280;
  --white: #ffffff;

  --g-light: #92dfb3;
  --g-light2: #82d7a7;
  --g-mid: #62b586;
  --g-core: #358e5b;              /* purple-bg-row / core green */
  --g-header: #8cc8b7;            /* price header band (reference) */
  --g-deep: #007953;              /* bonus-green-border */
  --g-border: #008d65;           /* middle price box border */
  --near-black: #101010;
  --card-border-grey: #c1c4ca;

  --cta: #00a536;
  --cta-hover: #007953;
  --yellow: #eefe3c;
  --cream: #f9f8da;
  --mint: #e6f4ed;               /* blueish-bg */
  --grey-bg: #f5f5f5;            /* grey-bg-row / ref-bg */
  --red-dash: #e7303f;
  --price-blue: #19265b;         /* .accent-color */
  --star: #f5a623;
  --gold-1: #e2be00;
  --gold-2: #ffe456;

  /* ---- Signature section gradients (exact from reference) ---- */
  --glow-top: radial-gradient(circle at 31% 52%, #92dfb3, #62b586 24%, #358e5b 55%, #358e5b 62%), linear-gradient(to bottom, #101010, #101010);
  --glow-center: radial-gradient(circle at 50% 50%, #82d7a7, #62b586 34%, #358e5b 75%, #358e5b 85%), linear-gradient(to bottom, #101010, #101010);
  --glow-bonus: radial-gradient(circle at 50% 50%, #82d7a7, #62b586 30%, #358e5b 68%, #358e5b 77%), linear-gradient(to bottom, #101010, #101010);
  /* mobile variant (reference @media max-width:993px) */
  --glow-top-m: radial-gradient(circle at 50% 20%, #92dfb3, #62b586 24%, #358e5b 55%, #358e5b 62%), linear-gradient(to bottom, #101010, #101010);

  /* ---- Type scale (measured px; desktop values, mobile overridden below) ---- */
  --f-h1: 44px;        /* h1.bigger */
  --f-h2: 38px;        /* h2.tsl-dark-text */
  --f-h3: 28px;        /* h3 */
  --f-faq-q: 30px;     /* h3.acc */
  --f-lead: 22px;      /* p.bigger / p.acc desktop */
  --f-body: 20px;      /* p */
  --f-nav: 19px;       /* nav-link */
  --f-small: 14px;

  /* ---- Structure ---- */
  --container: 1200px;      /* .container @1300 */
  --container-md: 1140px;   /* .container-md */
  --container-sm: 1040px;   /* .container-sm */
  --container-special: 990px;
  --radius-card: 10px;
  --radius-price: 20px;
  --radius-ing: 5px;
  --radius-header: 15px;
  --shadow-card: 0 8px 22px rgba(0, 0, 0, 0.14);
  --shadow-lift: 0 12px 28px 0 rgba(0, 0, 0, 0.42); /* .middle */
  --sp: 48px;               /* section padding block (py-lg-5 = 3rem) */

  --font-body: "Quicksand", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0; font-family: var(--font-body); font-size: var(--f-body); line-height: 1.6;
  color: var(--ink); background: var(--white); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img, svg, picture { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: var(--f-h1); }
h2 { font-size: var(--f-h2); }
h3 { font-size: var(--f-h3); }
p { margin: 0 0 1rem; font-size: var(--f-body); }
a { color: var(--g-deep); }
strong, b { font-weight: 700; }

/* ---------- Containers / layout ---------- */
.container { width: min(100% - 30px, var(--container)); margin-inline: auto; }
.container--md { max-width: var(--container-md); }
.container--sm { max-width: var(--container-sm); }
.container--special { max-width: var(--container-special); }
.section { padding-block: var(--sp); position: relative; }
.center { text-align: center; }
.lede { font-size: var(--f-lead); line-height: 1.5; max-width: 62ch; margin-inline: auto; }
.eyebrow { display: inline-block; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-size: 14px; margin-bottom: 10px; }
.section__head { max-width: 64ch; margin-inline: auto; }

/* ---------- Signature backgrounds ---------- */
.bg-glow-top { background-image: var(--glow-top); background-repeat: no-repeat; background-size: cover; color: #fff; }
.bg-glow-center { background-image: var(--glow-center); background-repeat: no-repeat; background-size: cover; color: #fff; }
.bg-glow-bonus { background-image: var(--glow-bonus); background-repeat: no-repeat; background-size: cover; color: #fff; }
.bg-mint { background: var(--mint); }
.bg-grey { background: var(--grey-bg); }
.on-dark, .on-dark h1, .on-dark h2, .on-dark h3, .on-dark p { color: #fff; }
.accent-yellow { color: var(--yellow); }
.accent-green { color: var(--g-core); }
.bg-glow-top .eyebrow, .bg-glow-center .eyebrow, .bg-glow-bonus .eyebrow { color: var(--yellow); }
/* Legibility over the bright center of the radial gradients (reference uses text-shadow on its green VSL headlines). Also aids real-world contrast where the gradient is lightest. */
.bg-glow-top h2, .bg-glow-center h2, .bg-glow-bonus h2,
.bg-glow-top .eyebrow, .bg-glow-center .eyebrow, .bg-glow-bonus .eyebrow,
.bg-glow-top .lede, .bg-glow-center .lede, .bg-glow-bonus .lede,
.bg-glow-top .rating, .bg-glow-top p { text-shadow: 0 2px 8px rgba(0, 0, 0, .55); }

/* ---------- A11y utilities ---------- */
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--cta); color: #fff; padding: .7rem 1.1rem; border-radius: 8px; font-weight: 700; transition: top .18s; text-decoration: none; }
.skip-link:focus { top: 12px; }
/* Focus ring: dark by default (visible on white/mint/grey); white on gradient sections */
:focus-visible { outline: 3px solid var(--price-blue); outline-offset: 2px; border-radius: 6px; }
.bg-glow-top :focus-visible, .bg-glow-center :focus-visible, .bg-glow-bonus :focus-visible,
.site-header :focus-visible, .site-footer :focus-visible, .sticky-cta :focus-visible { outline-color: #fff; }

/* ---------- Buttons (order-now style: pill, transition .5s, hover scale 1.05) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 700; font-size: 20px; padding: 16px 34px; border-radius: 999px;
  border: 3px solid transparent; cursor: pointer; text-decoration: none; line-height: 1.1;
  transition: transform .5s ease, box-shadow .2s ease, background-color .2s ease;
  text-transform: uppercase; letter-spacing: .02em;
}
.btn--primary { background: var(--cta); color: #fff; box-shadow: 0 10px 22px rgba(0, 121, 83, .35); }
.btn--primary:hover { background: var(--cta-hover); transform: scale(1.05); }
.btn--gold { background: linear-gradient(360deg, var(--gold-1) 0%, var(--gold-2) 100%); color: var(--price-blue); border-color: #cba700; }
.btn--gold:hover { transform: scale(1.05); }
.btn--outline-light { background: transparent; color: #fff; border-color: #fff; }
.btn--outline-light:hover { background: rgba(255, 255, 255, .12); }
.btn--block { width: 100%; }
.btn--lg { font-size: 22px; padding: 18px 40px; }

/* ---------- Header / nav (green sticky bar, white links 19px) ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--g-core); box-shadow: 0 2px 10px rgba(0, 0, 0, .25); }
.nav { display: flex; align-items: center; gap: 1rem; min-height: 68px; }
.nav__logo { margin-right: auto; display: inline-flex; }
.nav__logo img { width: 168px; height: 37px; }
.nav__list { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav__list a { color: #fff; text-decoration: none; font-weight: 600; font-size: var(--f-nav); padding: .4rem 0; }
.nav__list a:hover { color: var(--yellow); }
.nav__cta { margin-left: .5rem; padding: 10px 22px; font-size: 16px; }
/* hamburger — reference: fixed 44x44, #272727, radius 10, transition 400ms cubic-bezier(.23,1,.32,1) */
.nav__toggle { display: none; background: #272727; border: 0; border-radius: 10px; width: 44px; height: 44px; padding: 0; cursor: pointer; align-items: center; justify-content: center; }
.nav__toggle svg { width: 26px; height: 26px; fill: #fff; }

@media (max-width: 992px) {
  .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__list {
    position: absolute; inset: 68px 0 auto; flex-direction: column; gap: 0;
    background: var(--g-core); padding: .25rem 1.2rem 1rem; box-shadow: 0 12px 24px rgba(0, 0, 0, .3);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity .4s cubic-bezier(.23, 1, .32, 1), transform .4s cubic-bezier(.23, 1, .32, 1);
  }
  .nav__list[data-open="true"] { opacity: 1; transform: none; pointer-events: auto; }
  .nav__list li { border-bottom: 1px solid rgba(255, 255, 255, .18); }
  .nav__list a { display: block; padding: 14px 0; font-size: var(--f-nav); }
}

/* ---------- Hero ---------- */
.hero { padding-block: 56px; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero h1 { font-size: var(--f-h1); font-weight: 700; text-shadow: 2px 4px 5px rgba(0, 0, 0, .35); margin-bottom: 16px; }
.hero p { font-size: var(--f-body); }
.hero__media { justify-self: center; }
.hero__media img { width: min(360px, 82vw); filter: drop-shadow(0 22px 34px rgba(0, 0, 0, .45)); }
.rating { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: 18px; margin-bottom: 12px; }
.stars { color: var(--star); letter-spacing: 2px; font-size: 22px; }
.hero__points { list-style: none; padding: 0; margin: 20px 0 28px; display: grid; gap: 10px; font-size: 19px; }
.hero__points li { position: relative; padding-left: 34px; }
.hero__points li::before {
  content: ""; position: absolute; left: 0; top: .12em; width: 24px; height: 24px; background: var(--yellow); border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/72% no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/72% no-repeat;
}
.hero__cta-row { display: flex; flex-wrap: wrap; gap: 14px 18px; align-items: center; }
.trust-strip { display: flex; flex-wrap: wrap; gap: 16px 26px; align-items: center; margin-top: 28px; font-weight: 600; font-size: 14px; opacity: .95; }
.trust-strip span { display: inline-flex; align-items: center; gap: 7px; }
.trust-strip svg { width: 20px; height: 20px; fill: var(--yellow); }

/* ---------- Card grids ---------- */
.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.icon-badge { width: 62px; height: 62px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 16px; }
.icon-badge svg { width: 32px; height: 32px; fill: var(--g-light); }

/* Dark ingredient cards (reference .dark-purple-bg-round: #272727, radius 5) */
.ingredient-card {
  background: #272727; color: #fff; border-radius: var(--radius-ing); padding: 26px 22px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .3); text-align: center; height: 100%;
  transition: transform .3s ease;
}
.ingredient-card:hover { transform: scale(1.02); }
.ingredient-card h3 { color: var(--yellow); font-size: 22px; }
.ingredient-card p { color: #dfe7e1; font-size: 16px; margin-bottom: 0; }
.ingredient-card .icon-badge { margin-inline: auto; background: rgba(146, 223, 179, .16); }

/* Light benefit cards on mint */
.benefit-card { background: #fff; border-radius: var(--radius-card); padding: 24px; box-shadow: var(--shadow-card); height: 100%; transition: transform .3s ease; }
.benefit-card:hover { transform: scale(1.02); }
.benefit-card .icon-badge { background: var(--mint); width: 56px; height: 56px; }
.benefit-card .icon-badge svg { fill: var(--g-deep); width: 28px; height: 28px; }
.benefit-card h3 { font-size: 20px; color: var(--ink); }
.benefit-card p { font-size: 16px; color: var(--ink-soft); margin-bottom: 0; }

/* ---------- Customer reviews (premium testimonial cards) ---------- */
/* Star rating (reusable) */
.stars { display: inline-block; color: var(--star); font-size: 18px; letter-spacing: 2px; line-height: 1; }
.stars--lg { font-size: 24px; }

/* Aggregate rating under the section heading */
.reviews-rating { display: inline-flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .5rem .75rem; margin: .35rem 0 .25rem; }
.reviews-rating__score { font-size: 1rem; color: var(--ink-soft); }
.reviews-rating__score strong { color: var(--ink); font-size: 1.15rem; }

.review-card {
  background: #fff; border: 1px solid rgba(0, 121, 83, .10); border-radius: var(--radius-card);
  padding: 26px 24px; box-shadow: var(--shadow-card); height: 100%;
  display: flex; flex-direction: column; gap: .85rem; text-align: left;
  transition: transform .3s ease, box-shadow .3s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(16, 16, 16, .14); }

/* Header: avatar + name + location */
.review-card__head { display: flex; align-items: center; gap: .8rem; }
.review-card__avatar { flex: 0 0 auto; width: 56px; height: 56px; border-radius: 50%; overflow: hidden; box-shadow: 0 4px 10px rgba(0, 0, 0, .15); border: 2px solid #fff; outline: 2px solid var(--mint); }
.review-card__avatar img { width: 56px; height: 56px; object-fit: cover; border-radius: 50%; }
.review-card__id { min-width: 0; }
.review-card__name { display: flex; align-items: center; gap: .35rem; margin: 0; font-weight: 700; font-size: 16px; color: var(--ink); line-height: 1.2; }
.review-card__check { display: inline-grid; place-items: center; width: 16px; height: 16px; border-radius: 50%; background: var(--g-deep); color: #fff; font-size: 10px; font-weight: 800; line-height: 1; }
.review-card__loc { margin: 2px 0 0; font-size: 13px; color: var(--muted); }

.review-card__title { margin: 0; font-size: 17px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.review-card__text { font-size: 15.5px; line-height: 1.6; color: var(--ink-soft); margin: 0; flex: 1 1 auto; }

/* Meta row: verified badge + date */
.review-card__meta { display: flex; align-items: center; flex-wrap: wrap; gap: .5rem .65rem; font-size: 13px; color: var(--muted); margin: .1rem 0 0; padding-top: .85rem; border-top: 1px solid rgba(0, 0, 0, .06); }
.review-card__badge { display: inline-flex; align-items: center; gap: .35rem; font-size: 12px; font-weight: 700; letter-spacing: .02em; color: var(--g-deep); background: var(--mint); border-radius: 999px; padding: .3rem .65rem; }
.review-card__badge::before { content: "\2713"; font-weight: 800; }
.review-card__meta time { color: var(--muted); }

.reviews-note { max-width: 760px; margin: 2rem auto 0; font-size: .9rem; line-height: 1.55; color: var(--muted); }

@media (max-width: 600px) {
  .review-card { padding: 20px 18px; }
  .stars--lg { font-size: 21px; }
  .reviews-rating__score { font-size: .95rem; }
}

/* ---------- Bonuses (white-bordered cards on gradient) ---------- */
.bonus-card {
  background: #fff; border: 5px solid #fff; border-radius: var(--radius-card); overflow: hidden;
  box-shadow: var(--shadow-card); height: 100%; display: flex; flex-direction: column; text-align: center;
}
.bonus-card__head { background: #272727; color: #fff; padding: 14px 16px; font-weight: 700; letter-spacing: .04em; font-size: 18px; }
.bonus-card__body { padding: 24px 22px 28px; display: flex; flex-direction: column; flex: 1; }
.bonus-card h3 { color: var(--ink); font-size: 20px; }
.bonus-card p { color: var(--ink-soft); font-size: 16px; }
.bonus-card .worth { margin-top: auto; color: var(--g-deep); font-weight: 700; font-size: 18px; }
.bonus-note { display: inline-flex; align-items: center; gap: 10px; background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .35); border-radius: 999px; padding: 10px 22px; font-weight: 700; font-size: 18px; margin-top: 26px; }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.price-box {
  background: #fff; border: 3px solid var(--card-border-grey); border-radius: var(--radius-price);
  padding: 0 0 28px; overflow: hidden; transition: transform .3s ease; display: flex; flex-direction: column; color: var(--ink);
}
.price-box:hover { transform: scale(1.03); position: relative; z-index: 4; }
.price-box--best { background: var(--cream); border-color: var(--g-border); box-shadow: var(--shadow-lift); position: relative; }
@media (min-width: 993px) { .price-box--best { margin-top: -40px; } } /* reference .middle margin-top:-40px */
.price-box__header { background: var(--g-core); color: #fff; text-align: center; padding: 16px; border-top-left-radius: var(--radius-header); border-top-right-radius: var(--radius-header); }
.price-box--best .price-box__header { background: var(--g-deep); }
.price-box__header h3 { color: #fff; margin: 0; font-size: 40px; line-height: 1.05; }            /* pricebox-bottle-nr 40px */
.price-box__header .supply { display: block; font-size: 22px; font-weight: 600; opacity: .92; margin-top: 2px; } /* day-supply 22px */
.price-box__badge {
  position: absolute; top: -14px; right: -14px; width: 100px; height: 100px; border-radius: 50%;
  background: var(--yellow); color: var(--price-blue); display: grid; place-content: center; text-align: center;
  font-weight: 800; font-size: 14px; line-height: 1.05; box-shadow: 0 6px 16px rgba(0, 0, 0, .3); transform: rotate(8deg); z-index: 5;
} /* reference best_value_badge 100x100 top:-50 right:-50 */
.price-box__body { padding: 20px 20px 0; text-align: center; display: flex; flex-direction: column; flex: 1; }
.price-box__img { height: 214px; display: grid; place-items: center; margin-bottom: 8px; } /* pricebox-product-img ~214-247px */
.price-box__img img { max-height: 214px; width: auto; }
.price-box__price { line-height: 63px; margin: 4px 0; }                 /* .price line-height 63px */
.price-box__amt { font-size: 55px; font-weight: 800; color: var(--price-blue); }  /* .price 55px */
.price-box__amt .cur { font-size: 26px; vertical-align: super; }
.price-box__per { font-size: 31px; font-weight: 700; color: var(--ink); }         /* .per_bottle 31px */
.price-box__total { font-size: 26px; font-weight: 600; color: var(--ink); margin: 12px 0 6px; line-height: 1.2; } /* total 26px */
.price-box__was { color: var(--muted); text-decoration: line-through; }
.price-box__list { list-style: none; padding: 0; margin: 16px 0 20px; display: grid; gap: 8px; text-align: left; }
.price-box__list li { position: relative; padding-left: 32px; font-size: 16px; }
.price-box__list li::before {
  content: ""; position: absolute; left: 0; top: .1em; width: 22px; height: 22px; background: var(--cta);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/78% no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/78% no-repeat;
}
.price-box .btn { margin-top: auto; }
.price-note { text-align: center; margin-top: 26px; font-weight: 600; font-size: 18px; }
.credit-cards { display: inline-flex; gap: 6px; margin-top: 12px; vertical-align: middle; }
.credit-cards svg { height: 26px; width: auto; }

/* ---------- Guarantee ---------- */
.guarantee { display: grid; grid-template-columns: 220px 1fr; gap: 36px; align-items: center; } /* guarantee-img ~204px */
.guarantee img { width: 220px; height: 220px; filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .35)); }

/* ---------- Scarcity (cream dashed panel, reference .yellow-bg) ---------- */
.scarcity { background: var(--cream); border: 4px dashed var(--red-dash); border-radius: 12px; padding: 44px; color: var(--ink); }
.scarcity h2, .scarcity p { color: var(--ink); }

/* ---------- FAQ ---------- */
.faq { max-width: 840px; margin-inline: auto; }
.faq__item { border: 2px solid var(--mint); border-radius: 12px; margin-bottom: 14px; background: #fff; overflow: hidden; }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer; font-family: inherit;
  font-weight: 700; font-size: var(--f-faq-q); color: var(--ink); padding: 20px 56px 20px 22px; position: relative;
}
.faq__q::after {
  content: ""; position: absolute; right: 20px; top: 50%; width: 26px; height: 26px; transform: translateY(-50%);
  background: var(--g-core); border-radius: 50%; transition: transform .25s ease;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M11 5h2v6h6v2h-6v6h-2v-6H5v-2h6z'/%3E%3C/svg%3E") center/60% no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M11 5h2v6h6v2h-6v6h-2v-6H5v-2h6z'/%3E%3C/svg%3E") center/60% no-repeat;
}
.faq__q[aria-expanded="true"]::after { transform: translateY(-50%) rotate(135deg); }
.faq__a { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height .28s ease, padding .28s ease; }
.faq__a[data-open="true"] { padding: 0 22px 20px; }
.faq__a p { font-size: var(--f-lead); line-height: 1.5; }
.faq__a p:last-child { margin-bottom: 0; }

/* ---------- Shipping table (reference .order-support-table) ---------- */
.table-wrap { overflow-x: auto; border: 2px solid #dee2e6; border-radius: var(--radius-card); }
table.shipping { width: 100%; border-collapse: collapse; min-width: 520px; font-size: 18px; }
table.shipping caption { text-align: left; padding: 16px 20px; font-weight: 700; }
table.shipping th, table.shipping td { text-align: left; padding: 10px 20px; }  /* td padding 10px */
table.shipping tbody tr:nth-child(2n) { background: var(--grey-bg); }             /* tr:nth-child(2n) f5f5f5 */
table.shipping thead th { background: var(--g-core); color: #fff; }

/* ---------- Sticky CTA (mobile-first; upgrades to horizontal bar) ---------- */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); opacity: 0; visibility: hidden; transform: translateY(115%); transition: transform .3s ease, opacity .3s ease, visibility .3s ease; pointer-events: none; }
.sticky-cta[data-visible="true"][data-dismissed="false"] { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.sticky-cta[data-near-pricing="true"], .sticky-cta[data-dismissed="true"] { opacity: 0; visibility: hidden; transform: translateY(115%); pointer-events: none; }

/* ---------- Footer (reference: black bg, links 14px line-height 32) ---------- */
.site-footer { background: #101418; color: #cbd2da; padding-block: 48px 32px; font-size: var(--f-small); }
.site-footer a { color: #cbd2da; text-decoration: none; font-size: 14px; line-height: 32px; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.footer__grid h2 { font-size: 16px; color: #fff; }
.footer__links { list-style: none; padding: 0; margin: 0; }
.footer__disclaimer { border-top: 1px solid #2a323c; margin-top: 32px; padding-top: 24px; color: #8b95a1; font-size: 14px; line-height: 1.6; }
.footer__disclaimer p { margin-bottom: 12px; }

/* ==========================================================================
   RESPONSIVE — reference breakpoints (992/993 primary, 1300 container, 375 price)
   ========================================================================== */

/* Large desktop — reference container widths kick in at 1300 */
@media (min-width: 1300px) {
  .container { max-width: var(--container); }
}

/* Tablet & below: reference @media(max-width:993px) type overrides */
@media (max-width: 992px) {
  :root {
    --f-h1: 36px;      /* h1.bigger mobile */
    --f-h2: 32px;      /* h2 mobile */
    --f-faq-q: 18px;   /* h3.acc mobile */
    --f-lead: 16px;    /* p.acc mobile-ish */
    --f-body: 18px;
  }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .hero__grid { grid-template-columns: 1fr; text-align: center; gap: 28px; }
  .hero__media { margin-top: .5rem; }
  .hero__media img { width: min(300px, 66vw); }
  .hero__points { max-width: 26rem; margin-inline: auto; text-align: left; }
  .hero__cta-row, .trust-strip, .rating { justify-content: center; }
  .bg-glow-top { background-image: var(--glow-top-m); }
  .pricing { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; gap: 32px; }
  .price-box--best { margin-top: 0; order: -1; }
  .price-box__header h3 { font-size: 21px; }   /* pricebox-bottle-nr @375 21px */
  .price-box__header .supply { font-size: 15px; }
  .price-box__total { font-size: 16px; }        /* total mobile 16px */
  .guarantee { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 20px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .price-box__badge { top: -12px; right: -8px; width: 84px; height: 84px; font-size: 13px; }
}

/* Small phones */
@media (max-width: 600px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .btn { font-size: 18px; padding: 14px 26px; }
  .btn--lg { font-size: 19px; padding: 16px 30px; }
  .scarcity { padding: 28px 20px; }
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .btn:hover, .price-box:hover, .ingredient-card:hover, .benefit-card:hover { transform: none; }
}


/* ==========================================================================
   Production-asset additions (additive; do not alter existing components)
   ========================================================================== */

/* Hero: floating decorative product (desktop only, non-obstructive) */
.hero__media { position: relative; }
.hero__float { position: absolute; left: -6%; bottom: -4%; width: 150px; z-index: -1; opacity: .96; pointer-events: none; filter: drop-shadow(0 14px 24px rgba(0, 0, 0, .4)); }
.hero__float img { width: 150px; height: auto; }
@media (max-width: 992px) { .hero__float { display: none; } }

/* Hero certifications strip (replaces text trust-strip) */
.hero__certs { margin-top: 28px; }
.hero__certs img { width: 100%; max-width: 460px; height: auto; }
@media (max-width: 992px) { .hero__certs { display: flex; justify-content: center; } }

/* Bonus cover image inside existing card (keeps equal heights via shared ratio) */
.bonus-card__cover { margin: 0 0 1rem; border-radius: 8px; overflow: hidden; }
.bonus-card__cover img { width: 100%; height: auto; display: block; }

/* Free-shipping badge (replaces text pill) */
.free-shipping-badge { width: 150px; height: 150px; margin: 0 auto; }


/* Image QA: ingredient product images use the real 746² source at a proper size
   (previously rendered at 48px in the icon badge). Keeps the dark card design. */
.ingredient-card .icon-badge { width: auto; height: auto; padding: 12px; background: rgba(146, 223, 179, .14); border-radius: 16px; margin-bottom: 16px; }
.ingredient-card .icon-badge img { width: 120px; height: 120px; object-fit: contain; }
@media (max-width: 600px) { .ingredient-card .icon-badge img { width: 104px; height: 104px; } }


/* ==========================================================================
   Phase 1 educational sections (checklist, references, panel lists, policy notes)
   ========================================================================== */
.policy-note { max-width: 720px; margin: 1.25rem auto 0; font-size: .95rem; line-height: 1.55; color: var(--muted); }
.policy-note p { margin-bottom: .6rem; }
.policy-note a { color: var(--g-deep); }

.checklist { list-style: none; padding: 0; margin: 1.75rem auto 0; max-width: 640px; display: grid; gap: .7rem; text-align: left; }
.checklist li { position: relative; padding-left: 2.1rem; font-size: 1.05rem; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .15em; width: 1.5rem; height: 1.5rem; background: var(--cta); border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/70% no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/70% no-repeat;
}

.panel-list { margin: 0 0 1rem; padding-left: 1.25rem; display: grid; gap: .5rem; }
.panel-list li { font-size: 1.02rem; }

.references { max-width: 760px; margin: 1.5rem auto 0; padding-left: 1.3rem; font-size: .98rem; line-height: 1.6; color: var(--ink-soft); }
.references li { margin-bottom: .6rem; }
.references a { color: var(--g-deep); }


/* Ordered steps (How to Order) */
.steps { max-width: 720px; margin: 1.5rem auto 0; padding-left: 1.4rem; display: grid; gap: .8rem; }
.steps li { font-size: 1.05rem; line-height: 1.5; }
.steps li::marker { color: var(--g-deep); font-weight: 800; }


/* ==========================================================================
   Authority phase: sticky CTA (smart), flow diagram, relationship chain,
   visual timeline, comparison table
   ========================================================================== */

/* Smart sticky CTA (enhanced, dismissible) — mobile-first: vertical stack, full-width button */
.sticky-cta__inner { position: relative; display: flex; flex-direction: column; align-items: stretch; gap: 10px; max-width: 520px; margin-inline: auto; background: rgba(16, 16, 16, .94); backdrop-filter: blur(6px); border-radius: 14px; padding: 14px 16px; box-shadow: 0 10px 30px rgba(0, 0, 0, .38); }
.sticky-cta__copy { display: flex; flex-direction: column; gap: 3px; min-width: 0; color: #fff; text-align: center; }
.sticky-cta__title { font-weight: 800; font-size: 1.02rem; line-height: 1.15; letter-spacing: .01em; }
.sticky-cta__sub { font-size: .82rem; opacity: .92; line-height: 1.25; }
.sticky-cta__sub--full { display: none; }
.sticky-cta__dot { color: var(--cta); font-weight: 800; margin: 0 .35em; }
.sticky-cta__btn { width: 100%; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; white-space: nowrap; padding: .85rem 1.4rem; font-size: 1rem; }
.sticky-cta__dismiss {
  position: absolute; top: -12px; right: -6px; width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.45); background: #101010; color: #fff; font-size: 16px; line-height: 1; cursor: pointer;
  display: grid; place-items: center; z-index: 2;
}

/* Tablet (>=768px): condensed horizontal bar */
@media (min-width: 768px) {
  .sticky-cta__inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 20px; max-width: 720px; padding: 12px 20px; }
  .sticky-cta__copy { text-align: left; flex: 1 1 auto; }
  .sticky-cta__title { font-size: 1.08rem; }
  .sticky-cta__sub--full { display: block; }
  .sticky-cta__sub--short { display: none; }
  .sticky-cta__btn { width: auto; flex: 0 0 auto; padding: .85rem 1.8rem; }
}

/* Desktop (>=1024px): premium wide horizontal bar */
@media (min-width: 1024px) {
  .sticky-cta { padding: 14px 24px calc(14px + env(safe-area-inset-bottom)); }
  .sticky-cta__inner { max-width: 1280px; gap: 40px; padding: 16px 32px; border-radius: 18px; box-shadow: 0 12px 34px rgba(0, 0, 0, .4); }
  .sticky-cta__title { font-size: 1.2rem; }
  .sticky-cta__sub { font-size: .92rem; white-space: nowrap; }
  .sticky-cta__btn { padding: 1rem 2.6rem; font-size: 1.05rem; }
}

/* Process flow diagram (horizontal chips → arrows; wraps on mobile) */
.flow { display: flex; flex-wrap: wrap; align-items: stretch; justify-content: center; gap: .6rem; margin: 2rem auto 0; max-width: 960px; list-style: none; padding: 0; }
.flow li { flex: 1 1 150px; max-width: 190px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 1rem .9rem; text-align: center; font-size: .95rem; font-weight: 600; color: var(--ink); box-shadow: var(--shadow-card); position: relative; }
.flow li:not(:last-child)::after { content: "\2192"; position: absolute; right: -.7rem; top: 50%; transform: translateY(-50%); color: var(--g-core); font-weight: 800; z-index: 1; }
.flow li .flow__ico { display: block; font-size: 1.4rem; margin-bottom: .3rem; }
@media (max-width: 560px) {
  .flow { flex-direction: column; align-items: stretch; }
  .flow li { max-width: none; }
  .flow li:not(:last-child)::after { content: "\2193"; right: 50%; top: auto; bottom: -.75rem; transform: translateX(50%); }
}

/* Relationship chain (vertical) */
.chain { list-style: none; padding: 0; margin: 1.75rem auto 0; max-width: 420px; display: grid; gap: .5rem; }
.chain li { background: var(--mint); border-radius: 10px; padding: .85rem 1rem; text-align: center; font-weight: 700; color: var(--g-ink, var(--ink)); position: relative; }
.chain li:not(:last-child)::after { content: "\2193"; display: block; color: var(--g-core); font-weight: 800; margin-top: .35rem; }

/* Visual timeline */
.timeline { list-style: none; padding: 0; margin: 2rem auto 0; max-width: 760px; display: grid; gap: 0; }
.timeline li { position: relative; padding: 0 0 1.5rem 2.2rem; border-left: 3px solid var(--g-light); }
.timeline li:last-child { border-left-color: transparent; padding-bottom: 0; }
.timeline li::before { content: ""; position: absolute; left: -.72rem; top: .1rem; width: 1.15rem; height: 1.15rem; border-radius: 50%; background: var(--cta); border: 3px solid #fff; box-shadow: 0 0 0 1px var(--line); }
.timeline h3 { font-size: 1.1rem; margin: 0 0 .2rem; }
.timeline p { margin: 0; font-size: 1rem; color: var(--ink-soft); }

/* Comparison table */
.compare-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-card); margin: 2rem auto 0; max-width: 820px; }
table.compare { width: 100%; border-collapse: collapse; min-width: 520px; }
table.compare th, table.compare td { padding: .85rem 1.1rem; text-align: left; border-top: 1px solid var(--line); font-size: 1rem; }
table.compare thead th { background: var(--g-core); color: #fff; border-top: 0; }
table.compare thead th:first-child { background: var(--g-deep); }
table.compare tbody th { font-weight: 700; color: var(--ink); background: var(--bg-tint, #f4faf6); }
table.compare td.yes { color: var(--g-deep); font-weight: 700; }
table.compare caption { caption-side: bottom; padding: .8rem 1rem; font-size: .85rem; color: var(--muted); text-align: left; }


/* ==========================================================================
   MOBILE-FIRST UX PASS (mobile only; desktop >992px unchanged)
   ========================================================================== */

/* Hero: content-first, image last & smaller, tighter above-the-fold */
@media (max-width: 992px) {
  .hero { padding-block: 32px 24px; }
  .hero h1 { margin-bottom: 12px; }
  .hero__points { margin: 16px auto 20px; gap: 8px; }
  .rating { margin-bottom: 8px; }
  .hero__certs { margin-top: 20px; }
  .hero__media { margin-top: 1rem; }
  .lede { line-height: 1.55; }
}

/* Tighten section rhythm on phones (avoid over-tall gaps; keep breathing room) */
@media (max-width: 600px) {
  .section { padding-block: 40px; }
  .section__head { max-width: 40ch; }
  .lede { font-size: 1.02rem; line-height: 1.55; }
  .grid { gap: 14px; }
  .benefit-card, .ingredient-card, .bonus-card { padding: 1.15rem 1.1rem; }
  .ingredient-card .icon-badge img { width: 96px; height: 96px; }
  .flow { gap: .5rem; margin-top: 1.5rem; }
  .chain { margin-top: 1.25rem; }
  .timeline { margin-top: 1.5rem; }
  .timeline li { padding-bottom: 1.15rem; }
}
@media (max-width: 400px) {
  .section { padding-block: 34px; }
  .hero h1 { font-size: 30px; }
  .price-box__amt { font-size: 2.8rem; }
}

/* Readability: comfortable measure, no orphaned long tokens */
@media (max-width: 992px) {
  .section__head, .faq, .container--md { }
  p, li { overflow-wrap: anywhere; }
  .policy-note { max-width: 90%; }
}

/* FAQ: larger, safer tap targets + smoother open */
@media (max-width: 992px) {
  .faq__q { min-height: 56px; padding: 1.05rem 3rem 1.05rem 1.1rem; font-size: 1.05rem; }
  .faq__item { margin-bottom: 10px; }
  .faq__a p { font-size: 1rem; }
}

/* Comparison table -> stacked cards on small phones (no horizontal scroll) */
@media (max-width: 640px) {
  .compare-wrap { overflow-x: visible; border: 0; }
  table.compare { min-width: 0; border: 0; }
  table.compare thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  table.compare, table.compare tbody, table.compare tr, table.compare th, table.compare td { display: block; width: 100%; }
  table.compare tr { border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; padding: .35rem .2rem .6rem; background: #fff; }
  table.compare tbody th { background: transparent; font-size: 1.05rem; padding: .5rem 1rem .25rem; border: 0; }
  table.compare td { border: 0; padding: .25rem 1rem; font-size: .98rem; }
  table.compare td:nth-of-type(1)::before { content: "PawBiotix: "; font-weight: 700; color: var(--g-deep); }
  table.compare td:nth-of-type(2)::before { content: "Many others: "; font-weight: 700; color: var(--muted); }
  table.compare caption { padding: 0 1rem; }
}

/* Shipping table -> stacked on small phones */
@media (max-width: 640px) {
  .table-wrap { overflow-x: visible; }
  table.shipping { min-width: 0; font-size: 16px; }
  table.shipping caption { padding: .5rem 1rem; }
  table.shipping thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  table.shipping, table.shipping tbody, table.shipping tr, table.shipping th, table.shipping td { display: block; width: 100%; }
  table.shipping tr { border-top: 1px solid var(--line); padding: .4rem 0; }
  table.shipping tbody tr:nth-child(2n) { background: transparent; }
  table.shipping tbody th { background: transparent; padding: .4rem 1rem .1rem; font-size: 1.02rem; }
  table.shipping td { padding: .1rem 1rem; color: var(--ink-soft); }
  table.shipping td:nth-of-type(1)::before { content: "Shipping: "; font-weight: 700; color: var(--ink); }
  table.shipping td:nth-of-type(2)::before { content: "Delivery: "; font-weight: 700; color: var(--ink); }
}

/* Sticky CTA: near-pricing hide is handled globally above. Respect reduced motion. */
@media (prefers-reduced-motion: reduce) {
  .sticky-cta { transition: opacity .2s ease, visibility .2s ease; transform: none; }
  .sticky-cta[data-visible="true"][data-dismissed="false"] { transform: none; }
  .sticky-cta[data-near-pricing="true"], .sticky-cta[data-dismissed="true"] { transform: none; }
}

/* Footer: more breathing room between blocks on mobile */
@media (max-width: 600px) {
  .footer__grid { gap: 1.75rem; }
  .footer__links { gap: .65rem; }
  .footer__links a { display: inline-block; padding: 2px 0; }
  .site-footer { padding-block: 2.5rem 2rem; }
}

/* Buttons: comfortable full-width tap targets on phones */
@media (max-width: 560px) {
  .hero__cta-row .btn, .section .btn--lg { width: 100%; }
  .hero__cta-row { gap: .6rem; }
}


/* ==========================================================================
   Footer / support pages (Contact, Shipping, Refund, References, Legal)
   Reuses the existing design system; adds a few on-brand, responsive parts.
   ========================================================================== */

/* Breadcrumbs */
.crumbs { width: min(100% - 30px, var(--container-md)); margin-inline: auto; padding-top: 1.25rem; font-size: .88rem; color: var(--muted); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: .35rem; padding: 0; margin: 0; }
.crumbs li { display: inline-flex; align-items: center; }
.crumbs li:not(:last-child)::after { content: "\203A"; color: var(--muted); margin-left: .35rem; }
.crumbs a { color: var(--g-deep); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.crumbs [aria-current="page"] { color: var(--ink); }

/* Left-aligned page intro + meta */
.page-head { max-width: 72ch; }
.page-head .lede { margin-left: 0; }
.updated { color: var(--muted); font-size: .9rem; margin: 0 0 1.25rem; }

/* Prose rhythm for support/legal pages */
.prose > h2 { margin-top: 2.25rem; }
.prose > h2:first-of-type { margin-top: 1.25rem; }
.prose p, .prose li { line-height: 1.65; }
.prose a { color: var(--g-deep); }

/* Support / info cards (icon + title + text + contact value) */
.support-card { text-align: left; display: flex; flex-direction: column; }
.support-card .icon-badge { background: var(--mint); width: 56px; height: 56px; }
.support-card .icon-badge svg { fill: var(--g-deep); width: 28px; height: 28px; }
.support-card h3 { font-size: 19px; color: var(--ink); margin-bottom: .35rem; }
.support-card p { font-size: 15.5px; color: var(--ink-soft); margin-bottom: .7rem; flex: 1 1 auto; }
.support-card__val { display: block; font-weight: 700; color: var(--g-deep); font-size: 16px; overflow-wrap: anywhere; }
.support-card__val a { color: inherit; text-decoration: none; }
.support-card__val a:hover { text-decoration: underline; }
.support-card__note { display: block; font-size: 13px; color: var(--muted); margin-top: .25rem; }

/* Numbered step cards (refund process) */
.num-steps { counter-reset: step; display: grid; gap: 16px; margin-top: 1.75rem; grid-template-columns: repeat(2, 1fr); }
.num-step { position: relative; background: #fff; border: 1px solid rgba(0, 121, 83, .10); border-radius: var(--radius-card); box-shadow: var(--shadow-card); padding: 24px 22px 22px; }
.num-step::before { counter-increment: step; content: counter(step); display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--g-core); color: #fff; font-weight: 800; font-size: 18px; margin-bottom: .8rem; }
.num-step h3 { font-size: 18px; margin-bottom: .35rem; color: var(--ink); }
.num-step p { font-size: 15.5px; color: var(--ink-soft); margin: 0; line-height: 1.6; }

/* Callout / helpful notes (mint panel) */
.callout { background: var(--mint); border-radius: var(--radius-card); padding: 20px 22px; margin-top: 1.5rem; }
.callout h3 { font-size: 18px; margin-bottom: .5rem; color: var(--g-deep); }
.callout p { margin-bottom: .6rem; }
.callout p:last-child, .callout ul:last-child { margin-bottom: 0; }

/* Definition list (business hours, key facts) */
.deflist { margin-top: 1rem; }
.deflist > div { display: flex; flex-wrap: wrap; gap: .25rem 1.5rem; padding: .7rem 0; border-bottom: 1px solid rgba(0, 0, 0, .07); }
.deflist > div:last-child { border-bottom: 0; }
.deflist dt { font-weight: 700; color: var(--ink); flex: 0 0 12rem; margin: 0; }
.deflist dd { margin: 0; color: var(--ink-soft); flex: 1 1 14rem; }

/* Native <details> FAQ — no JS, matches .faq look */
.qa { max-width: 840px; margin: 1.5rem auto 0; }
.qa details { border: 2px solid var(--mint); border-radius: 12px; margin-bottom: 12px; background: #fff; overflow: hidden; }
.qa summary { list-style: none; cursor: pointer; font-weight: 700; font-size: 1.05rem; color: var(--ink); padding: 16px 52px 16px 20px; position: relative; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary:focus-visible { outline: 3px solid var(--g-light); outline-offset: 2px; }
.qa summary::after { content: ""; position: absolute; right: 18px; top: 50%; width: 24px; height: 24px; transform: translateY(-50%); background: var(--g-core); border-radius: 50%; transition: transform .25s ease;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M11 5h2v6h6v2h-6v6h-2v-6H5v-2h6z'/%3E%3C/svg%3E") center/60% no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M11 5h2v6h6v2h-6v6h-2v-6H5v-2h6z'/%3E%3C/svg%3E") center/60% no-repeat; }
.qa details[open] summary::after { transform: translateY(-50%) rotate(135deg); }
.qa__a { padding: 0 20px 18px; }
.qa__a p { margin: 0 0 .6rem; color: var(--ink-soft); font-size: 1rem; line-height: 1.6; }
.qa__a p:last-child { margin-bottom: 0; }

/* Subpage footer nav (multi-column, matches homepage footer tone) */
.pagefoot__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.pagefoot__grid h2 { font-size: 16px; color: #fff; }
.pagefoot__links { list-style: none; padding: 0; margin: 0; }
.pagefoot__note { border-top: 1px solid #2a323c; margin-top: 28px; padding-top: 20px; color: #8b95a1; font-size: 13px; line-height: 1.6; }

@media (max-width: 760px) {
  .num-steps { grid-template-columns: 1fr; }
  .pagefoot__grid { grid-template-columns: 1fr 1fr; }
  .deflist dt { flex-basis: 100%; }
}
@media (max-width: 480px) {
  .pagefoot__grid { grid-template-columns: 1fr; }
}
