/* ==========================================================================
   DROIX 2026 brand landing pages (design handoff brand.css, dxb-* classes).
   Scoped to body.droix-brand-surface (configured pa_brands terms rendered by
   taxonomy-pa_brands.php). Handle 'droix-brand', deps droix-tokens +
   droix-pcard. FAQ accordion behaviour in assets/js/brand.js.
   ========================================================================== */

/* ── Surface shell ── */
/* The comparison/lineup tables scroll horizontally inside .dxb-tablewrap
   (overflow-x:auto). On narrow viewports that inner scrollable overflow leaks
   into the document's scroll width, adding a large empty band on the right —
   the global `html { overflow-x: clip }` guard does not absorb it because clip
   on the root does not establish a scroll container. Clipping on the surface
   body (a real clip context, still not a scroll container so sticky/fixed are
   unaffected) contains the leak while the table keeps its own inner scroll. */
body.droix-brand-surface { overflow-x: clip; }
body.droix-brand-surface #content.site-content { padding: 0; background: #fff; }
body.droix-brand-surface .dxb-root a { text-decoration: none; }
/* Legacy per-brand logo injectors (e.g. the "VIKI AYN Brand Logo" Elementor
   snippet) append .droix-brand-logo after the first h1 — the new hero has its
   own logo slot, so keep them inert on this surface. */
body.droix-brand-surface .droix-brand-logo { display: none !important; }

.dxb-root {
  --accent: var(--droix-green);
  --accent-dark: var(--droix-green-dark);
  --accent-tint: var(--droix-green-tint);
  font-family: var(--font-body);
}

.dxb-main { max-width: 1400px; margin: 0 auto; padding: 0 32px 80px; }

/* ── breadcrumb ── */
.dxb-crumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; padding: 20px 2px 0; font-family: var(--font-body); font-size: 13px; color: var(--fg-4); }
.dxb-crumbs a { color: var(--fg-4); text-decoration: none; }
.dxb-crumbs a:hover { color: var(--accent-dark); }
.dxb-crumbs .sep { color: var(--fg-disabled); }
.dxb-crumbs .cur { color: var(--fg-2); font-weight: 600; }

/* ════════════════ BRAND HERO ════════════════ */
.dxb-hero {
  position: relative; margin-top: 14px; overflow: hidden;
  border-radius: var(--radius-3xl); border: 1px solid var(--stroke-1);
  padding: 52px 48px 48px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(176,203,31,0.16), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--bg-2) 100%);
}
.dxb-hero-top { display: flex; flex-direction: column; align-items: center; gap: 16px; max-width: 800px; }
.dxb-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  font-family: var(--font-ui); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent-dark); background: var(--accent-tint);
  padding: 7px 14px; border-radius: var(--radius-pill);
}
.dxb-eyebrow svg { width: 15px; height: 15px; }
.dxb-brandname {
  font-family: var(--font-ui); font-weight: 700; font-size: clamp(46px, 7vw, 88px);
  line-height: 0.94; letter-spacing: -0.03em; color: var(--fg-1); margin: 2px 0 0;
}
.dxb-tagline { font-family: var(--font-ui); font-weight: 500; font-size: clamp(18px, 2vw, 23px); color: var(--fg-2); margin: -2px 0 0; }
.dxb-intro { font-family: var(--font-body); font-size: 15.5px; line-height: 1.65; color: var(--fg-3); margin: 4px 0 0; max-width: 64ch; text-wrap: pretty; }
.dxb-hero-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 6px; }
.dxb-trustrow { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; margin-top: 6px; }
.dxb-trust { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-body); font-size: 13px; color: var(--fg-3); }
.dxb-trust svg { color: var(--accent-dark); flex: 0 0 auto; }

/* buttons */
.dxb-btn {
  display: inline-flex; align-items: center; gap: 9px; cursor: pointer;
  font-family: var(--font-ui); font-weight: 700; font-size: 15px; text-decoration: none;
  padding: 14px 24px; border-radius: var(--radius-lg); border: 1px solid transparent;
  background: var(--accent); color: var(--fg-1); box-shadow: var(--shadow-cta);
  transition: background .16s ease, color .16s ease, transform .12s ease;
}
.dxb-btn:hover { background: var(--accent-dark); color: #fff; }
.dxb-btn:active { transform: translateY(1px); box-shadow: none; }
.dxb-btn.ghost { background: #fff; color: var(--fg-2); border-color: var(--stroke-3); box-shadow: none; }
.dxb-btn.ghost:hover { background: var(--bg-2); color: var(--fg-1); }

/* logo (between name and lifestyle image) */
.dxb-hero-logo { margin-top: 30px; }
.dxb-logo-slot {
  display: flex; align-items: center; justify-content: center; width: 300px; height: 104px; padding: 16px 26px;
  background: #fff; border: 1px solid var(--stroke-1); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}
.dxb-logo-slot img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* lifestyle banner */
.dxb-hero-life {
  display: block; width: 100%; max-width: 1080px; height: 400px; margin-top: 28px; overflow: hidden;
  border-radius: var(--radius-2xl); background: var(--bg-3); border: 1px solid var(--stroke-1);
}
.dxb-hero-life img { width: 100%; height: 100%; object-fit: cover; }

/* facts strip */
.dxb-facts {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 16px;
  background: var(--stroke-1); border: 1px solid var(--stroke-1);
  border-radius: var(--radius-xl); overflow: hidden;
}
.dxb-fact { background: #fff; padding: 18px 22px; }
.dxb-fact .k { font-family: var(--font-body); font-size: 12px; color: var(--fg-4); text-transform: uppercase; letter-spacing: 0.05em; }
.dxb-fact .v { font-family: var(--font-ui); font-weight: 700; font-size: 16px; color: var(--fg-1); margin-top: 5px; }

/* ════════════════ STATS BAND ════════════════ */
.dxb-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 24px;
  background: var(--bg-dark); border-radius: var(--radius-2xl); padding: 30px 36px;
}
.dxb-stat { text-align: center; }
.dxb-stat .n { font-family: var(--font-ui); font-weight: 700; font-size: clamp(24px, 3vw, 36px); color: #fff; letter-spacing: -0.01em; }
.dxb-stat .l { font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,0.62); margin-top: 4px; line-height: 1.4; }

/* ── section head ── */
.dxb-sec { margin-top: 60px; }
.dxb-sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.dxb-sec-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  font-family: var(--font-ui); font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent-dark);
}
.dxb-sec-eyebrow .d { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.dxb-sec-h { font-family: var(--font-ui); font-weight: 700; font-size: clamp(24px, 2.6vw, 32px); color: var(--fg-1); margin: 6px 0 0; letter-spacing: -0.01em; }
.dxb-sec-sub { font-family: var(--font-body); font-size: 14.5px; color: var(--fg-4); margin: 8px 0 0; max-width: 66ch; line-height: 1.6; }
.dxb-sec-link {
  display: inline-flex; align-items: center; gap: 6px; text-decoration: none; white-space: nowrap;
  font-family: var(--font-ui); font-size: 14px; font-weight: 600; color: var(--accent-dark);
}
.dxb-sec-link:hover { gap: 9px; color: var(--accent-dark); }

/* product grids */
.dxb-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.dxb-grid--all { margin-bottom: 6px; }
.dxb-empty { font-family: var(--font-body); color: var(--fg-4); }

/* WooCommerce pagination restyle (design .cat-pager look) */
.droix-brand-surface .woocommerce-pagination { margin-top: 34px; text-align: center; }
.droix-brand-surface .woocommerce-pagination ul.page-numbers { display: inline-flex; align-items: center; gap: 8px; border: 0; margin: 0; }
.droix-brand-surface .woocommerce-pagination ul.page-numbers li { border: 0; }
.droix-brand-surface .woocommerce-pagination .page-numbers li .page-numbers {
  min-width: 42px; height: 42px; padding: 0 10px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-ui); font-weight: 500; font-size: 14.5px; color: var(--fg-3);
  border: 1px solid var(--stroke-2); background: #fff;
}
.droix-brand-surface .woocommerce-pagination .page-numbers li .page-numbers:hover { border-color: var(--accent); color: var(--accent-dark); }
.droix-brand-surface .woocommerce-pagination .page-numbers li .page-numbers.current { background: var(--fg-2); border-color: var(--fg-2); color: #fff; }

/* ════════════════ ABOUT + RANGES ════════════════ */
.dxb-about { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; margin-top: 60px; }
.dxb-about-h { margin-bottom: 14px; }
.dxb-about-copy p { font-family: var(--font-body); font-size: 15px; line-height: 1.7; color: var(--fg-3); margin: 0 0 16px; text-wrap: pretty; }
.dxb-ranges-eyebrow { margin-bottom: 14px; }
.dxb-ranges { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dxb-range {
  display: flex; flex-direction: column; gap: 8px; text-decoration: none;
  background: #fff; border: 1px solid var(--stroke-1); border-radius: var(--radius-lg);
  padding: 18px; transition: border-color .16s ease, box-shadow .16s ease, transform .12s ease;
}
.dxb-range:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.dxb-range-ic { width: 40px; height: 40px; border-radius: var(--radius-md); background: var(--accent-tint); color: var(--accent-dark); display: flex; align-items: center; justify-content: center; }
.dxb-range-t { font-family: var(--font-ui); font-weight: 700; font-size: 15px; color: var(--fg-1); }
.dxb-range-d { font-family: var(--font-body); font-size: 13px; line-height: 1.5; color: var(--fg-4); }

/* ════════════════ WHY DROIX ════════════════ */
.dxb-why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.dxb-why-card { background: #fff; border: 1px solid var(--stroke-1); border-radius: var(--radius-xl); padding: 24px; box-shadow: var(--shadow-sm); }
.dxb-why-ic { width: 46px; height: 46px; border-radius: var(--radius-md); background: var(--accent-tint); color: var(--accent-dark); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.dxb-why-t { font-family: var(--font-ui); font-weight: 700; font-size: 15.5px; color: var(--fg-1); }
.dxb-why-d { font-family: var(--font-body); font-size: 13.5px; line-height: 1.55; color: var(--fg-4); margin-top: 6px; }

/* ════════════════ BLOG REVIEWS ════════════════ */
.dxb-blog { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.dxb-post { display: flex; flex-direction: column; text-decoration: none; overflow: hidden; background: #fff; border: 1px solid var(--stroke-1); border-radius: var(--radius-xl); box-shadow: var(--shadow-sm); transition: box-shadow .16s ease, transform .12s ease; }
.dxb-post:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.dxb-post-img { position: relative; height: 180px; overflow: hidden; background: var(--bg-2); }
.dxb-post-img img { width: 100%; height: 100%; object-fit: cover; }
.dxb-post-cat { position: absolute; top: 12px; left: 12px; font-family: var(--font-ui); font-weight: 700; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fg-1); background: var(--accent); padding: 5px 11px; border-radius: var(--radius-pill); }
.dxb-post-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.dxb-post-meta { font-family: var(--font-body); font-size: 12px; color: var(--fg-5); }
.dxb-post-t { font-family: var(--font-ui); font-weight: 700; font-size: 17px; line-height: 1.25; color: var(--fg-1); margin: 0; }
.dxb-post-ex { font-family: var(--font-body); font-size: 13.5px; line-height: 1.55; color: var(--fg-4); margin: 0; }
.dxb-post-read { display: inline-flex; align-items: center; gap: 6px; margin-top: auto; padding-top: 6px; font-family: var(--font-ui); font-weight: 600; font-size: 13.5px; color: var(--accent-dark); }
.dxb-post:hover .dxb-post-read { gap: 9px; }

/* ════════════════ KNOWLEDGE BASE ════════════════ */
.dxb-kb { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dxb-kb-item { display: flex; align-items: center; gap: 14px; text-decoration: none; background: #fff; border: 1px solid var(--stroke-1); border-radius: var(--radius-lg); padding: 16px 18px; transition: border-color .16s ease, background .16s ease; }
.dxb-kb-item:hover { border-color: var(--accent); background: var(--accent-tint); }
.dxb-kb-ic { width: 38px; height: 38px; border-radius: var(--radius-sm); background: var(--bg-3); color: var(--accent-dark); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.dxb-kb-item:hover .dxb-kb-ic { background: #fff; }
.dxb-kb-txt { display: flex; flex-direction: column; }
.dxb-kb-t { font-family: var(--font-ui); font-weight: 600; font-size: 14.5px; color: var(--fg-1); line-height: 1.3; }
.dxb-kb-time { font-family: var(--font-body); font-size: 12px; color: var(--fg-5); margin-top: 2px; }
.dxb-kb-arrow { margin-left: auto; color: var(--fg-disabled); flex: 0 0 auto; }
.dxb-kb-item:hover .dxb-kb-arrow { color: var(--accent-dark); }

/* ════════════════ FAQ ════════════════ */
.dxb-faq { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 40px; align-items: start; }
.dxb-faq-aside { position: sticky; top: 24px; }
.dxb-faq-aside .dxb-sec-h { margin-top: 8px; }
.dxb-faq-aside p { font-family: var(--font-body); font-size: 14.5px; line-height: 1.65; color: var(--fg-4); margin: 14px 0 20px; }
.dxb-faq-aside .dxb-btn { display: inline-flex; }
.dxb-faq-list { background: #fff; border: 1px solid var(--stroke-1); border-radius: var(--radius-xl); padding: 4px 24px; box-shadow: var(--shadow-sm); }
.dxb-faq-q {
  all: unset; box-sizing: border-box; cursor: pointer; width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 2px; font-family: var(--font-ui); font-weight: 600; font-size: 16.5px; color: var(--fg-1);
}
.dxb-faq-row { border-bottom: 1px solid var(--stroke-1); }
.dxb-faq-row:last-child { border-bottom: none; }
.dxb-faq-q svg { flex: 0 0 auto; color: var(--accent-dark); transition: transform .25s ease; }
.dxb-faq-row.open .dxb-faq-q svg { transform: rotate(45deg); }
.dxb-faq-a-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.dxb-faq-row.open .dxb-faq-a-wrap { grid-template-rows: 1fr; }
.dxb-faq-a-inner { overflow: hidden; }
.dxb-faq-a { font-family: var(--font-body); font-size: 14.5px; line-height: 1.65; color: var(--fg-3); padding: 0 2px 22px; margin: 0; max-width: 66ch; }

/* ════════════════ GEO: SUMMARY / TABLES / GUIDE ════════════════ */

/* visually-hidden (keeps header cells accessible without showing them) */
.dxb-vh { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ── Answer-first summary ── */
.dxb-summary {
  display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: 24px 40px; align-items: start;
  padding: 30px 32px; border: 1px solid var(--stroke-1); border-radius: var(--radius-2xl);
  background: linear-gradient(180deg, #fff 0%, var(--bg-2) 100%);
}
.dxb-summary .dxb-sec-h { margin-top: 6px; }
.dxb-summary-lead { font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--fg-2); margin: 12px 0 0; max-width: 68ch; text-wrap: pretty; }
.dxb-quickfacts { display: grid; gap: 8px; margin: 0; }
.dxb-quickfact { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 14px; background: #fff; border: 1px solid var(--stroke-1); border-radius: var(--radius-lg); }
.dxb-quickfact dt { font-family: var(--font-body); font-size: 13px; color: var(--fg-4); }
.dxb-quickfact dd { font-family: var(--font-ui); font-weight: 700; font-size: 13.5px; color: var(--fg-1); margin: 0; text-align: right; }

/* ── Shared table shell (line-up / best-for / compare) ── */
.dxb-tablewrap { overflow-x: auto; border: 1px solid var(--stroke-1); border-radius: var(--radius-xl); background: #fff; -webkit-overflow-scrolling: touch; }
.dxb-tablewrap:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.dxb-table { width: 100%; min-width: 640px; border-collapse: collapse; font-family: var(--font-body); font-size: 14px; background: #fff; }
.dxb-table thead th {
  font-family: var(--font-ui); font-weight: 700; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--fg-4); text-align: left; padding: 13px 16px; background: var(--bg-2);
  border-bottom: 1px solid var(--stroke-1); white-space: nowrap;
}
.dxb-table tbody th, .dxb-table tbody td { padding: 14px 16px; border-bottom: 1px solid var(--stroke-1); color: var(--fg-3); text-align: left; vertical-align: middle; }
.dxb-table tbody tr:last-child th, .dxb-table tbody tr:last-child td { border-bottom: 0; }
.dxb-table tbody tr:hover th, .dxb-table tbody tr:hover td { background: var(--bg-2); }
.dxb-table tbody th { font-family: var(--font-ui); font-weight: 700; color: var(--fg-1); }
.dxb-tbl-model { white-space: nowrap; }
.dxb-tbl-model a { color: var(--fg-1); }
.dxb-tbl-model a:hover { color: var(--accent-dark); }

/* line-up price cell (main.js updateProductPrices rewrites the <bdi>/<del>) */
.dxb-tbl-price { white-space: nowrap; font-family: var(--font-ui); font-weight: 700; color: var(--fg-1); }
.dxb-tbl-price .dxb-price { display: inline-block; }
.dxb-tbl-price del { color: var(--fg-disabled); font-weight: 500; font-size: 12px; margin-right: 5px; }
.dxb-tbl-price ins { text-decoration: none; }
.dxb-tbl-price .woocommerce-price-suffix { display: block; font-weight: 500; font-size: 11px; color: var(--fg-4); }

/* stock pill */
.dxb-pill { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-ui); font-weight: 600; font-size: 12px; white-space: nowrap; padding: 5px 10px; border-radius: var(--radius-pill); border: 1px solid var(--stroke-1); color: var(--fg-4); background: var(--bg-2); }
.dxb-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.dxb-pill--in { color: #1a7f37; background: rgba(26,127,55,0.08); border-color: rgba(26,127,55,0.22); }
.dxb-pill--pre { color: #b25e00; background: rgba(178,94,0,0.08); border-color: rgba(178,94,0,0.22); }

/* line-up CTA */
.dxb-tbl-cta { text-align: right; white-space: nowrap; }
.dxb-tlink { display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-ui); font-weight: 700; font-size: 13px; color: var(--accent-dark); transition: gap .15s ease; }
.dxb-tlink:hover { gap: 8px; }
.dxb-tlink svg { width: 14px; height: 14px; }

/* best-for */
.dxb-bf-pick { white-space: nowrap; }
.dxb-bf-pick a { color: var(--accent-dark); font-family: var(--font-ui); font-weight: 700; }
.dxb-bestfor tbody th { white-space: nowrap; }

/* compare — highlight the brand's own column */
.dxb-compare-own { background: var(--accent-tint); color: var(--fg-1); font-weight: 600; }
.dxb-compare thead th:nth-child(2) { color: var(--accent-dark); }
.dxb-compare-note { font-family: var(--font-body); font-size: 12.5px; color: var(--fg-4); margin: 12px 2px 0; line-height: 1.5; max-width: 80ch; }

/* buying guide */
.dxb-guide-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 28px; }
.dxb-guide-item { padding: 20px 22px; border: 1px solid var(--stroke-1); border-radius: var(--radius-xl); background: #fff; }
.dxb-guide-q { font-family: var(--font-ui); font-weight: 700; font-size: 16px; color: var(--fg-1); margin: 0 0 8px; }
.dxb-guide-a { font-family: var(--font-body); font-size: 14.5px; line-height: 1.65; color: var(--fg-3); margin: 0; text-wrap: pretty; }

/* ══════════════ TABLET (700–1099px) ══════════════ */
@media (max-width: 1099px) {
  .dxb-main { padding: 0 24px 64px; }
  .dxb-hero { padding: 44px 36px 40px; }
  .dxb-hero-life { height: 320px; }
  .dxb-grid { grid-template-columns: repeat(2, 1fr); }
  .dxb-grid--all { grid-template-columns: repeat(3, 1fr); }
  .dxb-facts { grid-template-columns: repeat(2, 1fr); }
  .dxb-stats { grid-template-columns: repeat(2, 1fr); gap: 24px 20px; padding: 28px; }
  .dxb-about { grid-template-columns: 1fr; gap: 32px; }
  .dxb-why { grid-template-columns: repeat(2, 1fr); }
  .dxb-blog { grid-template-columns: 1fr 1fr; }
  .dxb-blog .dxb-post:last-child { grid-column: 1 / -1; flex-direction: row; }
  .dxb-blog .dxb-post:last-child .dxb-post-img { width: 42%; height: auto; flex: 0 0 42%; }
  .dxb-faq { grid-template-columns: 1fr; gap: 24px; }
  .dxb-faq-aside { position: static; }
  .dxb-summary { grid-template-columns: 1fr; gap: 22px; padding: 26px 28px; }
}

/* ══════════════ MOBILE (<700px) ══════════════ */
@media (max-width: 699px) {
  .dxb-main { padding: 0 14px 52px; }
  .dxb-crumbs { padding-top: 14px; font-size: 12px; }

  .dxb-hero { padding: 34px 18px 30px; border-radius: var(--radius-2xl); }
  .dxb-brandname { font-size: clamp(40px, 13vw, 60px); }
  .dxb-intro { font-size: 14.5px; }
  .dxb-hero-ctas { width: 100%; }
  .dxb-hero-ctas .dxb-btn { flex: 1 1 auto; justify-content: center; }
  .dxb-trustrow { flex-direction: column; align-items: center; gap: 9px; }
  .dxb-hero-logo { margin-top: 24px; }
  .dxb-logo-slot { width: 230px; height: 84px; }
  .dxb-hero-life { height: 200px; margin-top: 22px; }

  .dxb-facts { grid-template-columns: 1fr 1fr; }
  .dxb-fact { padding: 14px 16px; }
  .dxb-stats { grid-template-columns: 1fr 1fr; gap: 22px 12px; padding: 24px 18px; border-radius: var(--radius-xl); }

  .dxb-sec { margin-top: 44px; }
  .dxb-sec-head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .dxb-grid, .dxb-grid--all { grid-template-columns: 1fr 1fr; gap: 12px; }

  .dxb-about { margin-top: 44px; }
  .dxb-ranges { grid-template-columns: 1fr; }
  .dxb-why { grid-template-columns: 1fr; }
  .dxb-blog { grid-template-columns: 1fr; }
  .dxb-blog .dxb-post:last-child { flex-direction: column; }
  .dxb-blog .dxb-post:last-child .dxb-post-img { width: 100%; height: 180px; flex: none; }
  .dxb-kb { grid-template-columns: 1fr; }
  .dxb-faq-list { padding: 2px 18px; }
  .dxb-faq-q { font-size: 15px; padding: 17px 2px; }

  .dxb-summary { padding: 22px 20px; border-radius: var(--radius-xl); }
  .dxb-summary-lead { font-size: 15px; }
  .dxb-guide-list { grid-template-columns: 1fr; gap: 12px; }
  .dxb-guide-item { padding: 18px 18px; }
  .dxb-table { font-size: 13.5px; min-width: 560px; }
  .dxb-table thead th, .dxb-table tbody th, .dxb-table tbody td { padding: 12px 13px; }
}

/* very small phones */
@media (max-width: 419px) {
  .dxb-grid, .dxb-grid--all { grid-template-columns: 1fr; }
  .dxb-facts { grid-template-columns: 1fr; }
}
