/* ======================================================================
   DOVAR LABS V16.1 — language, insight editorial, footer, custom-dev polish
   Remediation marker 2026-04-15: forced asset rotation after Safe Browsing / Search Console review.
   ====================================================================== */

:root {
  --surface-slate: #1E293B;
  --surface-slate-hover: #243449;
  --surface-slate-border: rgba(148, 163, 184, 0.16);
  --surface-slate-border-strong: rgba(148, 163, 184, 0.24);
  --surface-slate-shadow: 0 22px 46px rgba(2, 6, 23, 0.24);
  --surface-slate-shadow-strong: 0 28px 56px rgba(2, 6, 23, 0.3);
  --shared-surface-radius: 24px;
  --reveal-distance: 26px;
  --reveal-distance-side: 34px;
  --reveal-duration: 0.72s;
  --reveal-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --refine-surface: var(--surface-slate);
  --refine-surface-hover: var(--surface-slate-hover);
  --refine-surface-border: var(--surface-slate-border);
  --refine-surface-border-strong: var(--surface-slate-border-strong);
  --refine-surface-shadow: var(--surface-slate-shadow);
}

.fade-in,
.fade-in-left,
.fade-in-right,
.reveal {
  opacity: 0;
  transform: translate3d(0, var(--reveal-distance), 0);
  transition:
    opacity var(--reveal-duration) var(--reveal-ease),
    transform var(--reveal-duration) var(--reveal-ease);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.fade-in-left {
  transform: translate3d(calc(-1 * var(--reveal-distance-side)), 0, 0);
}

.fade-in-right {
  transform: translate3d(var(--reveal-distance-side), 0, 0);
}

.fade-in.visible,
.fade-in-left.visible,
.fade-in-right.visible,
.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .fade-in-left,
  .fade-in-right,
  .reveal {
    opacity: 1;
    transform: none;
    transition: none !important;
    transition-delay: 0s !important;
  }
}

.page-hero--wide-copy .section-subtitle,
.page-hero--wide-copy .section__desc {
  max-width: min(var(--page-hero-subtitle-max, 76ch), 100%);
}

:is(.metric-pill, .service-card, .promo-card, .custom-process-card, details.faq-item) {
  border: 1px solid var(--surface-slate-border);
  background: var(--surface-slate);
  box-shadow: var(--surface-slate-shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

:is(.metric-pill, .service-card, .promo-card, .custom-process-card):is(:hover, :focus-within) {
  background: var(--surface-slate-hover);
  border-color: var(--surface-slate-border-strong);
  transform: translateY(-4px);
  box-shadow: var(--surface-slate-shadow-strong);
}

.promo-card--accent {
  background: radial-gradient(circle at top right, rgba(100, 255, 218, 0.08), transparent 36%), var(--surface-slate);
  border-color: rgba(100, 255, 218, 0.18);
}

details.faq-item {
  margin-bottom: 0.92rem;
  border-radius: var(--shared-surface-radius);
  overflow: clip;
}

details.faq-item:is(:hover, :focus-within) {
  background: var(--surface-slate-hover);
  border-color: var(--surface-slate-border-strong);
  box-shadow: 0 24px 46px rgba(2, 6, 23, 0.28);
  transform: translateY(-2px);
}

details.faq-item summary {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  padding: 1.1rem 1.2rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.46;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
}

details.faq-item summary::-webkit-details-marker {
  display: none;
}

details.faq-item summary::after {
  content: '';
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  margin-left: auto;
  margin-top: 0.16rem;
  border-radius: 999px;
  background:
    linear-gradient(var(--accent), var(--accent)) center/12px 1.6px no-repeat,
    linear-gradient(var(--accent), var(--accent)) center/1.6px 12px no-repeat;
  transition: opacity var(--transition-fast), transform var(--transition-fast), background var(--transition-fast);
}

details.faq-item[open] summary {
  color: var(--text-primary);
  border-bottom: 1px solid var(--surface-slate-border);
}

details.faq-item[open] summary::after {
  background: linear-gradient(var(--accent), var(--accent)) center/12px 1.6px no-repeat;
  opacity: 0.95;
}

details.faq-item .faq-answer {
  padding: 0.95rem 1.2rem 1.15rem;
  font-size: 0.93rem;
  line-height: 1.76;
  color: rgba(226, 232, 240, 0.84);
}

details.faq-item .faq-answer a {
  color: var(--accent);
  text-decoration: underline;
}

.faq-page-cta p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* --- Language switcher: cleaned up with proper flag proportions --- */
.navbar__mobile-lang {
  display: none;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
}

.lang-selector {
  position: relative;
  z-index: 100;
  flex: 0 0 auto;
}

.lang-selector-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.6rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: all var(--transition-fast);
  box-shadow: none;
  min-height: 0;
}

.lang-selector-btn:hover,
.lang-selector.open .lang-selector-btn {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  box-shadow: none;
  transform: none;
}

.lang-selector-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(100, 255, 218, 0.12);
  border-color: rgba(100, 255, 218, 0.22);
}

.lang-selector-btn .lang-flag,
.lang-option .lang-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 16px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.lang-selector-btn .lang-flag img,
.lang-option .lang-flag img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.lang-selector-btn .lang-chevron {
  width: 12px;
  height: 12px;
  opacity: 0.5;
  transition: transform var(--transition-fast);
}

.lang-selector.open .lang-chevron {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 168px;
  padding: 0;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.15s ease;
  overflow: hidden;
  pointer-events: none;
}

.lang-selector.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
}

.lang-option:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
}

.lang-option.active {
  color: var(--accent);
  background: rgba(100, 255, 218, 0.06);
}

.lang-option-name {
  flex: 1;
  font-weight: 500;
}

.lang-option .lang-check {
  width: 14px;
  height: 14px;
  opacity: 0;
}

.lang-option.active .lang-check {
  opacity: 1;
  color: var(--accent);
}

.navbar__ctas .lang-selector {
  display: inline-flex;
}

/* --- Insight detail consistency --- */
.insight-page {
  background:
    radial-gradient(circle at top left, rgba(0, 229, 188, 0.065), transparent 24%),
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.06), transparent 22%),
    linear-gradient(180deg, #07101d 0%, #0b1320 55%, #0d1726 100%);
}

.insight-hero-panel,
.insight-body,
.insight-sidebar__card,
.insight-related,
.article-cta,
.article-note {
  background: var(--refine-surface);
  border: 1px solid var(--refine-surface-border);
  box-shadow: var(--refine-surface-shadow);
}

.insight-detail--pro {
  display: grid;
  gap: 1.25rem;
}

.insight-hero-panel {
  gap: 1rem;
  padding: 1.45rem 1.55rem 1.35rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(100, 255, 218, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(30, 41, 59, 0.98), rgba(19, 31, 49, 0.98));
}

.insight-hero-head {
  max-width: 100%;
}

.insight-hero-head h1,
.insight-hero-panel h1 {
  max-inline-size: 42ch;
  font-size: clamp(1.44rem, 1.82vw, 1.86rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.insight-lede {
  max-width: 74ch;
  color: rgba(226, 232, 240, 0.82);
}

.insight-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(272px, 330px);
  gap: 1.35rem;
  align-items: start;
}

.insight-main,
.insight-sidebar {
  display: grid;
  gap: 1.1rem;
}

.insight-body {
  padding: 1.6rem 1.5rem;
  border-radius: 26px;
}

.insight-sidebar__card,
.insight-related {
  padding: 1.12rem 1.05rem;
  border-radius: 24px;
}

.insight-body > *:first-child {
  margin-top: 0;
}

.insight-body > *:last-child {
  margin-bottom: 0;
}

.insight-body p,
.insight-body li,
.insight-sidebar__card p,
.insight-sidebar__card li,
.meta-chip,
.insight-breadcrumb,
.insight-toc__link,
.insight-toc__link--child,
.article-note,
.article-cta p {
  color: rgba(226, 232, 240, 0.86);
}

.insight-body h2,
.insight-body h3,
.insight-related h3,
.insight-sidebar__card h3,
.article-cta h3,
.insight-hero-panel .section-label,
.insight-sidebar__eyebrow {
  color: #f8fafc;
}

.insight-body h2 {
  margin-top: 1.95rem;
  font-size: clamp(1.18rem, 1.45vw, 1.42rem);
  line-height: 1.24;
}

.insight-body h2:first-of-type {
  margin-top: 0.5rem;
}

.insight-body h3 {
  margin-top: 1.2rem;
  font-size: clamp(1.01rem, 1.08vw, 1.14rem);
  line-height: 1.34;
}

.insight-body p,
.insight-body li {
  line-height: 1.88;
}

.insight-body strong,
.insight-body blockquote strong,
.insight-sidebar__card strong {
  color: #f8fafc;
}

.insight-body small,
.insight-body .text-muted {
  color: rgba(226, 232, 240, 0.74);
}

.insight-body a {
  color: var(--accent-bright);
}

.insight-body a:hover,
.insight-toc__link:hover,
.insight-toc__link.active,
.insight-related__link:hover {
  color: var(--text-primary);
}

.insight-body blockquote,
.article-note {
  background: rgba(100, 255, 218, 0.08);
  border-color: rgba(100, 255, 218, 0.14);
}

.insight-body .placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.92rem;
  margin-top: 1rem;
}

.insight-body .placeholder-card {
  padding: 1rem 1rem 1.02rem;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

.insight-body .placeholder-card :is(h2, h3) {
  margin: 0 0 0.55rem;
}

.insight-body .placeholder-card p {
  margin: 0;
}

.insight-body :not(pre) > code {
  background: rgba(255, 255, 255, 0.07);
}

.insight-related {
  display: grid;
  gap: 0.85rem;
}

.insight-related h3 {
  margin: 0;
  font-size: 1rem;
}

.insight-related__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.insight-related__link {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.16);
  color: var(--text-primary);
}

.insight-related__link:hover {
  background: rgba(100, 255, 218, 0.08);
  border-color: rgba(100, 255, 218, 0.2);
}

@media (max-width: 1180px) {
  .insight-content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1079px) {
  .navbar__mobile-lang {
    display: flex;
  }

  .navbar__mobile-lang .lang-selector {
    display: block;
  }

  .navbar__mobile-lang .lang-dropdown {
    left: 50%;
    right: auto;
    transform: translate(-50%, -4px);
  }

  .navbar__mobile-lang .lang-selector.open .lang-dropdown {
    transform: translate(-50%, 0);
  }

  .navbar__ctas .lang-selector {
    display: none;
  }
}

@media (max-width: 1024px) {
  .product-detail-page .product-hero-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      'side'
      'info';
    align-items: start;
  }

  html[dir="rtl"] .product-detail-page .product-hero-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      'side'
      'info';
  }
}

@media (max-width: 820px) {
  .insight-body .placeholder-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .lang-selector {
    display: none;
  }

  .navbar__mobile-lang .lang-selector {
    display: block !important;
  }

  .lang-selector-btn {
    padding: 0.3rem 0.5rem;
    font-size: 0.8rem;
  }

  .lang-dropdown {
    min-width: 150px;
  }

  .insight-hero-panel {
    padding: 1.2rem 1.08rem 1.15rem;
  }

  .insight-hero-head h1,
  .insight-hero-panel h1 {
    max-inline-size: 100%;
    font-size: clamp(1.34rem, 6.3vw, 1.68rem);
  }

  .insight-body,
  .insight-sidebar__card,
  .insight-related {
    border-radius: 22px;
  }

  .insight-body {
    padding: 1.22rem 1.05rem;
  }

  :is(.custom-dev-page, body[data-page-key="custom-development"]) .custom-dev-cta-band .promo-card {
    padding: 1.4rem;
  }
}

/* ======================================================================
   DOVAR LABS V17 — consistency cleanup, mobile polish, UI refinement
   ====================================================================== */

/* --- Navbar + language switcher cleanup --- */
.navbar__inner {
  align-items: center;
}

.navbar__ctas .btn,
.lang-selector-btn,
.navbar__toggle {
  border-radius: 14px;
}

.lang-selector-btn {
  gap: 0.42rem;
  padding: 0.42rem 0.68rem;
  border-color: rgba(148, 163, 184, 0.18);
  background: rgba(7, 16, 29, 0.76);
  color: rgba(226, 232, 240, 0.9);
}

.lang-selector-btn:hover,
.lang-selector.open .lang-selector-btn {
  border-color: rgba(100, 255, 218, 0.22);
  background: rgba(10, 20, 35, 0.92);
}

.lang-selector-btn .lang-flag,
.lang-option .lang-flag,
.lang-switcher__item-flag {
  width: 26px;
  height: 18px;
  flex: 0 0 26px;
  border-radius: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 0 0 1px rgba(15, 23, 42, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.12);
}

.lang-selector-btn .lang-flag img,
.lang-option .lang-flag img,
.lang-switcher__item-flag img {
  width: 100%;
  height: 100%;
  border-radius: 0 !important;
  object-fit: cover;
}

.lang-dropdown {
  border-radius: 16px;
}

.lang-option {
  margin: 4px;
  border-radius: 10px;
}

/* --- Insight editorial consistency --- */
.insight-body p,
.insight-body li,
.insight-sidebar__card p,
.insight-sidebar__card li,
.insight-toc__link,
.insight-breadcrumb,
.article-cta p,
.insight-lede,
.meta-chip {
  color: rgba(226, 232, 240, 0.86) !important;
}

.insight-body h2,
.insight-body h3,
.insight-related h3,
.article-cta h3,
.insight-sidebar__eyebrow {
  color: #f8fafc !important;
}

.insight-body strong,
.insight-sidebar__card strong,
.article-cta strong {
  color: #f8fafc;
}

.meta-chip {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(148, 163, 184, 0.18) !important;
}

.meta-chip--author {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  background: rgba(100, 255, 218, 0.08) !important;
  border-color: rgba(100, 255, 218, 0.22) !important;
  color: #f8fafc !important;
}

.meta-chip__label {
  color: rgba(148, 163, 184, 0.92);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.meta-chip__author-name {
  color: #f8fafc;
  font-weight: 700;
}

.btn--primary[href*="custom-development"],
.article-cta .btn--primary,
.article-cta .btn--primary span {
  color: #020617 !important;
}

/* --- Product related items use real product avatars --- */
.product-detail-related {
  gap: 0.8rem;
}

.product-related__item {
  align-items: center;
  gap: 0.84rem;
  padding: 0.82rem 0.88rem;
}

.product-related__avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.product-related__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-related__avatar--fallback {
  color: var(--accent-bright);
  font-size: 1rem;
  font-weight: 700;
}

.product-related__content {
  display: grid;
  gap: 0.14rem;
  min-width: 0;
}

.product-related__content strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.92rem;
  line-height: 1.32;
}

.product-related__content small {
  color: rgba(148, 163, 184, 0.9);
  font-size: 0.74rem;
  line-height: 1.4;
}

/* --- Custom development intro layout upgrade --- */
.custom-dev-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.88fr);
  gap: 1.35rem;
  align-items: start;
  margin-top: 1.85rem;
}

.custom-dev-overview-side {
  display: grid;
  gap: 1.35rem;
}

.custom-dev-note-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.2rem;
}

.custom-dev-note {
  display: inline-flex;
  align-items: center;
  padding: 0.48rem 0.74rem;
  border-radius: 999px;
  border: 1px solid rgba(100, 255, 218, 0.15);
  background: rgba(100, 255, 218, 0.08);
  color: #f8fafc;
  font-size: 0.78rem;
  font-weight: 600;
}

/* --- About page profile + refined stat strip --- */
.about-profile-card {
  padding: 2.45rem 2rem;
  display: grid;
  gap: 0.72rem;
  text-align: center;
}

.about-profile-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 0.45rem;
  display: block;
  border-radius: 34px;
  object-fit: cover;
  border: 3px solid rgba(100, 255, 218, 0.5);
  box-shadow: 0 18px 34px rgba(2, 6, 23, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.about-profile-name {
  margin: 0;
  font-size: 1.42rem;
}

.about-profile-role {
  margin: 0;
  color: var(--accent-bright);
  font-size: 0.92rem;
  font-weight: 600;
}

.about-profile-location {
  margin: 0;
  color: rgba(148, 163, 184, 0.92);
  font-size: 0.84rem;
}

.about-profile-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.about-profile-badge--gold {
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold);
}

.about-profile-actions {
  display: grid;
  gap: 0.68rem;
  margin-top: 0.45rem;
}

.about-profile-actions .btn {
  width: 100%;
}

.about-intro-story {
  padding: clamp(1.65rem, 2vw, 2.15rem);
  border-radius: 28px;
  border: 1px solid var(--refine-surface-border);
  background: var(--refine-surface);
  box-shadow: var(--refine-surface-shadow);
}

.about-intro-story p {
  margin: 0 0 1rem;
  color: rgba(226, 232, 240, 0.84);
  line-height: 1.84;
}

.about-intro-story p:last-child {
  margin-bottom: 0;
}

.about-intro-story strong {
  color: #f8fafc;
}

.about-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.012));
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.2);
}

.about-stat-inline {
  padding: 1.18rem 1.1rem;
  text-align: center;
}

.about-stat-inline + .about-stat-inline {
  border-left: 1px solid rgba(148, 163, 184, 0.16);
}

.about-stat-value {
  display: block;
  color: #f8fafc;
  font-size: clamp(1.7rem, 2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.about-stat-label {
  display: block;
  margin-top: 0.28rem;
  color: rgba(148, 163, 184, 0.9);
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* --- Mobile-first polish across the site --- */
@media (max-width: 1079px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .navbar {
    padding: 0.72rem 0 0;
  }

  .navbar__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.75rem;
    padding: 0.58rem 0.7rem;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(7, 16, 29, 0.92);
    box-shadow: 0 18px 36px rgba(2, 6, 23, 0.28);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .navbar__logo.brand-logo {
    margin: 0;
    min-width: 0;
    gap: 0.54rem;
    font-size: 0.96rem;
    letter-spacing: 0.05em;
  }

  .brand-logo__mark {
    width: 1.45rem;
    height: 1.45rem;
  }

  .navbar__mobile-lang {
    justify-content: center;
    min-width: 0;
  }

  .navbar__mobile-lang .lang-selector {
    min-width: 0;
  }

  .lang-selector-btn {
    min-height: 42px;
    padding: 0.48rem 0.62rem;
  }

  .navbar__toggle {
    width: 42px;
    height: 42px;
    margin: 0;
    border-radius: 12px;
  }

  .navbar__toggle span {
    width: 20px;
  }

}

@media (max-width: 767px) {
  .section {
    padding: clamp(2.8rem, 10vw, 3.3rem) 0;
  }

  .page-hero {
    padding: 6.45rem 0 2.05rem;
  }

  .page-hero h1 {
    font-size: clamp(1.86rem, 8vw, 2.44rem);
    line-height: 1.12;
  }

  .page-hero__intro {
    margin: 0;
    justify-items: start;
    text-align: start;
  }

  .page-hero__actions {
    justify-content: flex-start;
  }

  .page-hero .section-subtitle,
  .page-hero .section__desc,
  .section__desc,
  .section-subtitle {
    max-width: 100%;
    font-size: 0.97rem;
  }

  .grid-3,
  .grid-4,
  .service-grid,
  .promo-band,
  .custom-brief-grid,
  .custom-process-grid,
  .custom-dev-overview,
  .custom-dev-overview-side,
  .about-intro-top,
  .product-hero-grid,
  .product-detail-layout,
  .product-detail-layout--structured {
    grid-template-columns: 1fr;
  }

  .service-card,
  .promo-card,
  .product-detail-card,
  .product-gallery,
  .product-spec-card,
  .article-cta,
  .about-profile-card,
  .about-intro-story,
  .about-stat-strip {
    border-radius: 22px;
  }

  .metric-pill,
  .service-card,
  .promo-card,
  .custom-process-card,
  .product-detail-card {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }

  .product-detail-layout {
    gap: 1.2rem;
  }

  .product-related__item {
    padding: 0.78rem 0.8rem;
  }

  .product-related__avatar {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 12px;
  }

  .about-stat-strip {
    grid-template-columns: 1fr;
  }

  .about-stat-inline + .about-stat-inline {
    border-left: none;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
  }

  .about-profile-avatar {
    width: 104px;
    height: 104px;
    border-radius: 28px;
  }

  .custom-dev-note-strip {
    gap: 0.5rem;
  }

  .custom-dev-note {
    width: 100%;
    justify-content: center;
    border-radius: 14px;
  }
}

/* ======================================================================
   DOVAR LABS V17 — requested UI corrections (mobile, about, FAQ, contact)
   ====================================================================== */

/* --- Keep product support CTA stable on hover --- */
.product-detail-support,
.product-detail-support:hover,
.product-detail-support:focus-visible {
  background: var(--accent-gradient) !important;
  color: #020617 !important;
  border: 1px solid rgba(100, 255, 218, 0.16) !important;
}

.product-detail-support:hover,
.product-detail-support:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 22px 40px rgba(0, 229, 188, 0.3) !important;
}

/* --- Language switcher: lighter trigger, dropdown unchanged --- */
.lang-selector-btn {
  background: rgba(255, 255, 255, 0.024);
  border-color: rgba(148, 163, 184, 0.18);
  color: rgba(226, 232, 240, 0.86);
}

.lang-selector-btn:hover,
.lang-selector.open .lang-selector-btn {
  background: rgba(255, 255, 255, 0.048);
  border-color: rgba(148, 163, 184, 0.24);
  color: #f8fafc;
}

/* --- Insight related resources use proper thumbnail cards --- */
.insight-related__list {
  display: grid;
  gap: 0.82rem;
}

.insight-related__link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.84rem 0.88rem;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  text-decoration: none;
  transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}

.insight-related__link:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(100, 255, 218, 0.18);
  box-shadow: 0 18px 34px rgba(2, 6, 23, 0.22);
  transform: translateY(-1px);
}

.insight-related__thumb {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.045);
}

.insight-related__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insight-related__thumb--fallback {
  color: var(--accent-bright);
  font-size: 0.98rem;
  font-weight: 700;
}

.insight-related__copy {
  display: grid;
  gap: 0.14rem;
  min-width: 0;
  flex: 1 1 auto;
}

.insight-related__copy strong {
  color: var(--text-primary);
  font-size: 0.92rem;
  line-height: 1.32;
}

.insight-related__copy small {
  color: rgba(148, 163, 184, 0.92);
  font-size: 0.74rem;
  line-height: 1.4;
}

.insight-related__arrow {
  color: rgba(148, 163, 184, 0.9);
  font-size: 0.94rem;
  line-height: 1;
}

/* --- Custom development overview aligned with shared section rhythm --- */
.custom-dev-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.3rem;
}

.custom-dev-overview-panel {
  display: grid;
  gap: 0.72rem;
  align-content: start;
}

.custom-dev-overview-panel h4 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
  color: #f8fafc;
}

.custom-dev-overview-panel p {
  margin: 0;
  color: rgba(226, 232, 240, 0.84);
  line-height: 1.72;
}

.custom-dev-overview-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.custom-dev-overview-panel li {
  position: relative;
  padding-left: 1rem;
  color: rgba(226, 232, 240, 0.86);
  line-height: 1.68;
}

.custom-dev-overview-panel li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(100, 255, 218, 0.1);
}

.custom-dev-overview-caution {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.custom-dev-caution-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.68rem;
  margin: 0;
  padding: 0;
}

.custom-dev-caution-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  padding: 0.56rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 158, 11, 0.18);
  background: rgba(245, 158, 11, 0.09);
  color: rgba(248, 250, 252, 0.94);
  font-size: 0.82rem;
  line-height: 1.45;
}

.custom-dev-caution-list li::before {
  content: '';
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

/* --- About page key numbers: simpler, more refined --- */
.about-stat-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 820px;
  margin: 0 auto;
  padding: 0.4rem 0;
  overflow: visible;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-stat-strip::before,
.about-stat-strip::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.26), transparent);
}

.about-stat-strip::before {
  top: 0;
}

.about-stat-strip::after {
  bottom: 0;
}

.about-stat-inline {
  position: relative;
  padding: 1.15rem 1.2rem 1.05rem;
  text-align: center;
}

.about-stat-inline + .about-stat-inline {
  border-left: none;
}

.about-stat-inline + .about-stat-inline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(148, 163, 184, 0.22), transparent);
}

.about-stat-value {
  display: block;
  color: #f8fafc;
  font-size: clamp(1.82rem, 2.2vw, 2.18rem);
  font-weight: 720;
  letter-spacing: -0.05em;
}

.about-stat-label {
  display: block;
  margin-top: 0.22rem;
  color: rgba(148, 163, 184, 0.92);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: none;
}

/* --- Home FAQ + Contact alignment and icon accuracy --- */
.home-help-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: start;
}

.home-help-column {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.home-help-header {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  min-height: 132px;
}

.home-help-header .section__title {
  margin-bottom: 0;
}

.home-help-copy {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 58ch;
}

.home-faq-list,
.home-contact-list,
.contact-quick-list {
  display: grid;
  gap: 1rem;
}

.home-faq-item {
  padding: 1.25rem 1.45rem;
  cursor: pointer;
}

.home-faq-item__summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.45;
}

.home-faq-item__summary::marker,
.home-faq-item__summary::-webkit-details-marker {
  display: none;
  content: '';
}

.home-faq-item__icon {
  position: relative;
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  margin-top: 0.16rem;
}

.home-faq-item__icon::before,
.home-faq-item__icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 999px;
  background: var(--accent);
  transform: translate(-50%, -50%);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.home-faq-item__icon::before {
  width: 12px;
  height: 1.6px;
}

.home-faq-item__icon::after {
  width: 1.6px;
  height: 12px;
}

.home-faq-item[open] .home-faq-item__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0.2);
}

.home-faq-item p {
  margin: 0.95rem 0 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.74;
}

.contact-link-card {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.12rem;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  box-shadow: 0 16px 32px rgba(2, 6, 23, 0.18);
  transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-link-card:hover {
  transform: translateY(-1px);
  border-color: rgba(100, 255, 218, 0.18);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 38px rgba(2, 6, 23, 0.22);
}

.contact-link-card__icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(100, 255, 218, 0.16);
  background: rgba(100, 255, 218, 0.08);
  color: var(--accent);
}

.contact-link-card__icon svg {
  width: 21px;
  height: 21px;
  display: block;
}

.contact-link-card__icon--email {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.16);
  color: #93c5fd;
}

.contact-link-card__icon--linkedin {
  background: rgba(96, 165, 250, 0.08);
  border-color: rgba(96, 165, 250, 0.16);
  color: #93c5fd;
}

.contact-link-card__copy {
  display: grid;
  gap: 0.16rem;
  min-width: 0;
}

.contact-link-card__copy strong {
  color: var(--text-primary);
  font-size: 0.94rem;
  line-height: 1.34;
}

.contact-link-card__copy small {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.contact-link-card__copy span {
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.48;
}

/* --- Mobile navbar: keep original simple feel, just improve spacing --- */
@media (max-width: 1079px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .navbar {
    padding: 0.78rem 0;
  }

  .navbar__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.72rem;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .navbar__logo.brand-logo {
    gap: 0.54rem;
    margin: 0;
  }

  .navbar__mobile-lang {
    justify-content: center;
  }

  .navbar__toggle {
    width: 44px;
    height: 44px;
    margin: 0;
    border: none;
    border-radius: 12px;
    background: transparent;
    box-shadow: none;
  }

  .navbar__toggle:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: transparent;
  }

  .navbar__toggle span {
    width: 20px;
  }

  .lang-selector-btn {
    min-height: 40px;
    padding: 0.44rem 0.58rem;
  }
}

@media (max-width: 767px) {
  .custom-dev-overview-grid,
  .home-help-grid {
    grid-template-columns: 1fr;
  }

  .custom-dev-overview-panel {
    border-radius: 18px;
  }

  .custom-dev-caution-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-help-header {
    min-height: 0;
  }

  .home-faq-item,
  .contact-link-card {
    border-radius: 18px;
  }

  .insight-related__thumb,
  .product-related__avatar {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 12px;
  }

  .about-stat-strip {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .about-stat-strip::before,
  .about-stat-strip::after {
    display: none;
  }

  .about-stat-inline {
    padding: 1rem 0.15rem;
  }

  .about-stat-inline + .about-stat-inline::before {
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.22), transparent);
  }
}

/* --- 2026-04-02: stats typography + insight hero heading width --- */
.hero__stat-value,
.hero__stat-value--static,
.hero__stat-symbol,
.about-stat-value {
  font-family: var(--font-display);
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: 'lnum' 1, 'tnum' 1;
  letter-spacing: -0.045em;
}

.hero__stat-value {
  font-size: clamp(1.62rem, 2.35vw, 1.9rem);
}

.hero__stat-value--static {
  font-family: var(--font-display);
  font-size: clamp(1.36rem, 2vw, 1.58rem);
  font-weight: 700;
}

.hero__stat-label,
.about-stat-label {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
}

.about-stat-value {
  font-weight: 800;
}

.insight-hero-head {
  width: 100%;
  max-width: none;
}

.insight-hero-head h1,
.insight-hero-panel h1 {
  width: 100%;
  max-width: none !important;
  max-inline-size: none !important;
  text-wrap: pretty;
  overflow-wrap: normal;
}

.insight-card-title {
  text-wrap: pretty;
}

/* --- 2026-04-02: locale-safe wrapping for translated UI copy --- */
.section-subtitle,
.metric-pill span,
.card p,
.product-card p,
.insight-card p,
.legal-card p,
.legal-card li,
.faq-answer,
.contact-link-card__copy span,
.contact-link-card__copy small,
.article-content p,
.article-content li {
  overflow-wrap: anywhere;
}

.product-card h3,
.insight-card-title,
.section-header h2,
.section h2,
.section h3,
.hero h1,
.custom-dev-hero h1,
.legal-card h2,
.faq-item summary {
  text-wrap: balance;
  overflow-wrap: anywhere;
}

html[dir="rtl"] .metric-pill,
html[dir="rtl"] .contact-link-card,
html[dir="rtl"] .faq-item,
html[dir="rtl"] .legal-card,
html[dir="rtl"] .product-card,
html[dir="rtl"] .insight-card {
  text-align: right;
}

.product-hero-section .insight-breadcrumb {
  display: inline-flex;
  margin-bottom: 1rem;
}

html[dir="rtl"] .hero__text,
html[dir="rtl"] .hero__actions,
html[dir="rtl"] .product-info,
html[dir="rtl"] .product-detail-card,
html[dir="rtl"] .insight-hero-panel,
html[dir="rtl"] .insight-sidebar__card,
html[dir="rtl"] .insight-body {
  text-align: right;
}

html[dir="rtl"] .hero__actions {
  justify-content: flex-end;
}

html[lang^="zh"] .section-header h2,
html[lang^="zh"] .hero h1,
html[lang="ja"] .section-header h2,
html[lang="ja"] .hero h1 {
  line-break: auto;
}

html[lang^="zh"] .section-subtitle,
html[lang^="zh"] .hero__subtitle,
html[lang="ja"] .section-subtitle,
html[lang="ja"] .hero__subtitle {
  line-break: loose;
}

/* --- Accessibility: skip link --- */
.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 10050;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(8, 17, 31, 0.96);
  color: #f8fafc;
  border: 1px solid rgba(100, 255, 218, 0.35);
  box-shadow: 0 14px 30px rgba(2, 6, 23, 0.45);
  transform: translateY(-140%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.18s ease, opacity 0.18s ease;
}
.skip-link:focus {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
html[dir="rtl"] .skip-link {
  left: auto;
  right: 14px;
}

/* --- 2026-04-04 final release: featured cards, product hero, RTL polish --- */
.home-catalog-section .catalog-grid--products .product-card {
  padding: 0;
  overflow: hidden;
  min-height: 100%;
}

.home-catalog-section .catalog-grid--products .product-card-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 190px;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(148, 163, 184, 0.08), rgba(15, 23, 42, 0.02));
  border-bottom: 1px solid var(--border);
}

.home-catalog-section .catalog-grid--products .product-card-thumb {
  width: 108px;
  height: 108px;
  object-fit: contain;
}

.home-catalog-section .catalog-grid--products .product-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.35rem;
}

.home-catalog-section .catalog-grid--products .product-card-title {
  margin: 0;
  font-size: 1.14rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.home-catalog-section .catalog-grid--products .product-card-desc {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.65;
}

.home-catalog-section .catalog-grid--products .product-card-tags {
  margin-top: auto;
}

.home-catalog-section .catalog-grid--products .product-card-meta {
  align-items: center;
  gap: 0.85rem;
}

.product-card-badges {
  position: absolute;
  inset-block-start: 0.9rem;
  inset-inline-start: 0.9rem;
  inset-inline-end: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 2;
}

.product-hero-section {
  padding-block: clamp(2.35rem, 4.2vw, 3.7rem) 2rem;
}

.product-hero-shell {
  display: grid;
  grid-template-columns: minmax(292px, 0.84fr) minmax(0, 1.16fr);
  grid-template-areas: 'side info';
  gap: clamp(1.15rem, 2.4vw, 1.95rem);
  align-items: stretch;
  margin-top: 1rem;
}

.product-info--hero,
.product-hero-side {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: rgba(15, 23, 42, 0.48);
  box-shadow: 0 18px 52px rgba(15, 23, 42, 0.16);
  min-width: 0;
  block-size: 100%;
}

.product-info--hero {
  grid-area: info;
  position: relative;
  overflow: hidden;
  padding: clamp(1.45rem, 2.45vw, 2.1rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
}

.product-info--hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(14, 165, 233, 0.08), transparent 45%);
  pointer-events: none;
}

.product-info-stack {
  position: relative;
  display: grid;
  gap: 0.85rem;
  min-width: 0;
  align-content: start;
}

.product-info--hero h1 {
  margin: 0;
  max-inline-size: min(16.5ch, 100%);
  text-wrap: balance;
  letter-spacing: -0.03em;
}

.product-info--hero .product-promise {
  max-width: 62ch;
  margin: 0;
  overflow-wrap: anywhere;
}

.product-info--hero .product-info-badges,
.product-info--hero .product-inline-tags {
  margin-bottom: 0;
}

.product-hero-highlights {
  margin: 0;
  padding-inline-start: 1rem;
  display: grid;
  gap: 0.5rem;
  color: var(--text-secondary);
}

.product-hero-highlights li {
  margin: 0;
  overflow-wrap: anywhere;
}

.product-cta-row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: auto;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.product-cta-row .btn {
  flex: 0 1 auto;
  min-width: min(100%, 10.9rem);
  min-height: 46px;
  padding-inline: 0.95rem;
  text-align: center;
  line-height: 1.3;
  white-space: normal;
}

.product-hero-side {
  grid-area: side;
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.85rem;
  padding: clamp(0.9rem, 1.7vw, 1.1rem);
  background:
    radial-gradient(circle at top left, rgba(14, 165, 233, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.62), rgba(8, 14, 28, 0.84));
}

.product-hero-side::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.product-gallery--hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: auto;
  padding: var(--product-hero-gallery-padding, clamp(0.82rem, 1.35vw, 1rem));
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: calc(var(--radius-xl) - 8px);
  background:
    radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.18), rgba(15, 23, 42, 0.66) 62%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.5), rgba(2, 6, 23, 0.38));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.product-gallery--hero .product-hero-image {
  width: min(168px, 100%);
  max-height: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(15, 23, 42, 0.26));
}

.product-hero-summary {
  --product-hero-summary-gap: 0.75rem;
  --product-hero-summary-padding: 0.9rem;
  --product-hero-summary-head-gap: 0.75rem;
  --product-hero-media-track: minmax(128px, 152px);
  --product-hero-copy-track: minmax(0, 1fr);
  --product-hero-gallery-padding: clamp(0.82rem, 1.35vw, 1rem);
  --product-hero-price-padding: 0.9rem 0.95rem;
  position: relative;
  display: grid;
  grid-auto-rows: max-content;
  align-content: start;
  gap: var(--product-hero-summary-gap);
  padding: var(--product-hero-summary-padding);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: calc(var(--radius-xl) - 10px);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.56), rgba(15, 23, 42, 0.34));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.product-hero-summary-head {
  display: grid;
  grid-template-columns: var(--product-hero-media-track) var(--product-hero-copy-track);
  gap: var(--product-hero-summary-head-gap);
  align-items: stretch;
}

.product-hero-summary-head > * {
  min-width: 0;
}

.product-hero-summary .product-price-block {
  display: grid;
  align-content: center;
  padding: var(--product-hero-price-padding);
  margin: 0;
  min-height: 0;
  border: 1px solid rgba(0, 229, 188, 0.16);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(0, 229, 188, 0.08), rgba(0, 229, 188, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.product-price-value {
  margin-bottom: 0.3rem;
  line-height: 1.02;
  font-size: clamp(2rem, 3vw, 2.25rem);
}

.product-price-note,
.product-hero-fact__value,
.product-detail-table td,
.product-related__content strong,
.product-related__content small,
.product-hero-section .insight-breadcrumb {
  overflow-wrap: anywhere;
}

.product-price-note {
  font-size: 0.78rem;
  line-height: 1.38;
}

.product-hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  grid-auto-rows: 1fr;
  align-items: stretch;
}

.product-hero-fact {
  display: flex;
  flex-direction: column;
  gap: 0.24rem;
  min-width: 0;
  height: 100%;
  padding: 0.72rem 0.78rem;
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(148, 163, 184, 0.09);
}

.product-hero-fact__label {
  font-size: 0.69rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.product-hero-fact__value {
  font-size: 0.9rem;
  line-height: 1.34;
  color: var(--text-primary);
}

html[dir="rtl"] .product-card-badges {
  justify-content: flex-end;
}

html[dir="rtl"] .product-card-tags,
html[dir="rtl"] .product-inline-tags {
  justify-content: flex-end;
}

html[dir="rtl"] .product-card-meta {
  flex-direction: row-reverse;
}

html[dir="rtl"] .product-hero-highlights {
  padding-inline-start: 0;
  padding-inline-end: 1.1rem;
}

html[dir="rtl"] .product-hero-shell {
  grid-template-columns: minmax(0, 1.16fr) minmax(292px, 0.84fr);
  grid-template-areas: 'info side';
}

html[dir="rtl"] .product-hero-summary-head {
  grid-template-columns: var(--product-hero-copy-track) var(--product-hero-media-track);
}

html[dir="rtl"] .product-related__item:hover {
  transform: translateX(-4px);
}

@media (max-width: 1180px) {
  .product-hero-shell {
    grid-template-columns: minmax(275px, 0.86fr) minmax(0, 1.14fr);
  }

  .product-info--hero h1 {
    max-inline-size: min(17ch, 100%);
  }

  .product-hero-summary {
    --product-hero-media-track: minmax(140px, 0.82fr);
    --product-hero-copy-track: minmax(0, 1.18fr);
  }
}

@media (max-width: 1024px) {
  .product-hero-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      'side'
      'info';
    align-items: start;
  }

  .product-info--hero,
  .product-hero-side {
    block-size: auto;
  }


  .product-cta-row .btn {
    flex: 1 1 13rem;
  }

  .product-hero-summary {
    --product-hero-media-track: minmax(124px, 146px);
    --product-hero-copy-track: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .home-catalog-section .catalog-grid--products .product-card-image {
    min-height: 170px;
  }

  .home-catalog-section .catalog-grid--products .product-card-thumb {
    width: 92px;
    height: 92px;
  }

  .product-hero-shell {
    gap: 0.95rem;
  }

  .product-info--hero,
  .product-hero-side {
    padding: 1rem;
  }

  .product-info--hero h1 {
    max-inline-size: 100%;
  }

  .product-hero-summary {
    --product-hero-summary-gap: 0.65rem;
    --product-hero-summary-padding: 0.8rem;
    --product-hero-summary-head-gap: 0.65rem;
    --product-hero-media-track: minmax(112px, 128px);
    --product-hero-price-padding: 0.85rem 0.9rem;
  }

  .product-hero-summary .product-price-block {
    min-height: auto;
  }

  .product-hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-cta-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-cta-row .btn {
    width: 100%;
    min-width: 0;
  }

  .product-hero-summary {
    --product-hero-gallery-padding: 0.82rem;
  }

  .product-gallery--hero .product-hero-image {
    width: min(142px, 100%);
  }
}

@media (max-width: 430px) {
  .product-hero-facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .product-detail-table,
  .product-detail-table tbody,
  .product-detail-table tr {
    display: block;
    width: 100%;
  }

  .product-detail-table tr {
    display: grid;
    gap: 0.26rem;
    padding: 0.82rem 0;
  }

  .product-detail-table tr + tr {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .product-detail-table tr + tr > :is(th, td) {
    border-top: 0;
  }

  .product-detail-table th,
  .product-detail-table td {
    display: block;
    width: 100%;
    padding: 0;
    text-align: start;
  }

  .product-detail-table__value {
    justify-items: start;
  }

  html[dir="rtl"] .product-detail-table th,
  html[dir="rtl"] .product-detail-table td,
  html[dir="rtl"] .product-detail-table__value {
    text-align: right;
    justify-items: start;
  }
}

/* ======================================================================
   DOVAR LABS V18 — product detail / products mobile-specific polish
   ====================================================================== */

.product-detail-page .product-hero-section {
  padding-block: clamp(6.15rem, 8.8vw, 7.2rem) 1.9rem;
}

.product-detail-page .product-hero-section + .section {
  padding-block-start: clamp(1.7rem, 2.9vw, 2.15rem);
}

.product-detail-page .product-hero-topbar {
  display: flex;
  align-items: center;
  min-height: 1.5rem;
  margin-bottom: 0.9rem;
}

.product-detail-page .product-hero-breadcrumb {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}

.product-detail-page .product-hero-shell {
  gap: clamp(1rem, 2vw, 1.7rem);
  align-items: start;
}

.product-detail-page .product-info--hero {
  padding: clamp(1.32rem, 2.15vw, 1.9rem);
  gap: 0.92rem;
}

.product-detail-page .product-info-stack {
  inline-size: 100%;
  gap: 0.78rem;
}

.product-detail-page .product-info--hero h1 {
  inline-size: 100%;
  max-inline-size: 100%;
}

.product-detail-page .product-cta-row {
  gap: 0.62rem;
  padding-top: 0.5rem;
}

.product-detail-page .product-hero-side {
  gap: 0.74rem;
  padding: clamp(0.82rem, 1.45vw, 1rem);
  align-self: start;
  block-size: auto;
}

.product-detail-page .product-hero-summary {
  --product-hero-summary-gap: 0.65rem;
  --product-hero-summary-padding: 0.78rem;
  --product-hero-summary-head-gap: 0.68rem;
  --product-hero-media-track: minmax(112px, 134px);
  --product-hero-gallery-padding: clamp(0.7rem, 1.15vw, 0.86rem);
  --product-hero-price-padding: 0.72rem 0.82rem;
}

.product-detail-page .product-gallery--hero .product-hero-image {
  width: min(152px, 100%);
}

.product-detail-page .product-hero-facts {
  gap: 0.55rem;
}

.product-detail-page .product-hero-fact {
  padding: 0.62rem 0.7rem;
}

@media (min-width: 1025px) {
  .product-detail-page .product-hero-summary {
    --product-hero-summary-gap: 0.68rem;
    --product-hero-summary-padding: 0.78rem;
    --product-hero-summary-head-gap: 0.78rem;
    --product-hero-media-track: minmax(160px, 192px);
    --product-hero-gallery-padding: clamp(0.78rem, 1.2vw, 0.94rem);
    --product-hero-price-padding: 0.9rem 0.82rem;
  }

  .product-detail-page .product-hero-summary .product-price-block {
    justify-self: start;
    align-self: stretch;
    max-inline-size: min(100%, 16rem);
  }

  .product-detail-page .product-gallery--hero .product-hero-image {
    width: min(180px, 100%);
  }
}

.products-catalog-page .page-hero--catalog {
  padding-block: clamp(6.3rem, 8.9vw, 7.35rem) clamp(1.7rem, 3.6vw, 2.15rem);
}

.page-hero--collection > .container {
  max-width: min(100%, var(--page-hero-collection-max, 48rem));
}

.products-catalog-page .section-header h2,
.insights-archive .section-header h2 {
  text-wrap: balance;
}

.products-catalog-page .grid.grid-3.grid-section-gap .product-card {
  min-width: 0;
}

@media (max-width: 820px) {
  .product-detail-page .product-hero-section {
    padding-block-start: max(6rem, calc(env(safe-area-inset-top) + 5.55rem));
    padding-block-end: 1.3rem;
  }

  .product-detail-page .product-hero-topbar {
    margin-bottom: 0.75rem;
  }

  .product-detail-page .product-hero-shell {
    gap: 0.85rem;
  }

  .product-detail-page .product-hero-side {
    gap: 0.8rem;
    padding: 0.82rem;
    border-radius: 24px;
  }

  .product-detail-page .product-gallery--hero {
    border-radius: 18px;
  }

  .product-detail-page .product-gallery--hero .product-hero-image {
    width: 100%;
    max-width: 118px;
  }

  .product-detail-page .product-hero-summary {
    --product-hero-summary-gap: 0.6rem;
    --product-hero-summary-padding: 0;
    --product-hero-summary-head-gap: 0.72rem;
    --product-hero-media-track: minmax(104px, 118px);
    --product-hero-gallery-padding: 0.72rem;
    --product-hero-price-padding: 0.78rem 0.82rem;
    border: none;
    background: transparent;
    box-shadow: none;
    align-content: start;
  }

  .product-detail-page .product-hero-summary .product-price-block {
    min-height: 0;
    border-radius: 18px;
  }

  .product-detail-page .product-price-value {
    font-size: clamp(1.7rem, 7vw, 2rem);
    margin-bottom: 0.18rem;
  }

  .product-detail-page .product-price-note {
    font-size: 0.73rem;
    line-height: 1.32;
  }

  .product-detail-page .product-hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .product-detail-page .product-hero-fact {
    gap: 0.15rem;
    padding: 0.55rem 0.6rem;
    border-radius: 16px;
  }

  .product-detail-page .product-hero-fact__label {
    font-size: 0.62rem;
    letter-spacing: 0.04em;
  }

  .product-detail-page .product-hero-fact__value {
    font-size: 0.81rem;
    line-height: 1.26;
  }

  .product-detail-page .product-info--hero {
    gap: 0.85rem;
    padding: 1rem;
    border-radius: 24px;
  }

  .product-detail-page .product-info-stack {
    gap: 0.72rem;
  }

  .product-detail-page .product-info--hero h1 {
    max-inline-size: 100%;
    font-size: clamp(1.9rem, 9vw, 2.45rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
  }

  .product-detail-page .product-info--hero .product-promise {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .product-detail-page .product-hero-highlights {
    gap: 0.42rem;
    padding-inline-start: 0.95rem;
  }

  .product-detail-page .product-hero-highlights li {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .product-detail-page .product-cta-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
    align-items: stretch;
    padding-top: 0.75rem;
  }

  .product-detail-page .product-cta-row .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    min-height: 46px;
    padding-inline: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.3;
    white-space: normal;
    text-wrap: balance;
    overflow-wrap: anywhere;
    hyphens: auto;
    text-align: center;
  }

  .product-detail-page .product-cta-row > .btn:only-child,
  .product-detail-page .product-cta-row > .btn:last-child:nth-child(odd):nth-last-child(1) {
    grid-column: 1 / -1;
  }

  .product-detail-page .product-detail-shell {
    margin-top: 0.18rem;
  }

  .product-detail-page .product-detail-layout--structured {
    gap: 0.9rem;
  }

  .product-detail-page .product-detail-main {
    gap: 0.85rem;
  }

  .product-detail-page .product-spec-card,
  .product-detail-page .product-detail-card {
    padding: 1rem;
    border-radius: 20px;
  }

}

@media (max-width: 767px) {
  .products-catalog-page .page-hero--catalog {
    padding-block-start: max(6rem, calc(env(safe-area-inset-top) + 5.55rem));
    padding-block-end: 1.35rem;
  }

  .products-catalog-page .page-hero--collection h1 {
    font-size: clamp(1.9rem, 8vw, 2.44rem);
    line-height: 1.08;
  }

  .products-catalog-page .section {
    padding-block: 2.15rem;
  }

  .products-catalog-page .section-header {
    margin-bottom: 1rem;
  }

  .products-catalog-page .section-header h2 {
    font-size: clamp(1.34rem, 6vw, 1.72rem);
    line-height: 1.15;
    margin-bottom: 0.35rem;
  }

  .products-catalog-page .section-header .section-subtitle {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .products-catalog-page .grid.grid-3.grid-section-gap {
    gap: 0.85rem;
  }

  .products-catalog-page .grid.grid-3.grid-section-gap .product-card {
    display: grid;
    grid-template-columns: minmax(104px, 118px) minmax(0, 1fr);
    border-radius: 22px;
  }

  .products-catalog-page .grid.grid-3.grid-section-gap .product-card:hover {
    transform: none;
  }

  .products-catalog-page .grid.grid-3.grid-section-gap .product-card-image {
    min-height: 100%;
    padding: 2.6rem 0.75rem 0.75rem;
    border-inline-end: 1px solid rgba(148, 163, 184, 0.12);
  }

  .products-catalog-page .grid.grid-3.grid-section-gap .product-card-badges {
    inset-block-start: 0.65rem;
    inset-inline-start: 0.65rem;
    inset-inline-end: 0.65rem;
    gap: 0.32rem;
  }

  .products-catalog-page .grid.grid-3.grid-section-gap .product-card-badges .badge {
    font-size: 0.62rem;
    padding: 0.18rem 0.42rem;
  }

  .products-catalog-page .grid.grid-3.grid-section-gap .product-card-thumb,
  .products-catalog-page .grid.grid-3.grid-section-gap .product-card-image .product-icon {
    width: 72px;
    height: 72px;
    border-radius: 14px;
  }

  .products-catalog-page .grid.grid-3.grid-section-gap .product-card-body {
    gap: 0.45rem;
    padding: 0.82rem 0.88rem 0.88rem;
  }

  .products-catalog-page .grid.grid-3.grid-section-gap .product-card-title {
    margin: 0;
    font-size: 1rem;
    line-height: 1.18;
  }

  .products-catalog-page .grid.grid-3.grid-section-gap .product-card-desc {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .products-catalog-page .grid.grid-3.grid-section-gap .product-card-tags {
    gap: 0.28rem;
    margin: 0.15rem 0 0;
  }

  .products-catalog-page .grid.grid-3.grid-section-gap .product-card-tag {
    font-size: 0.66rem;
    padding: 0.18rem 0.46rem;
  }

  .products-catalog-page .grid.grid-3.grid-section-gap .product-card-meta {
    gap: 0.55rem;
    padding-top: 0.68rem;
    align-items: center;
  }

  .products-catalog-page .grid.grid-3.grid-section-gap .product-card-price {
    font-size: 1.05rem;
  }

  .products-catalog-page .grid.grid-3.grid-section-gap .product-card-rating {
    font-size: 0.78rem;
  }

  html[dir="rtl"] .products-catalog-page .grid.grid-3.grid-section-gap .product-card {
    grid-template-columns: minmax(0, 1fr) minmax(104px, 118px);
  }

  html[dir="rtl"] .products-catalog-page .grid.grid-3.grid-section-gap .product-card-image {
    grid-column: 2;
    border-inline-end: 0;
    border-inline-start: 1px solid rgba(148, 163, 184, 0.12);
  }

  html[dir="rtl"] .products-catalog-page .grid.grid-3.grid-section-gap .product-card-body {
    grid-column: 1;
  }
}

@media (max-width: 520px) {
  .product-detail-page .product-hero-side {
    gap: 0.72rem;
    padding: 0.74rem;
  }

  .product-detail-page .product-hero-summary {
    --product-hero-media-track: minmax(96px, 108px);
    --product-hero-summary-head-gap: 0.62rem;
    --product-hero-gallery-padding: 0.6rem;
  }

  .product-detail-page .product-gallery--hero {
    border-radius: 16px;
  }

  .product-detail-page .product-hero-facts {
    gap: 0.4rem;
  }

  .product-detail-page .product-hero-fact {
    padding: 0.48rem 0.54rem;
  }

  .products-catalog-page .grid.grid-3.grid-section-gap .product-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .products-catalog-page .grid.grid-3.grid-section-gap .product-card-image {
    padding: 2.45rem 0.6rem 0.65rem;
  }

  .products-catalog-page .grid.grid-3.grid-section-gap .product-card-thumb,
  .products-catalog-page .grid.grid-3.grid-section-gap .product-card-image .product-icon {
    width: 64px;
    height: 64px;
  }


  html[dir="rtl"] .products-catalog-page .grid.grid-3.grid-section-gap .product-card {
    grid-template-columns: minmax(0, 1fr) 96px;
  }
}

@media (max-width: 389px) {
  .product-detail-page .product-hero-summary {
    --product-hero-media-track: minmax(90px, 96px);
    --product-hero-summary-head-gap: 0.56rem;
    --product-hero-summary-gap: 0.55rem;
  }

  .product-detail-page .product-hero-facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  html[dir="rtl"] .product-detail-page .product-hero-shell {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      'side'
      'info' !important;
    align-items: start;
  }
}

/* ======================================================================
   DOVAR LABS V19 — dedicated mobile compositions across key pages
   ====================================================================== */

.hero__cta {
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}

.hero__cta--primary {
  border: none;
  padding: 0.85rem 2rem;
}

.hero__cta--secondary {
  padding: 0.85rem 2rem;
}

.home-products-cta {
  margin-top: clamp(1.1rem, 2vw, 1.65rem);
}

.faq-group-heading {
  margin: 3rem 0 1.5rem;
}

.faq-group-heading:first-of-type {
  margin-top: 0;
}

.faq-page-cta {
  margin-top: 4rem;
}

.contact-intro-copy {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-response-card {
  margin-top: 32px;
  padding: 24px;
}

.contact-response-copy {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.contact-form-card {
  padding: 40px;
}

.contact-form-card h3 {
  margin-bottom: 1.25rem;
}

.contact-form-submit {
  width: 100%;
}

.why-dovar-feature-grid {
  gap: 48px;
}

.why-dovar-feature-card {
  padding: 40px;
}

.why-dovar-feature-icon {
  width: 56px;
  height: 56px;
  font-size: 1.5rem;
}

.why-dovar-page-cta {
  margin-top: 48px;
}

@media (max-width: 820px) {
  .product-detail-page .product-cta-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
    align-items: stretch;
    padding-top: 0.75rem;
  }

  .product-detail-page .product-cta-row .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    min-height: 46px;
    padding-inline: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.3;
    white-space: normal;
    text-wrap: balance;
    overflow-wrap: anywhere;
    hyphens: auto;
    text-align: center;
  }

  .product-detail-page .product-cta-row > .btn:only-child,
  .product-detail-page .product-cta-row > .btn:last-child:nth-child(odd):nth-last-child(1) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  :is(.home-page, body[data-page-key="home"]) .hero {
    padding-top: max(6.1rem, calc(env(safe-area-inset-top) + 5.3rem));
    padding-bottom: 2.45rem;
  }

  :is(.home-page, body[data-page-key="home"]) .hero__layout {
    gap: 1.25rem;
    margin-bottom: 1.45rem;
  }

  :is(.home-page, body[data-page-key="home"]) .hero__text {
    display: grid;
    gap: 0.82rem;
    text-align: start;
    justify-items: start;
  }

  :is(.home-page, body[data-page-key="home"]) .hero__badge,
  :is(.home-page, body[data-page-key="home"]) .hero__title,
  :is(.home-page, body[data-page-key="home"]) .hero__subtitle {
    margin: 0;
  }

  :is(.home-page, body[data-page-key="home"]) .hero__badge {
    padding: 0.42rem 0.8rem;
    font-size: 0.73rem;
  }

  :is(.home-page, body[data-page-key="home"]) .hero__title {
    font-size: clamp(2rem, 9vw, 2.68rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  :is(.home-page, body[data-page-key="home"]) .hero__subtitle {
    max-width: none;
    font-size: 0.95rem;
    line-height: 1.62;
  }

  :is(.home-page, body[data-page-key="home"]) .hero__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 0.62rem;
  }

  :is(.home-page, body[data-page-key="home"]) .hero__actions .btn {
    width: 100%;
    justify-content: center;
    padding: 0.88rem 1rem !important;
    text-wrap: balance;
    min-height: 48px;
  }

  :is(.home-page, body[data-page-key="home"]) .hero__proof {
    gap: 0.85rem;
  }

  :is(.home-page, body[data-page-key="home"]) .hero__review-wrapper {
    display: block;
  }

  :is(.home-page, body[data-page-key="home"]) .hero__review-arrow {
    display: none;
  }

  :is(.home-page, body[data-page-key="home"]) .hero__review-card {
    padding: 1rem;
    border-radius: 22px;
  }

  :is(.home-page, body[data-page-key="home"]) .hero__review-stars {
    margin-bottom: 0.85rem;
  }

  :is(.home-page, body[data-page-key="home"]) .hero__review-text {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.58;
  }

  :is(.home-page, body[data-page-key="home"]) .hero__review-avatar {
    width: 38px;
    height: 38px;
    font-size: 0.92rem;
  }

  :is(.home-page, body[data-page-key="home"]) .hero__trust {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  :is(.home-page, body[data-page-key="home"]) .hero__trust-badge {
    justify-content: center;
    min-height: 100%;
    padding: 0.62rem 0.68rem;
    font-size: 0.72rem;
    text-align: center;
  }

  :is(.home-page, body[data-page-key="home"]) .hero__stats {
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  :is(.home-page, body[data-page-key="home"]) .hero__stat-card {
    align-items: flex-start;
    padding: 0.78rem 0.8rem;
    gap: 0.56rem;
    min-height: 100%;
  }

  :is(.home-page, body[data-page-key="home"]) .hero__stat-svg {
    width: 18px;
    height: 18px;
  }

  :is(.home-page, body[data-page-key="home"]) .hero__stat-value {
    font-size: 1.18rem;
  }

  :is(.home-page, body[data-page-key="home"]) .hero__stat-value--static {
    font-size: 1rem;
  }

  :is(.home-page, body[data-page-key="home"]) .hero__stat-label {
    font-size: 0.62rem;
    letter-spacing: 0.06em;
  }

  :is(.home-page, body[data-page-key="home"]) .trust-chips-row {
    margin-top: 1.35rem;
    padding-top: 1rem;
  }

  :is(.home-page, body[data-page-key="home"]) .trust-chips-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }

  :is(.home-page, body[data-page-key="home"]) .trust-chip {
    width: 100%;
    min-width: 0;
    justify-content: center;
    padding: 0.72rem 0.78rem;
    border-radius: 18px;
    font-size: 0.77rem;
    text-align: center;
    white-space: normal;
    line-height: 1.4;
  }

  :is(.home-page, body[data-page-key="home"]) .home-catalog-section .catalog-grid--products {
    gap: 0.8rem !important;
  }

  :is(.home-page, body[data-page-key="home"]) .home-catalog-section .catalog-grid--products .product-card {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    padding: 0;
    border-radius: 22px;
    overflow: hidden;
  }

  :is(.home-page, body[data-page-key="home"]) .home-catalog-section .catalog-grid--products .product-card-image {
    min-height: 100%;
    padding: 2.45rem 0.62rem 0.68rem;
    border-inline-end: 1px solid rgba(148, 163, 184, 0.12);
  }

  :is(.home-page, body[data-page-key="home"]) .home-catalog-section .catalog-grid--products .product-card-badges {
    inset-block-start: 0.65rem;
    inset-inline-start: 0.62rem;
    inset-inline-end: 0.62rem;
    gap: 0.28rem;
  }

  :is(.home-page, body[data-page-key="home"]) .home-catalog-section .catalog-grid--products .product-card-badges .badge {
    font-size: 0.62rem;
    padding: 0.18rem 0.42rem;
  }

  :is(.home-page, body[data-page-key="home"]) .home-catalog-section .catalog-grid--products .product-card-thumb {
    width: 64px;
    height: 64px;
  }

  :is(.home-page, body[data-page-key="home"]) .home-catalog-section .catalog-grid--products .product-card-body {
    gap: 0.44rem;
    padding: 0.82rem 0.88rem 0.86rem;
  }

  :is(.home-page, body[data-page-key="home"]) .home-catalog-section .catalog-grid--products .product-card-title {
    font-size: 1rem;
    line-height: 1.2;
  }

  :is(.home-page, body[data-page-key="home"]) .home-catalog-section .catalog-grid--products .product-card-desc {
    font-size: 0.85rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  :is(.home-page, body[data-page-key="home"]) .home-catalog-section .catalog-grid--products .product-card-tags {
    gap: 0.28rem;
    margin: 0.12rem 0 0;
  }

  :is(.home-page, body[data-page-key="home"]) .home-catalog-section .catalog-grid--products .product-card-meta {
    gap: 0.55rem;
    padding-top: 0.62rem;
  }

  :is(.home-page, body[data-page-key="home"]) .home-help-grid {
    gap: 0.9rem;
  }

  :is(.home-page, body[data-page-key="home"]) .home-help-column {
    padding: 1rem;
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.58), rgba(8, 12, 24, 0.84));
    box-shadow: 0 20px 40px rgba(2, 6, 23, 0.22);
  }

  :is(.home-page, body[data-page-key="home"]) .home-help-header {
    gap: 0.68rem;
  }

  :is(.home-page, body[data-page-key="home"]) .home-help-copy {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  :is(.home-page, body[data-page-key="home"]) .home-faq-list,
  :is(.home-page, body[data-page-key="home"]) .home-contact-list {
    gap: 0.72rem;
  }

  :is(.home-page, body[data-page-key="home"]) .home-faq-item,
  :is(.home-page, body[data-page-key="home"]) .contact-link-card {
    padding: 0.92rem 0.95rem;
  }

  :is(.home-page, body[data-page-key="home"]) .home-faq-item__summary {
    font-size: 0.95rem;
    gap: 0.8rem;
  }

  :is(.home-page, body[data-page-key="home"]) .home-faq-item p,
  :is(.home-page, body[data-page-key="home"]) .contact-link-card__copy span {
    font-size: 0.84rem;
    line-height: 1.56;
  }

  :is(.custom-dev-page, body[data-page-key="custom-development"]) .page-hero .container,
  :is(.about-page, body[data-page-key="about"]) .page-hero .container,
  :is(.why-dovar-page, body[data-page-key="why-dovar"]) .page-hero .container,
  :is(.faq-page, body[data-page-key="faq"]) .page-hero .container,
  :is(.contact-page, body[data-page-key="contact"]) .page-hero .container,
  :is(.legal-page, body[data-page-key="privacy"], body[data-page-key="terms"]) .page-hero .container,
  .insights-archive .page-hero .container,
  .insight-detail-page .insight-hero-panel {
    text-align: start;
  }

  :is(.custom-dev-page, body[data-page-key="custom-development"]) .page-hero .container,
  :is(.about-page, body[data-page-key="about"]) .page-hero .container,
  :is(.why-dovar-page, body[data-page-key="why-dovar"]) .page-hero .container,
  :is(.faq-page, body[data-page-key="faq"]) .page-hero .container,
  :is(.contact-page, body[data-page-key="contact"]) .page-hero .container,
  :is(.legal-page, body[data-page-key="privacy"], body[data-page-key="terms"]) .page-hero .container,
  .insights-archive .page-hero .container {
    display: grid;
    gap: 0.68rem;
  }

  :is(.custom-dev-page, body[data-page-key="custom-development"]) .page-hero h1,
  :is(.about-page, body[data-page-key="about"]) .page-hero h1,
  :is(.why-dovar-page, body[data-page-key="why-dovar"]) .page-hero h1,
  :is(.faq-page, body[data-page-key="faq"]) .page-hero h1,
  :is(.contact-page, body[data-page-key="contact"]) .page-hero h1,
  :is(.legal-page, body[data-page-key="privacy"], body[data-page-key="terms"]) .page-hero h1,
  .insights-archive .page-hero h1 {
    margin: 0;
    font-size: clamp(1.9rem, 8vw, 2.45rem);
    line-height: 1.08;
  }

  :is(.custom-dev-page, body[data-page-key="custom-development"]) .page-hero .section-subtitle,
  :is(.about-page, body[data-page-key="about"]) .page-hero .section-subtitle,
  :is(.why-dovar-page, body[data-page-key="why-dovar"]) .page-hero .section-subtitle,
  :is(.faq-page, body[data-page-key="faq"]) .page-hero .section-subtitle,
  :is(.contact-page, body[data-page-key="contact"]) .page-hero .section-subtitle,
  :is(.legal-page, body[data-page-key="privacy"], body[data-page-key="terms"]) .page-hero .section-subtitle,
  .insights-archive .page-hero .section-subtitle {
    margin: 0;
    max-width: none;
    font-size: 0.94rem;
    line-height: 1.6;
  }

  :is(.custom-dev-page, body[data-page-key="custom-development"]) .custom-dev-hero__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }

  :is(.custom-dev-page, body[data-page-key="custom-development"]) .custom-dev-hero__actions .btn:first-child {
    grid-column: 1 / -1;
  }

  :is(.custom-dev-page, body[data-page-key="custom-development"]) .custom-dev-hero__actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 46px;
    text-wrap: balance;
  }

  :is(.custom-dev-page, body[data-page-key="custom-development"]) .custom-service-grid,
  :is(.custom-dev-page, body[data-page-key="custom-development"]) .custom-brief-grid,
  :is(.custom-dev-page, body[data-page-key="custom-development"]) .custom-process-grid {
    gap: 0.85rem;
  }

  :is(.custom-dev-page, body[data-page-key="custom-development"]) .custom-process-card__num {
    width: 2rem;
    height: 2rem;
    font-size: 0.86rem;
  }

  :is(.custom-dev-page, body[data-page-key="custom-development"]) .custom-contact-list {
    gap: 0.6rem;
  }

  :is(.custom-dev-page, body[data-page-key="custom-development"]) .custom-contact-list .btn {
    width: 100%;
  }

  :is(.about-page, body[data-page-key="about"]) .about-intro-shell {
    gap: 0.9rem;
  }

  :is(.about-page, body[data-page-key="about"]) .about-intro-top {
    gap: 0.9rem;
  }

  :is(.about-page, body[data-page-key="about"]) .about-profile-card,
  :is(.about-page, body[data-page-key="about"]) .about-intro-story {
    padding: 1rem;
    border-radius: 22px;
  }

  :is(.about-page, body[data-page-key="about"]) .about-profile-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  :is(.about-page, body[data-page-key="about"]) .about-stat-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-radius: 22px;
  }

  :is(.about-page, body[data-page-key="about"]) .about-stat-inline {
    padding: 0.84rem 0.58rem;
  }

  :is(.about-page, body[data-page-key="about"]) .about-stat-inline + .about-stat-inline {
    border-top: none;
    border-left: 1px solid rgba(148, 163, 184, 0.16);
  }

  :is(.about-page, body[data-page-key="about"]) .about-stat-value {
    font-size: clamp(1.2rem, 6vw, 1.58rem);
  }

  :is(.about-page, body[data-page-key="about"]) .about-stat-label {
    margin-top: 0.22rem;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
  }

  :is(.about-page, body[data-page-key="about"]) .grid.grid-3.grid-section-gap {
    gap: 0.82rem;
  }

  :is(.about-page, body[data-page-key="about"]) .grid.grid-3.grid-section-gap .card {
    padding: 1rem;
    border-radius: 20px;
  }

  :is(.about-page, body[data-page-key="about"]) .grid.grid-3.grid-section-gap h3 {
    font-size: 1rem;
    line-height: 1.24;
  }

  :is(.about-page, body[data-page-key="about"]) .grid.grid-3.grid-section-gap p {
    font-size: 0.86rem;
    line-height: 1.58;
  }

  :is(.why-dovar-page, body[data-page-key="why-dovar"]) .why-dovar-feature-grid {
    gap: 0.85rem;
  }

  :is(.why-dovar-page, body[data-page-key="why-dovar"]) .why-dovar-feature-card {
    padding: 1rem;
    border-radius: 22px;
  }

  :is(.why-dovar-page, body[data-page-key="why-dovar"]) .why-dovar-feature-icon {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
    margin-bottom: 0.9rem;
  }

  :is(.why-dovar-page, body[data-page-key="why-dovar"]) .why-dovar-feature-card :is(h2, h3) {
    font-size: 1.05rem !important;
    line-height: 1.25;
    margin-bottom: 0.6rem !important;
  }

  :is(.why-dovar-page, body[data-page-key="why-dovar"]) .why-dovar-feature-card p,
  :is(.why-dovar-page, body[data-page-key="why-dovar"]) .why-dovar-negative-list p {
    font-size: 0.87rem;
    line-height: 1.58;
  }

  :is(.why-dovar-page, body[data-page-key="why-dovar"]) .why-dovar-negative-list {
    gap: 0.72rem;
    margin-top: 1rem;
  }

  :is(.why-dovar-page, body[data-page-key="why-dovar"]) .why-dovar-negative-list .card {
    padding: 0.88rem 0.95rem;
    border-radius: 18px;
  }

  :is(.why-dovar-page, body[data-page-key="why-dovar"]) .why-dovar-page-cta .btn {
    width: 100%;
  }

  :is(.faq-page, body[data-page-key="faq"]) .faq-group-heading {
    margin: 2rem 0 0.95rem;
  }

  :is(.faq-page, body[data-page-key="faq"]) .faq-group-heading:first-of-type {
    margin-top: 0;
  }

  :is(.faq-page, body[data-page-key="faq"]) .faq-group-heading :is(h2, h3) {
    margin: 0;
    font-size: 1.16rem;
    line-height: 1.2;
  }

  :is(.faq-page, body[data-page-key="faq"]) .faq-page-cta {
    margin-top: 2rem;
  }

  :is(.faq-page, body[data-page-key="faq"]) .faq-page-cta .btn {
    width: 100%;
  }

  :is(.contact-page, body[data-page-key="contact"]) .content-split-layout {
    gap: 1rem;
  }

  :is(.contact-page, body[data-page-key="contact"]) .contact-intro-copy {
    margin-bottom: 1rem;
    font-size: 0.92rem;
    line-height: 1.65;
  }

  :is(.contact-page, body[data-page-key="contact"]) .contact-quick-list {
    gap: 0.72rem;
  }

  :is(.contact-page, body[data-page-key="contact"]) .contact-link-card {
    align-items: flex-start;
    padding: 0.92rem 1rem;
    border-radius: 18px;
  }

  :is(.contact-page, body[data-page-key="contact"]) .contact-link-card__icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    border-radius: 13px;
  }

  :is(.contact-page, body[data-page-key="contact"]) .contact-link-card__copy strong {
    font-size: 0.9rem;
  }

  :is(.contact-page, body[data-page-key="contact"]) .contact-link-card__copy span,
  :is(.contact-page, body[data-page-key="contact"]) .contact-link-card__copy small {
    font-size: 0.8rem;
    line-height: 1.52;
  }

  :is(.contact-page, body[data-page-key="contact"]) .contact-response-card,
  :is(.contact-page, body[data-page-key="contact"]) .contact-form-card {
    padding: 1rem !important;
    border-radius: 20px;
  }

  :is(.contact-page, body[data-page-key="contact"]) .contact-response-card {
    margin-top: 0.85rem;
  }

  :is(.contact-page, body[data-page-key="contact"]) .form-group {
    margin-bottom: 0.9rem;
  }

  :is(.contact-page, body[data-page-key="contact"]) .form-input {
    min-height: 46px;
  }

  :is(.contact-page, body[data-page-key="contact"]) textarea.form-input {
    min-height: 140px;
  }

  :is(.contact-page, body[data-page-key="contact"]) .contact-form-submit {
    min-height: 46px;
  }

  :is(.legal-page, body[data-page-key="privacy"], body[data-page-key="terms"]) .section {
    padding-block: 2rem;
  }

  :is(.legal-page, body[data-page-key="privacy"], body[data-page-key="terms"]) .legal-shell {
    gap: 0.9rem;
  }

  :is(.legal-page, body[data-page-key="privacy"], body[data-page-key="terms"]) .legal-summary {
    padding: 1rem;
    border-radius: 20px;
  }

  :is(.legal-page, body[data-page-key="privacy"], body[data-page-key="terms"]) .legal-summary .article-note {
    margin-bottom: 0.75rem;
  }

  :is(.legal-page, body[data-page-key="privacy"], body[data-page-key="terms"]) .legal-stack {
    display: grid;
    gap: 0.78rem;
    counter-reset: legal-section;
  }

  :is(.legal-page, body[data-page-key="privacy"], body[data-page-key="terms"]) .legal-card {
    position: relative;
    margin: 0 !important;
    padding: 1rem;
    border-radius: 20px;
  }

  :is(.legal-page, body[data-page-key="privacy"], body[data-page-key="terms"]) .legal-card::before {
    counter-increment: legal-section;
    content: counter(legal-section, decimal-leading-zero);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.15rem;
    height: 2.15rem;
    margin-bottom: 0.7rem;
    border-radius: 999px;
    background: rgba(100, 255, 218, 0.08);
    border: 1px solid rgba(100, 255, 218, 0.16);
    color: var(--accent-bright);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
  }

  :is(.legal-page, body[data-page-key="privacy"], body[data-page-key="terms"]) .legal-card h2 {
    margin-bottom: 0.55rem;
    font-size: 1.04rem;
    line-height: 1.25;
  }

  :is(.legal-page, body[data-page-key="privacy"], body[data-page-key="terms"]) .legal-card p,
  :is(.legal-page, body[data-page-key="privacy"], body[data-page-key="terms"]) .legal-card li,
  :is(.legal-page, body[data-page-key="privacy"], body[data-page-key="terms"]) .legal-summary p,
  :is(.legal-page, body[data-page-key="privacy"], body[data-page-key="terms"]) .legal-summary li {
    font-size: 0.88rem;
    line-height: 1.62;
  }

  .insights-archive .section {
    padding-block: 2rem;
  }

  .insights-archive .grid.grid-3.grid-section-gap {
    gap: 0.78rem;
  }

  .insights-archive .insight-card {
    border-radius: 22px;
  }

  .insights-archive .insight-card::before {
    opacity: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 3px;
    height: auto;
  }

  .insights-archive .insight-card-body {
    padding: 1rem 1rem 1.02rem;
    gap: 0.42rem;
  }

  .insights-archive .insight-card-date {
    font-size: 0.68rem;
  }

  .insights-archive .insight-card-title {
    font-size: 1rem;
    line-height: 1.28;
  }

  .insights-archive .insight-card-desc {
    font-size: 0.84rem;
    line-height: 1.52;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .insight-detail-page .insight-page {
    padding-top: max(6rem, calc(env(safe-area-inset-top) + 5.35rem));
  }

  .insight-detail-page .insight-detail--pro {
    gap: 0.9rem;
  }

  .insight-detail-page .insight-hero-panel {
    padding: 1rem;
    border-radius: 24px;
    gap: 0.8rem;
  }

  .insight-detail-page .insight-hero-head {
    display: grid;
    gap: 0.62rem;
  }

  .insight-detail-page .insight-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .insight-detail-page .meta-chip {
    justify-content: center;
    text-align: center;
  }

  .insight-detail-page .insight-content-grid {
    gap: 0.9rem;
  }

  .insight-detail-page .insight-sidebar {
    order: -1;
    gap: 0.72rem;
  }

  .insight-detail-page .insight-sidebar__card,
  .insight-detail-page .insight-related,
  .insight-detail-page .article-cta,
  .insight-detail-page .article-note,
  .insight-detail-page .insight-body {
    padding: 1rem;
    border-radius: 20px;
  }

  .insight-detail-page .insight-toc {
    max-height: 240px;
    overflow: auto;
    padding-right: 0.2rem;
  }

  .insight-detail-page .insight-sidebar__cta {
    width: 100%;
    justify-content: center;
  }

  .insight-detail-page .insight-lede {
    font-size: 0.92rem;
    line-height: 1.72;
  }

  .insight-detail-page .insight-body p,
  .insight-detail-page .insight-body li {
    font-size: 0.9rem;
    line-height: 1.72;
  }

  .insight-detail-page .insight-body h2 {
    margin-top: 1.5rem;
    font-size: 1.14rem;
  }

  .insight-detail-page .insight-body h3 {
    font-size: 0.98rem;
  }

  .insight-detail-page .insight-body .placeholder-grid {
    grid-template-columns: 1fr;
    gap: 0.68rem;
  }

  html[dir="rtl"] :is(.home-page, body[data-page-key="home"]) .home-catalog-section .catalog-grid--products .product-card {
    grid-template-columns: minmax(0, 1fr) 96px;
  }

  html[dir="rtl"] :is(.home-page, body[data-page-key="home"]) .home-catalog-section .catalog-grid--products .product-card-image {
    grid-column: 2;
    border-inline-end: 0;
    border-inline-start: 1px solid rgba(148, 163, 184, 0.12);
  }

  html[dir="rtl"] :is(.home-page, body[data-page-key="home"]) .home-catalog-section .catalog-grid--products .product-card-body {
    grid-column: 1;
  }

  html[dir="rtl"] .insights-archive .insight-card::before {
    left: auto;
    right: 0;
  }
}

@media (max-width: 389px) {
  :is(.home-page, body[data-page-key="home"]) .hero__actions,
  :is(.home-page, body[data-page-key="home"]) .hero__trust,
  :is(.home-page, body[data-page-key="home"]) .trust-chips-grid,
  :is(.custom-dev-page, body[data-page-key="custom-development"]) .custom-dev-hero__actions,
  .insight-detail-page .insight-meta {
    grid-template-columns: 1fr;
  }

  :is(.about-page, body[data-page-key="about"]) .about-profile-actions,
  :is(.about-page, body[data-page-key="about"]) .about-stat-strip {
    grid-template-columns: 1fr;
  }

  :is(.about-page, body[data-page-key="about"]) .about-stat-inline + .about-stat-inline {
    border-left: 0;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
  }

  :is(.home-page, body[data-page-key="home"]) .trust-chip {
    justify-content: flex-start;
    text-align: start;
  }

  .product-detail-page .product-cta-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ======================================================================
   DOVAR LABS V20 — targeted mobile corrections (footer, metrics, nav, cards)
   ====================================================================== */

.footer__secondary-text,
.footer__secondary-link,
.footer__disclaimer p,
.footer__trust-badge {
  overflow-wrap: anywhere;
}

@media (max-width: 1079px) {
  .navbar__inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .navbar__logo.brand-logo {
    grid-column: 1;
    min-width: 0;
  }

  .navbar__mobile-lang {
    grid-column: 2;
    justify-content: flex-end;
    justify-self: end;
    flex: 0 0 auto;
    margin-inline-start: auto;
  }

  .navbar__toggle {
    grid-column: 3;
  }

  .navbar__mobile-lang .lang-dropdown {
    left: auto;
    right: 0;
    transform: translateY(-4px);
  }

  .navbar__mobile-lang .lang-selector.open .lang-dropdown {
    transform: translateY(0);
  }

  html[dir="rtl"] .navbar__mobile-lang .lang-dropdown {
    right: auto;
    left: 0;
  }
}

@media (max-width: 1023px) {
  .footer__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.35rem 1.65rem;
    margin-bottom: 1.8rem;
    align-items: flex-start;
  }

  .footer__brand,
  .footer__links {
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .footer__brand {
    flex: 1 1 100%;
    max-width: min(34rem, 100%);
  }

  .footer__links {
    flex: 1 1 9rem;
  }
}

@media (max-width: 767px) {
  .navbar__mobile-lang {
    min-width: 0;
  }

  .navbar__mobile-lang .lang-selector {
    min-width: 0;
  }

  .navbar__mobile-lang .lang-selector-btn {
    min-height: 40px;
    min-width: 44px;
    padding: 0.42rem 0.5rem;
  }

  .footer {
    padding: 2.75rem 0 1.25rem;
  }

  .footer .container {
    display: block;
  }

  .footer__grid {
    gap: 1.05rem 1rem;
    margin-bottom: 1.45rem;
  }

  .footer__brand,
  .footer__links {
    max-width: none;
  }

  .footer__brand .navbar__logo {
    margin-bottom: 0.8rem;
  }

  .footer__tagline {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.64;
  }

  .footer__trust {
    margin-top: 0.9rem;
  }

  .footer__trust-badge {
    width: auto;
    max-width: 100%;
    justify-content: flex-start;
    padding: 0.48rem 0.78rem;
    white-space: normal;
    text-align: start;
    line-height: 1.42;
  }

  .footer__links h4 {
    margin-bottom: 0.68rem;
    font-size: 0.78rem;
  }

  .footer__links ul {
    gap: 0.56rem;
  }

  .footer__secondary-link {
    font-size: 0.84rem;
    line-height: 1.46;
  }

  .footer__disclaimer {
    margin-bottom: 1.05rem;
    padding: 0.95rem 1rem;
  }

  .footer__bottom {
    margin-top: 0;
    padding-top: 1rem;
    align-items: flex-start;
    text-align: start;
    gap: 0.55rem;
  }

  .footer__copyright {
    margin: 0;
  }

  .footer__bottom-links {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.55rem 1rem;
  }

  .footer__bottom-links .footer__secondary-link {
    font-size: 0.82rem;
  }

  :is(.home-page, body[data-page-key="home"]) .hero__stats {
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  :is(.home-page, body[data-page-key="home"]) .hero__stats .hero__stat-card:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, calc((100% - 0.55rem) / 2));
  }

  :is(.home-page, body[data-page-key="home"]) .home-catalog-section .catalog-grid--products .product-card-image,
  .products-catalog-page .grid.grid-3.grid-section-gap .product-card-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.54rem;
    padding: 0.78rem 0.62rem 0.84rem;
  }

  :is(.home-page, body[data-page-key="home"]) .home-catalog-section .catalog-grid--products .product-card-badges,
  .products-catalog-page .grid.grid-3.grid-section-gap .product-card-badges {
    position: static;
    inset: auto;
    order: 2;
    width: 100%;
    max-width: none;
    justify-content: center;
    align-content: flex-start;
    gap: 0.3rem;
  }

  :is(.home-page, body[data-page-key="home"]) .home-catalog-section .catalog-grid--products .product-card-thumb,
  :is(.home-page, body[data-page-key="home"]) .home-catalog-section .catalog-grid--products .product-card-image .product-icon,
  .products-catalog-page .grid.grid-3.grid-section-gap .product-card-thumb,
  .products-catalog-page .grid.grid-3.grid-section-gap .product-card-image .product-icon {
    order: 1;
    margin-top: 0;
  }
}

/* ======================================================================
   DOVAR LABS V19 — product breadcrumbs / narrative / FAQ / related guides
   ====================================================================== */

.product-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  line-height: 1.5;
  color: rgba(226, 232, 240, 0.8);
}

.product-breadcrumbs__link {
  color: rgba(148, 163, 184, 0.96);
  text-decoration: none;
  transition: color 0.2s ease;
}

.product-breadcrumbs__link:hover,
.product-breadcrumbs__link:focus-visible {
  color: rgba(248, 250, 252, 0.98);
}

.product-breadcrumbs__sep {
  color: rgba(100, 116, 139, 0.9);
}

.product-breadcrumbs__current {
  color: rgba(248, 250, 252, 0.98);
  font-weight: 600;
}

.product-story-card,
.product-faq-card,
.product-guides-section {
  display: grid;
  gap: 1rem;
}

.product-story-card p {
  margin: 0;
  color: rgba(226, 232, 240, 0.88);
  line-height: 1.74;
}

.product-faq-list {
  display: grid;
  gap: 0.8rem;
}

.product-faq-card .faq-item {
  margin: 0;
}

.product-faq-card .faq-answer p {
  margin: 0;
}

.product-guides-section h2 {
  margin: 0;
  font-size: clamp(1.14rem, 1.65vw, 1.34rem);
}

.product-guides-section .insight-related__list {
  margin-top: 0;
}

@media (max-width: 820px) {
  .product-breadcrumbs {
    gap: 0.35rem;
    font-size: 0.79rem;
  }

  .product-story-card,
  .product-faq-card,
  .product-guides-section {
    gap: 0.85rem;
  }
}

/* --- Locale preference notice: non-forced locale continuity on default pages --- */
.locale-preference-bar {
  position: fixed;
  inset-inline-end: 1.25rem;
  inset-block-end: 1.25rem;
  z-index: 70;
  width: min(420px, calc(100vw - 1.5rem));
  padding: 1rem 1rem 0.96rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(9, 15, 28, 0.96), rgba(6, 11, 20, 0.98));
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.38);
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.22s ease;
}

.locale-preference-bar.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.locale-preference-bar__inner {
  display: grid;
  gap: 0.9rem;
}

.locale-preference-bar__text {
  margin: 0;
  color: rgba(226, 232, 240, 0.9);
  font-size: 0.94rem;
  line-height: 1.55;
}

.locale-preference-bar__text strong {
  color: var(--text-primary);
}

.locale-preference-bar__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.locale-preference-bar__link,
.locale-preference-bar__dismiss {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.55rem 0.92rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.locale-preference-bar__link {
  background: rgba(100, 255, 218, 0.14);
  border: 1px solid rgba(100, 255, 218, 0.24);
  color: var(--accent);
}

.locale-preference-bar__link:hover {
  background: rgba(100, 255, 218, 0.2);
  color: #e8fff9;
  transform: translateY(-1px);
}

.locale-preference-bar__dismiss {
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.22);
  color: rgba(226, 232, 240, 0.8);
  cursor: pointer;
}

.locale-preference-bar__dismiss:hover {
  border-color: rgba(148, 163, 184, 0.34);
  color: var(--text-primary);
}

@media (max-width: 820px) {
  .locale-preference-bar {
    inset-inline: 0.75rem;
    inset-block-end: 0.75rem;
    width: auto;
    border-radius: 18px;
    padding: 0.92rem 0.92rem 0.88rem;
  }

  .locale-preference-bar__actions {
    width: 100%;
  }

  .locale-preference-bar__link,
  .locale-preference-bar__dismiss {
    flex: 1 1 0;
  }
}

/* ======================================================================
   Brokers page rebuild + insights archive refinement
   ====================================================================== */

@media (min-width: 1080px) and (max-width: 1319px) {
  .navbar__links {
    gap: 0.95rem;
  }

  .navbar__links a {
    font-size: 0.82rem;
  }
}

.brokers-page {
  --brokers-page-surface: linear-gradient(180deg, rgba(12, 24, 43, 0.96), rgba(10, 18, 33, 0.98));
  --brokers-page-surface-alt: linear-gradient(180deg, rgba(10, 25, 47, 0.96), rgba(8, 18, 34, 1));
  background: var(--brokers-page-surface);
}

.brokers-page .section--alt {
  background: var(--brokers-page-surface-alt);
}

.brokers-page .page-hero .container {
  max-width: min(100%, var(--page-hero-container-max, 1120px));
}

.brokers-hero {
  padding-bottom: clamp(3rem, 4vw, 3.9rem);
}

.brokers-page .section__desc,
.brokers-page .section-subtitle,
.brokers-page .custom-dev-card-intro,
.brokers-page p,
.brokers-page li {
  color: rgba(226, 232, 240, 0.84);
  line-height: 1.78;
}

.brokers-hero .section-subtitle {
  max-width: min(var(--page-hero-subtitle-max, 760px), 100%);
}

.brokers-hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.55rem;
}

.brokers-hero-strip,
.brokers-offer-strip {
  margin-top: 1.75rem;
}

.brokers-eligibility__block,
.broker-card,
.insights-archive .insight-card {
  background: var(--surface-slate);
  border-color: var(--surface-slate-border);
  box-shadow: var(--surface-slate-shadow);
}

.brokers-eligibility__block:hover,
.brokers-eligibility__block:focus-within,
.broker-card:hover,
.broker-card:focus-within,
.insights-archive .insight-card:hover {
  background: var(--surface-slate-hover);
  border-color: var(--surface-slate-border-strong);
  box-shadow: var(--surface-slate-shadow-strong);
}

.brokers-hero__notice {
  max-width: 980px;
  margin: 1.15rem auto 0;
  padding: 1rem 1.15rem;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(226, 232, 240, 0.82);
}

.brokers-hero__notice strong {
  color: var(--text-primary);
}

.brokers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.broker-card {
  height: 100%;
  border: 1px solid var(--surface-slate-border);
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.broker-card:hover {
  transform: translateY(-4px);
}

.broker-card__content {
  display: grid;
}

.broker-card__eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.broker-card__eyebrow,
.broker-card__entity,
.broker-card__qr-label,
.insights-archive .insight-card-date {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.42rem 0.76rem;
  border-radius: 999px;
  border: 1px solid rgba(100, 255, 218, 0.14);
  background: rgba(100, 255, 218, 0.08);
  color: var(--accent-bright);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.broker-card__entity {
  border-color: rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(241, 245, 249, 0.92);
}

.broker-card__header {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 1rem;
  align-items: flex-start;
}

.broker-card__badge {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.broker-card__badge--alt {
  color: var(--text-primary);
}

.broker-card__header h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 1.72rem);
  line-height: 1.12;
}

.broker-card__subhead,
.broker-card__lede,
.broker-card__footnote,
.broker-card__qr-card small,
.broker-card__link-id {
  color: rgba(226, 232, 240, 0.82);
}

.broker-card__subhead {
  margin: 0.35rem 0 0;
}

.broker-card__lede,
.broker-card__footnote {
  margin: 0;
}

.broker-card__points,
.broker-offer-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.72rem;
}

.broker-card__points li,
.broker-offer-list li {
  position: relative;
  padding-left: 1.05rem;
}

.broker-card__points li::before,
.broker-offer-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(100, 255, 218, 0.1);
}

.broker-offer-list--muted li::before {
  background: rgba(241, 245, 249, 0.7);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.04);
}

.broker-card__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.broker-mini-stat {
  min-height: 100%;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  border: 1px solid var(--surface-slate-border);
}

.broker-mini-stat span {
  display: block;
  margin-bottom: 0.38rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(226, 232, 240, 0.65);
}

.broker-mini-stat strong {
  display: block;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--text-primary);
}

.broker-card__cta {
  display: grid;
  gap: 0.95rem;
  margin-top: auto;
}

.broker-card__qr-card {
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  text-align: center;
  padding: 1.1rem;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.035);
}

.broker-card__qr-card img {
  width: min(100%, 210px);
  height: auto;
  padding: 0.65rem;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(2, 6, 23, 0.18);
}

.brokers-page .btn--block {
  width: 100%;
  justify-content: center;
}

.broker-card__link-id {
  text-align: center;
  font-size: 0.86rem;
  padding: 0.78rem 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

.broker-card__link-id strong {
  color: var(--text-primary);
}

.brokers-offer-band {
  margin-top: 0.15rem;
}

.brokers-offer-band .promo-card,
.brokers-eligibility__block {
  padding: 1.55rem;
}

.brokers-process-grid {
  margin-top: 1.5rem;
}

.brokers-eligibility {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.brokers-eligibility__block h3 {
  line-height: 1.34;
}

.brokers-eligibility__block ul {
  margin: 0.7rem 0 0;
  padding-left: 1.1rem;
  list-style: disc;
}

.brokers-eligibility__block--warning {
  border-color: rgba(245, 158, 11, 0.2);
}

.insights-archive .grid.grid-3.grid-section-gap {
  gap: 1.1rem;
}

.insights-archive .insight-card {
  border-radius: 26px;
  border: 1px solid var(--surface-slate-border);
  overflow: hidden;
  position: relative;
}

.insights-archive .insight-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: rgba(100, 255, 218, 0.42);
}

.insights-archive .insight-card-body {
  padding: 1.25rem 1.2rem 1.2rem;
  display: grid;
  gap: 0.8rem;
}

.insights-archive .insight-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.insights-archive .insight-card-date {
  margin: 0;
}

.insights-archive .insight-card-arrow {
  width: 2.2rem;
  height: 2.2rem;
  flex: 0 0 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(241, 245, 249, 0.92);
}

.insights-archive .insight-card-arrow svg {
  width: 1rem;
  height: 1rem;
}

.insights-archive .insight-card-title {
  font-size: 1.06rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.insights-archive .insight-card-desc {
  font-size: 0.9rem;
  line-height: 1.68;
  color: rgba(226, 232, 240, 0.82);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

@media (max-width: 1079px) {
  .brokers-grid,
  .brokers-eligibility {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .brokers-hero__actions {
    flex-direction: column;
  }

  .broker-card,
  .brokers-offer-band .promo-card,
  .brokers-eligibility__block {
    padding: 1rem;
    border-radius: 24px;
  }

  .broker-card__header {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 0.8rem;
  }

  .broker-card__badge {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 0.92rem;
  }

  .broker-card__stats,
  .brokers-notes-grid,
  .insights-archive .insight-card-meta {
    grid-template-columns: 1fr;
  }

  .insights-archive .insight-card-meta {
    align-items: flex-start;
  }

  .insights-archive .insight-card {
    border-radius: 22px;
  }

  .insights-archive .insight-card-body {
    padding: 1rem;
    gap: 0.72rem;
  }

  .insights-archive .insight-card-title {
    font-size: 1rem;
    line-height: 1.34;
  }

  .insights-archive .insight-card-desc {
    font-size: 0.84rem;
    line-height: 1.58;
    -webkit-line-clamp: 3;
  }
}

html[dir="rtl"] .insights-archive .insight-card::before {
  inset: 0 0 auto 0;
}

/* ==========================================================
   Site rhythm polish + broker / insight refinements
   ========================================================== */

.brokers-grid {
  gap: clamp(1.35rem, 2vw, 1.8rem);
  align-items: stretch;
}

.broker-card {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 1.35rem;
  padding: clamp(1.45rem, 2vw, 1.75rem);
  border-radius: 30px;
}

.broker-card__content {
  display: grid;
  gap: 1.08rem;
}

.broker-card__copy {
  display: grid;
  gap: 0.45rem;
}

.broker-card__copy h3,
.broker-card__subhead,
.broker-card__lede,
.broker-card__footnote,
.broker-card__cta-note,
.broker-card__qr-panel small {
  margin: 0;
}

.broker-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 22px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(241, 245, 249, 0.97));
  box-shadow: 0 16px 32px rgba(2, 6, 23, 0.14);
}

.broker-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 32px;
}

.broker-card__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.78rem;
}

.broker-mini-stat {
  min-height: 100%;
  padding: 0.98rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.038);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.broker-mini-stat span {
  display: block;
  margin-bottom: 0.34rem;
}

.broker-card__points {
  display: grid;
  gap: 0.78rem;
}

.broker-card__points li,
.broker-offer-list li {
  line-height: 1.78;
}

.broker-card__action-band {
  display: grid;
  grid-template-columns: 122px minmax(0, 1fr);
  gap: 0.95rem;
  align-items: stretch;
  padding-top: 1.05rem;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.broker-card__qr-panel,
.broker-card__cta-panel {
  display: grid;
  align-content: start;
  gap: 0.72rem;
  padding: 0.98rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.036);
}

.broker-card__qr-panel {
  justify-items: center;
  text-align: center;
}

.broker-card__qr-panel img {
  width: 92px;
  height: 92px;
  padding: 0.38rem;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(2, 6, 23, 0.14);
}

.broker-card__qr-label,
.insight-card-reading {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(241, 245, 249, 0.9);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.broker-card__cta-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: rgba(241, 245, 249, 0.82);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.broker-card__cta-note,
.broker-card__qr-panel small {
  color: rgba(226, 232, 240, 0.78);
  font-size: 0.83rem;
  line-height: 1.66;
}

.broker-card__cta-panel .btn--block {
  width: 100%;
  justify-content: center;
}

.broker-card__link-id {
  width: fit-content;
  margin: 0;
  padding: 0.44rem 0.74rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.03);
  text-align: left;
}

.brokers-eligibility {
  gap: 1.28rem;
}

.brokers-eligibility__block {
  display: grid;
  align-content: start;
  gap: 0.95rem;
  padding: 1.65rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 26px;
  background: var(--surface-slate);
  box-shadow: var(--surface-slate-shadow);
}

.brokers-eligibility__block > * {
  margin: 0;
}

.brokers-eligibility__block ul {
  margin: 0.1rem 0 0;
  padding-left: 1.15rem;
}

.brokers-eligibility__block--warning {
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.07), rgba(15, 23, 42, 0.92));
  border-color: rgba(245, 158, 11, 0.22);
}

.insights-archive .insight-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.insights-archive .insight-card-meta-end {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: auto;
}

.insights-archive .insight-card-reading {
  color: rgba(226, 232, 240, 0.78);
}

@media (max-width: 1079px) {
  .broker-card__action-band {
    grid-template-columns: 112px minmax(0, 1fr);
  }
}

@media (max-width: 767px) {
  .broker-card {
    padding: 1.15rem;
    border-radius: 24px;
  }

  .broker-logo {
    width: 100%;
  }

  .broker-logo img {
    height: 28px;
  }

  .broker-card__stats {
    grid-template-columns: 1fr;
  }

  .broker-card__action-band {
    grid-template-columns: 1fr;
  }

  .broker-card__qr-panel {
    grid-template-columns: auto 1fr;
    justify-items: start;
    align-items: center;
    text-align: left;
  }

  .broker-card__qr-panel img {
    width: 84px;
    height: 84px;
    grid-row: span 2;
  }

  .broker-card__qr-panel,
  .broker-card__cta-panel,
  .brokers-eligibility__block {
    padding: 1rem;
    border-radius: 20px;
  }

  .insights-archive .insight-card-meta {
    align-items: flex-start;
  }

  .insights-archive .insight-card-meta-end {
    margin-left: 0;
  }
}

/* --- Global section rhythm polish (sitewide) --- */
.section__header,
.section-header {
  display: grid;
  gap: 0.92rem;
}

.section__header.catalog-style-header {
  max-width: min(70ch, 100%);
}

.section__header,
.section__header.catalog-style-header,
.section-header {
  margin-bottom: clamp(2rem, 3vw, 2.65rem);
}

.section__header > *,
.section-header > * {
  margin: 0;
}

.section__header .section__label,
.section-header .section-label,
.section-header .section__label {
  margin-bottom: 0;
}

.section__header .section__title,
.section-header h2 {
  line-height: 1.14;
  text-wrap: balance;
}

.section__header .section__desc,
.section__header .section-subtitle,
.section-header .section-subtitle {
  line-height: 1.78;
  text-wrap: pretty;
  max-inline-size: 66ch;
}

.home-catalog-section .section__header,
.home-catalog-section .catalog-style-header {
  gap: 0.92rem;
  margin: 0 auto clamp(2.15rem, 3vw, 2.8rem);
}

.products-catalog-page .section-header,
.insights-archive .section-header {
  margin-bottom: clamp(1.9rem, 2.8vw, 2.4rem);
}

.grid-section-gap {
  column-gap: 1.5rem;
  row-gap: 1.75rem;
}

.service-grid {
  column-gap: 1.25rem;
  row-gap: 1.5rem;
}

/* --- Broker page micro-polish --- */
.broker-card {
  gap: 1.42rem;
}

.broker-card__content {
  gap: 1.14rem;
}

.broker-card__copy {
  gap: 0.52rem;
}

.broker-card__subhead {
  line-height: 1.64;
}

.broker-card__lede,
.broker-card__footnote {
  line-height: 1.8;
}

.broker-card__stats {
  gap: 0.85rem;
}

.broker-mini-stat {
  padding: 1rem 1rem 0.96rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.028));
}

.broker-card__action-band {
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 0.9rem;
  padding-top: 1.15rem;
}

.broker-card__qr-panel,
.broker-card__cta-panel {
  gap: 0.76rem;
  padding: 1rem;
}

.broker-card__qr-panel img {
  width: 82px;
  height: 82px;
  padding: 0.34rem;
}

.broker-card__cta-panel {
  grid-template-rows: auto auto auto 1fr;
}

.broker-card__cta-panel .btn--block {
  min-height: 48px;
}

.broker-card__link-id {
  padding: 0.46rem 0.78rem;
}

.brokers-eligibility__block {
  gap: 1rem;
}

.brokers-eligibility__block ul li {
  line-height: 1.76;
}

@media (max-width: 1079px) {
  .broker-card__action-band {
    grid-template-columns: 102px minmax(0, 1fr);
  }
}

@media (max-width: 767px) {
  .section__header,
  .section__header.catalog-style-header,
  .section-header,
  .home-catalog-section .section__header,
  .home-catalog-section .catalog-style-header {
    gap: 0.82rem;
    margin-bottom: 1.9rem;
  }

  .grid-section-gap,
  .service-grid {
    row-gap: 1.35rem;
  }

  .broker-card__action-band {
    grid-template-columns: 1fr;
    gap: 0.82rem;
  }

  .broker-card__qr-panel {
    grid-template-columns: auto 1fr;
    justify-items: start;
    text-align: left;
  }

  .broker-card__qr-panel img {
    width: 78px;
    height: 78px;
  }
}

/* ==========================================================
   Senior polish pass: type hierarchy, broker mobile, insights
   footer, home card balance, and unified 404 experience
   ========================================================== */
:root {
  --text-body-strong: #93A2B7;
}

.section-subtitle,
.section__desc,
.page-hero p,
.hero p,
.metric-pill span,
.service-card p,
.promo-card p,
.legal-card p,
.legal-card li,
.legal-summary p,
.legal-summary li,
.product-card p,
.card p,
.faq-answer,
.contact-link-card__copy span,
.contact-link-card__copy small,
.article-content p,
.article-content li,
.insight-body p,
.insight-body li,
.insight-sidebar__card p,
.insight-sidebar__card li,
.article-cta p,
.article-note,
.insight-breadcrumb,
.insight-lede,
.brokers-page .broker-card__subhead,
.brokers-page .broker-card__lede,
.brokers-page .broker-card__footnote,
.brokers-page .broker-card__cta-note,
.brokers-page .broker-card__qr-panel small,
.brokers-page .brokers-hero__notice,
.insights-archive .insight-card-desc,
.insights-archive .insight-card-reading,
.page-404__desc,
.page-404__note,
.page-404__link span {
  color: var(--text-body-strong);
}

#custom-dev-lane .service-card {
  display: grid;
  align-content: start;
}

#custom-dev-lane .service-card h3 {
  max-width: none;
  text-wrap: pretty;
}

@media (min-width: 1080px) {
  #custom-dev-lane .service-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.18fr) minmax(0, 1fr);
  }
}

.insights-archive .insight-card-body {
  grid-template-rows: auto auto 1fr auto;
}

.insights-archive .insight-card-meta {
  align-items: flex-start;
  justify-content: flex-end;
}

.insights-archive .insight-card-date {
  margin-inline-start: auto;
}

.insights-archive .insight-card-meta-end {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.insights-archive .insight-card-readmore {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text-primary);
}

.insights-archive .insight-card-reading {
  color: var(--text-body-strong);
}

.insights-archive .insight-card-arrow {
  margin-inline-start: auto;
}

.brokers-page .broker-card__stats {
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.brokers-page .broker-mini-stat {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.028));
  border-color: rgba(148, 163, 184, 0.14);
}

.brokers-page .broker-card__action-band {
  grid-template-columns: minmax(156px, 0.95fr) minmax(0, 1.05fr);
  gap: 1rem;
  align-items: stretch;
}

.brokers-page .broker-card__qr-panel,
.brokers-page .broker-card__cta-panel {
  min-height: 100%;
}

.brokers-page .broker-card__qr-panel {
  align-content: center;
  justify-items: center;
}

.brokers-page .broker-card__qr-panel img {
  width: 108px;
  height: 108px;
}

.brokers-page .broker-card__cta-panel {
  grid-template-rows: auto auto auto 1fr;
}

.brokers-page .broker-card__link-id {
  width: 100%;
  text-align: center;
}

.page-404__section {
  padding-top: clamp(5rem, 8vw, 7rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.page-404__shell {
  position: relative;
  overflow: hidden;
  padding: clamp(1.2rem, 2vw, 1.5rem);
  border-radius: 32px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: linear-gradient(180deg, rgba(10, 16, 30, 0.98), rgba(7, 11, 22, 1));
  box-shadow: 0 30px 64px rgba(2, 6, 23, 0.28);
}

.page-404__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
  gap: 1.1rem;
  align-items: stretch;
}

.page-404__content,
.page-404__panel-card {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: clamp(1.1rem, 2vw, 1.35rem);
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
}

.page-404__code-wrap {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.page-404__status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.42rem 0.74rem;
  border-radius: 999px;
  border: 1px solid rgba(100, 255, 218, 0.18);
  background: rgba(100, 255, 218, 0.08);
  color: var(--accent-bright);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-404__code {
  margin: 0;
  font-size: clamp(4.75rem, 13vw, 7.5rem);
  line-height: 0.88;
  letter-spacing: -0.06em;
}

.page-404__title {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1.12;
}

.page-404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-404__links {
  display: grid;
  gap: 0.75rem;
}

.page-404__link {
  position: relative;
  display: grid;
  gap: 0.42rem;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(15, 23, 42, 0.58);
  color: inherit;
  transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.page-404__link strong {
  color: var(--text-primary);
  padding-inline-end: 1.5rem;
}

.page-404__link span {
  line-height: 1.7;
}

.page-404__link::after {
  content: '→';
  position: absolute;
  inset-block-start: 1rem;
  inset-inline-end: 1rem;
  color: rgba(241, 245, 249, 0.82);
  font-size: 1rem;
  transition: transform var(--transition);
}

.page-404__link:hover {
  color: inherit;
  transform: translateY(-2px);
  border-color: rgba(100, 255, 218, 0.18);
  background: rgba(15, 23, 42, 0.76);
  box-shadow: 0 18px 32px rgba(2, 6, 23, 0.18);
}

.page-404__link:hover::after {
  transform: translateX(2px);
}

.page-404__orb {
  position: absolute;
  width: 320px;
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(24px);
  opacity: 0.9;
}

.page-404__orb--one {
  top: -120px;
  inset-inline-end: -80px;
  background: radial-gradient(circle, rgba(100, 255, 218, 0.22), transparent 68%);
}

.page-404__orb--two {
  bottom: -140px;
  inset-inline-start: -90px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.18), transparent 70%);
}

@media (max-width: 1079px) {
  .brokers-page .broker-card__action-band {
    grid-template-columns: minmax(142px, 0.94fr) minmax(0, 1.06fr);
  }

  .page-404__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .insights-archive .insight-card-meta-end {
    gap: 0.55rem;
    flex-wrap: wrap;
  }

  .insights-archive .insight-card-arrow {
    margin-inline-start: 0;
  }

  .brokers-page .brokers-grid {
    gap: 1rem;
  }

  .brokers-page .brokers-hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .brokers-page .brokers-hero__notice {
    margin-top: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 20px;
  }

  .brokers-page .broker-card {
    padding: 1rem;
    border-radius: 24px;
    gap: 1rem;
  }

  .brokers-page .broker-card__eyebrow-row {
    gap: 0.45rem 0.6rem;
    flex-wrap: wrap;
  }

  .brokers-page .broker-logo {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 0.9rem;
    border-radius: 18px;
  }

  .brokers-page .broker-logo img {
    height: 28px;
  }

  .brokers-page .broker-card__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .brokers-page .broker-mini-stat {
    padding: 0.88rem 0.9rem;
    border-radius: 18px;
  }

  .brokers-page .broker-mini-stat strong {
    font-size: 0.94rem;
    line-height: 1.42;
  }

  .brokers-page .broker-card__action-band {
    grid-template-columns: minmax(118px, 0.94fr) minmax(0, 1.06fr);
    gap: 0.75rem;
    padding-top: 0.95rem;
  }

  .brokers-page .broker-card__qr-panel,
  .brokers-page .broker-card__cta-panel,
  .brokers-page .brokers-eligibility__block {
    padding: 0.9rem;
    border-radius: 18px;
  }

  .brokers-page .broker-card__qr-panel img {
    width: 90px;
    height: 90px;
  }

  .brokers-page .broker-card__cta-panel .btn--block {
    min-height: 46px;
  }

  .page-404__shell {
    border-radius: 24px;
    padding: 1rem;
  }

  .page-404__content,
  .page-404__panel-card {
    gap: 0.9rem;
    padding: 1rem;
    border-radius: 20px;
  }

  .page-404__code-wrap {
    gap: 0.65rem;
    align-items: flex-start;
  }

  .page-404__actions {
    flex-direction: column;
  }

  .page-404__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .page-404__link {
    border-radius: 18px;
  }

  .page-404__orb {
    width: 220px;
    filter: blur(20px);
  }
}

@media (max-width: 520px) {
  .brokers-page .broker-card__action-band {
    grid-template-columns: 1fr;
  }

  .brokers-page .broker-card__qr-panel {
    grid-template-columns: auto 1fr;
    justify-items: start;
    align-items: center;
    text-align: left;
  }

  .brokers-page .broker-card__qr-panel img {
    grid-row: span 3;
    width: 84px;
    height: 84px;
  }

  .brokers-page .broker-card__link-id {
    text-align: left;
  }
}

html[dir="rtl"] .page-404__link::after {
  content: '←';
}

html[dir="rtl"] .brokers-page .broker-card,
html[dir="rtl"] .brokers-page .broker-card__content,
html[dir="rtl"] .brokers-page .broker-card__cta-panel,
html[dir="rtl"] .brokers-page .brokers-eligibility__block,
html[dir="rtl"] .page-404__content,
html[dir="rtl"] .page-404__panel-card {
  text-align: right;
}

html[dir="rtl"] .brokers-page .broker-card__points li,
html[dir="rtl"] .brokers-page .broker-offer-list li {
  padding-left: 0;
  padding-right: 1.05rem;
}

html[dir="rtl"] .brokers-page .broker-card__points li::before,
html[dir="rtl"] .brokers-page .broker-offer-list li::before {
  left: auto;
  right: 0;
}

@media (max-width: 520px) {
  html[dir="rtl"] .brokers-page .broker-card__qr-panel {
    text-align: right;
  }
}

/* ==========================================================
   Final polish pass — body copy hierarchy, insights date,
   and broker mobile/UI stabilization (2026-04-07)
   ========================================================== */

/* Stronger semantic body-copy layer to beat older component-specific rules */
body[data-page-key] .section__desc,
body[data-page-key] .section-subtitle,
body[data-page-key] .page-hero p,
body[data-page-key] .hero__subtitle,
body[data-page-key] .hero__review-verified,
body[data-page-key] .about__text,
body[data-page-key] .about__pipeline-desc,
body[data-page-key] .about__card-footer span,
body[data-page-key] .metric-pill span,
body[data-page-key] .service-card p,
body[data-page-key] .promo-card p,
body[data-page-key] .custom-process-card p,
body[data-page-key] .product-card p,
body[data-page-key] .product-card__desc,
body[data-page-key] .product-card-desc,
body[data-page-key] .product-promise,
body[data-page-key] .product-hero-highlights li,
body[data-page-key] .product-detail-card p,
body[data-page-key] .product-spec-card p,
body[data-page-key] .product-spec-card li,
body[data-page-key] .product-detail-table td,
body[data-page-key] .product-detail-table__value,
body[data-page-key] .faq-answer,
body[data-page-key] .legal-card p,
body[data-page-key] .legal-card li,
body[data-page-key] .article-content p,
body[data-page-key] .article-content li,
body[data-page-key] .insight-lede,
body[data-page-key] .insight-body > p:first-child,
body[data-page-key] .insight-body p,
body[data-page-key] .insight-body li,
body[data-page-key] .insight-sidebar__card p,
body[data-page-key] .insight-sidebar__card li,
body[data-page-key] .insights-archive .insight-card-desc,
body[data-page-key] .insights-archive .insight-card-reading,
body[data-page-key] .brokers-page .brokers-hero__notice,
body[data-page-key] .brokers-page .broker-card__subhead,
body[data-page-key] .brokers-page .broker-card__lede,
body[data-page-key] .brokers-page .broker-card__footnote,
body[data-page-key] .brokers-page .broker-card__points li,
body[data-page-key] .brokers-page .broker-card__cta-note,
body[data-page-key] .brokers-page .broker-card__qr-panel small,
body[data-page-key] .brokers-page .broker-offer-list li,
body[data-page-key] .brokers-page .brokers-eligibility__block p,
body[data-page-key] .brokers-page .brokers-eligibility__block li,
body[data-page-key] .brokers-page .custom-dev-card-intro,
body[data-page-key] .page-404__desc,
body[data-page-key] .page-404__note,
body[data-page-key] .page-404__link span {
  color: var(--text-body-strong) !important;
}

/* Insights cards: keep the date on the left and footer content below */
.insights-archive .insight-card-meta {
  justify-content: flex-start;
  align-items: center;
}

.insights-archive .insight-card-date {
  margin-inline-start: 0;
  margin-inline-end: auto;
}

.insights-archive .insight-card-meta-end {
  width: 100%;
  justify-content: flex-start;
  gap: 0.7rem;
}

.insights-archive .insight-card-arrow {
  margin-inline-start: auto;
}

/* Broker page: tone logos down a bit and harden wrapping for all locales */
.brokers-page .broker-card,
.brokers-page .broker-card__content,
.brokers-page .broker-card__action-band,
.brokers-page .broker-card__qr-panel,
.brokers-page .broker-card__cta-panel,
.brokers-page .broker-mini-stat {
  min-width: 0;
}

.brokers-page .broker-card__eyebrow,
.brokers-page .broker-card__entity,
.brokers-page .broker-card__cta-label,
.brokers-page .broker-card__qr-label,
.brokers-page .broker-card__subhead,
.brokers-page .broker-card__lede,
.brokers-page .broker-card__footnote,
.brokers-page .broker-card__points li,
.brokers-page .broker-card__cta-note,
.brokers-page .broker-card__qr-panel small,
.brokers-page .broker-card__link-id,
.brokers-page .section__desc,
.brokers-page .section-subtitle,
.brokers-page .metric-pill span,
.brokers-page .promo-card p,
.brokers-page .custom-process-card p,
.brokers-page .brokers-eligibility__block p,
.brokers-page .brokers-eligibility__block li {
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

.brokers-page .broker-logo {
  border-color: rgba(226, 232, 240, 0.32);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.94), rgba(226, 232, 240, 0.86));
  box-shadow: 0 12px 26px rgba(2, 6, 23, 0.12);
}

.brokers-page .broker-logo img {
  filter: brightness(0.94) saturate(0.92);
}

@media (max-width: 767px) {
  .brokers-page .brokers-grid,
  .brokers-page .promo-band,
  .brokers-page .brokers-eligibility,
  .brokers-page .brokers-notes-grid,
  .brokers-page .custom-process-grid {
    gap: 1rem;
  }

  .brokers-page .broker-card {
    position: relative;
    gap: 1.08rem;
    padding: 1.08rem;
    border-radius: 26px;
    overflow: hidden;
  }

  .brokers-page .broker-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(100, 255, 218, 0.28), rgba(59, 130, 246, 0.14), transparent 82%);
    pointer-events: none;
  }

  .brokers-page .broker-card__content {
    gap: 1rem;
  }

  .brokers-page .broker-card__eyebrow-row {
    align-items: flex-start;
    gap: 0.5rem 0.55rem;
  }

  .brokers-page .broker-logo {
    width: 100%;
    justify-content: center;
    padding: 0.82rem 0.88rem;
    border-radius: 20px;
  }

  .brokers-page .broker-logo img {
    width: auto;
    max-width: min(100%, 196px);
    height: 26px;
  }

  .brokers-page .broker-card__copy {
    gap: 0.42rem;
  }

  .brokers-page .broker-card__copy h3 {
    font-size: clamp(1.28rem, 6vw, 1.56rem);
    line-height: 1.08;
    text-wrap: balance;
  }

  .brokers-page .broker-card__subhead {
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .brokers-page .broker-card__lede,
  .brokers-page .broker-card__footnote,
  .brokers-page .broker-card__points li {
    font-size: 0.92rem;
    line-height: 1.72;
  }

  .brokers-page .broker-card__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem;
  }

  .brokers-page .broker-mini-stat {
    padding: 0.9rem 0.88rem;
    border-radius: 18px;
  }

  .brokers-page .broker-mini-stat span {
    margin-bottom: 0.28rem;
    font-size: 0.67rem;
    line-height: 1.45;
    letter-spacing: 0.06em;
  }

  .brokers-page .broker-mini-stat strong {
    font-size: 0.93rem;
    line-height: 1.38;
    text-wrap: balance;
  }

  .brokers-page .broker-card__action-band {
    grid-template-columns: 1fr;
    gap: 0.82rem;
    padding-top: 1rem;
  }

  .brokers-page .broker-card__qr-panel,
  .brokers-page .broker-card__cta-panel,
  .brokers-page .brokers-eligibility__block {
    padding: 0.96rem;
    border-radius: 20px;
  }

  .brokers-page .broker-card__qr-panel {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      'label label'
      'qr note';
    align-items: center;
    justify-items: start;
    column-gap: 0.85rem;
    row-gap: 0.58rem;
    text-align: left;
  }

  .brokers-page .broker-card__qr-label {
    grid-area: label;
  }

  .brokers-page .broker-card__qr-panel img {
    grid-area: qr;
    width: 94px;
    height: 94px;
    padding: 0.4rem;
    border-radius: 18px;
    flex-shrink: 0;
  }

  .brokers-page .broker-card__qr-panel small {
    grid-area: note;
    align-self: center;
    font-size: 0.84rem;
    line-height: 1.64;
  }

  .brokers-page .broker-card__cta-panel {
    gap: 0.72rem;
    grid-template-rows: auto auto auto auto;
  }

  .brokers-page .broker-card__cta-panel .btn--block {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }

  .brokers-page .broker-card__link-id {
    width: 100%;
    text-align: left;
    line-height: 1.55;
  }
}

@media (max-width: 460px) {
  .brokers-page .broker-card {
    padding: 1rem;
  }

  .brokers-page .broker-card__stats {
    grid-template-columns: 1fr;
  }

  .brokers-page .broker-mini-stat strong {
    font-size: 0.95rem;
  }

  .brokers-page .broker-card__qr-panel {
    grid-template-columns: 1fr;
    grid-template-areas:
      'label'
      'qr'
      'note';
    justify-items: center;
    text-align: center;
  }

  .brokers-page .broker-card__qr-panel img {
    width: 88px;
    height: 88px;
  }

  .brokers-page .broker-card__qr-panel small,
  .brokers-page .broker-card__link-id {
    text-align: center;
  }
}

html[dir="rtl"] .insights-archive .insight-card-meta {
  justify-content: flex-start;
}

html[dir="rtl"] .insights-archive .insight-card-date {
  margin-inline-start: 0;
  margin-inline-end: auto;
}

html[dir="rtl"] .brokers-page .broker-card__qr-panel,
html[dir="rtl"] .brokers-page .broker-card__cta-panel {
  text-align: right;
}

/* ==========================================================
   V24 — navigation balance, sitewide copy hierarchy,
   and broker UX refinements (2026-04-08)
   ========================================================== */

:where(main, footer) :where(
  p,
  li,
  dd,
  dt,
  small,
  figcaption,
  .section__desc,
  .section-subtitle,
  .hero__subtitle,
  .metric-pill span,
  .product-promise,
  .product-price-note,
  .product-card__desc,
  .product-card-desc,
  .faq-answer,
  .insight-lede,
  .page-404__desc,
  .page-404__note,
  .page-404__link span,
  .contact-link-card__copy span,
  .contact-link-card__copy small
) {
  color: var(--text-body-strong) !important;
}

:where(main, footer) :where(p, li, dd, dt, small, figcaption) strong {
  color: var(--text-primary);
}

.service-card__eyebrow {
  width: fit-content;
  max-width: 100%;
  align-self: flex-start;
}

.insights-archive .insight-card-meta {
  justify-content: flex-start;
  align-items: center;
}

.insights-archive .insight-card-date {
  margin-inline-start: 0 !important;
  margin-inline-end: auto !important;
}

.insights-archive .insight-card-meta-end {
  justify-content: flex-start;
}

.insights-archive .insight-card-arrow {
  margin-inline-start: auto;
}

.brokers-page .brokers-eligibility__block {
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.brokers-page .brokers-eligibility__block:hover,
.brokers-page .brokers-eligibility__block:focus-within {
  transform: translateY(-4px);
}

.brokers-page .broker-card:hover,
.brokers-page .broker-card:focus-within,
.brokers-page .broker-card.reveal.visible:hover {
  transform: translateY(-6px);
}

.brokers-page .broker-logo {
  border-color: rgba(148, 163, 184, 0.28);
  background: linear-gradient(180deg, rgba(241, 245, 249, 0.92), rgba(226, 232, 240, 0.82));
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.12);
}

.brokers-page .broker-logo img {
  opacity: 0.92;
  filter: brightness(0.88) saturate(0.9);
}

@media (max-width: 767px) {
  :is(.home-page, body[data-page-key="home"]) .hero__actions {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  :is(.home-page, body[data-page-key="home"]) .hero__actions .btn {
    min-height: 46px;
    padding: 0.82rem 1rem !important;
    font-size: clamp(0.86rem, 3.8vw, 0.92rem);
    white-space: nowrap;
  }

  .brokers-page .section__desc,
  .brokers-page .section-subtitle,
  .brokers-page .metric-pill span,
  .brokers-page .service-card p,
  .brokers-page .promo-card p,
  .brokers-page .custom-process-card p,
  .brokers-page .brokers-eligibility__block p,
  .brokers-page .brokers-eligibility__block li {
    font-size: 0.92rem;
    line-height: 1.66;
  }

  .brokers-page .service-card h3,
  .brokers-page .promo-card h3,
  .brokers-page .custom-process-card h3,
  .brokers-page .brokers-eligibility__block h3 {
    font-size: 1.02rem;
    line-height: 1.32;
  }

  .brokers-page .brokers-criteria-grid,
  .brokers-page .promo-band,
  .brokers-page .custom-process-grid,
  .brokers-page .brokers-eligibility,
  .brokers-page .brokers-notes-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .brokers-page .broker-card {
    gap: 1rem;
    padding: 1rem 1rem 1.05rem;
    border-radius: 24px;
  }

  .brokers-page .broker-card::before {
    display: none;
  }

  .brokers-page .broker-card__subhead,
  .brokers-page .broker-card__lede,
  .brokers-page .broker-card__footnote,
  .brokers-page .broker-card__points li,
  .brokers-page .broker-card__cta-note,
  .brokers-page .broker-card__link-id {
    font-size: 0.92rem;
    line-height: 1.68;
  }

  .brokers-page .broker-card__action-band {
    grid-template-columns: 1fr !important;
    gap: 0.82rem;
    padding-top: 0.95rem;
  }

  .brokers-page .broker-card__qr-panel {
    display: none !important;
  }

  .brokers-page .broker-card__cta-panel,
  .brokers-page .brokers-eligibility__block {
    padding: 0.96rem;
    border-radius: 20px;
  }

  .brokers-page .broker-card__cta-panel {
    gap: 0.72rem;
    grid-template-rows: auto auto auto auto;
  }

  .brokers-page .broker-card__cta-panel .btn--block {
    min-height: 46px;
  }

  .brokers-page .broker-card__link-id {
    width: 100%;
    text-align: left;
  }
}

@media (max-width: 520px) {
  .brokers-page .brokers-hero-strip {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   V25 — shared collection heroes, fluid desktop nav,
   broker polish, and mobile copy normalization
   ========================================================== */
:root {
  --site-copy-mobile-size: 0.92rem;
  --site-copy-mobile-line: 1.66;
  --site-card-title-mobile-size: 1.02rem;
  --site-card-title-mobile-line: 1.32;
  --page-hero-collection-gap: clamp(0.62rem, 1vw, 0.82rem);
  --page-hero-collection-max: 80rem;
  --page-hero-collection-max-wide: 88rem;
}

.page-hero--collection > .container,
body[data-page-key="about"] .page-hero > .container,
body[data-page-key="why-dovar"] .page-hero > .container,
body[data-page-key="faq"] .page-hero > .container,
body[data-page-key="contact"] .page-hero > .container,
body[data-page-key="privacy"] .page-hero > .container,
body[data-page-key="terms"] .page-hero > .container {
  display: grid;
  gap: var(--page-hero-collection-gap);
}

body[data-page-key="products"] .page-hero--collection {
  --page-hero-intro-max: 102ch;
  --page-hero-heading-max: 29ch;
  --page-hero-subtitle-max: 88ch;
}

body[data-page-key="insights"] .page-hero--collection {
  --page-hero-intro-max: 106ch;
  --page-hero-heading-max: 30ch;
  --page-hero-subtitle-max: 90ch;
}

body[data-page-key="products"] .page-hero--collection > .container {
  max-width: min(100%, var(--page-hero-collection-max));
}

body[data-page-key="insights"] .page-hero--collection > .container {
  max-width: min(100%, var(--page-hero-collection-max-wide));
}

body[data-page-key="about"] .page-hero,
body[data-page-key="why-dovar"] .page-hero {
  --page-hero-intro-max: 98ch;
  --page-hero-heading-max: 30ch;
  --page-hero-subtitle-max: 86ch;
}

body[data-page-key="brokers"] .page-hero,
body[data-page-key="custom-development"] .page-hero {
  --page-hero-container-max: 80rem;
  --page-hero-intro-max: 106ch;
  --page-hero-heading-max: 32ch;
  --page-hero-subtitle-max: 90ch;
}

:where(.page-hero--collection > .container,
body[data-page-key="about"] .page-hero > .container,
body[data-page-key="why-dovar"] .page-hero > .container,
body[data-page-key="faq"] .page-hero > .container,
body[data-page-key="contact"] .page-hero > .container,
body[data-page-key="privacy"] .page-hero > .container,
body[data-page-key="terms"] .page-hero > .container) > :is(.section-label, .section__label, h1, .section-subtitle, .section__desc) {
  margin: 0;
}

body[data-page-key="products"] .page-hero--collection .section-subtitle,
body[data-page-key="insights"] .page-hero--collection .section-subtitle {
  margin-inline: 0;
  max-width: min(var(--page-hero-subtitle-max), 100%);
}

body[data-page-key="products"] .page-hero--collection {
  padding-block: clamp(6.3rem, 8.9vw, 7.35rem) clamp(1.7rem, 3.6vw, 2.15rem);
}

body[data-page-key="insights"] .page-hero--collection {
  padding-block-end: clamp(1.8rem, 3.6vw, 2.25rem);
}

body[data-page-key="products"] .page-hero--collection h1,
body[data-page-key="insights"] .page-hero--collection h1 {
  line-height: 1.08;
  letter-spacing: -0.03em;
}

body[data-page-key="products"] .page-hero--collection h1,
body[data-page-key="insights"] .page-hero--collection h1 {
  max-inline-size: min(var(--page-hero-heading-max), 100%);
  text-wrap: pretty;
}

body[data-page-key="insights"] .page-hero--collection h1 {
  font-size: clamp(1.96rem, 4.25vw, 3.05rem);
}

body[data-page-key="brokers"] .brokers-criteria-grid .service-card h3 {
  font-size: clamp(1.05rem, 1vw, 1.14rem);
  line-height: 1.34;
  letter-spacing: -0.02em;
  margin-bottom: 0.72rem;
  text-wrap: pretty;
}

body[data-page-key="custom-development"] .custom-dev-overview-panel {
  gap: 0.6rem;
}

body[data-page-key="custom-development"] .custom-dev-overview-panel h4 + ul {
  margin-top: 0;
  gap: 0.62rem;
}

body[data-page-key="custom-development"] .custom-dev-overview-panel p + ul {
  margin-top: 0.08rem;
}

@media (max-width: 767px) {
  body[data-page-key]:not([data-page-key="home"]) :is(
    .section__desc,
    .section-subtitle,
    .metric-pill span,
    .service-card p,
    .promo-card p,
    .custom-process-card p,
    .product-card p,
    .product-card__desc,
    .product-card-desc,
    .faq-answer,
    .legal-card p,
    .legal-card li,
    .contact-link-card__copy span,
    .contact-link-card__copy small,
    .insights-archive .insight-card-desc,
    .insights-archive .insight-card-reading
  ) {
    font-size: var(--site-copy-mobile-size);
    line-height: var(--site-copy-mobile-line);
  }

  body[data-page-key]:not([data-page-key="home"]) :is(
    .service-card h3,
    .promo-card h3,
    .custom-process-card h3,
    .brokers-eligibility__block h3
  ) {
    font-size: var(--site-card-title-mobile-size);
    line-height: var(--site-card-title-mobile-line);
  }

  body[data-page-key="products"] .page-hero--collection > .container,
  body[data-page-key="insights"] .page-hero--collection > .container {
    max-width: none;
  }
}

/* ======================================================================
   V26 — canonical navigation, mobile menu, FAQ motion, and about rhythm
   ====================================================================== */
:root {
  --site-nav-breakpoint: 1080px;
  --site-nav-shell-max: 1360px;
  --site-nav-link-gap: clamp(0.42rem, 0.82vw, 0.82rem);
  --site-nav-link-font: clamp(0.72rem, 0.68rem + 0.15vw, 0.82rem);
  --site-nav-cta-font: clamp(0.74rem, 0.71rem + 0.12vw, 0.81rem);
  --site-mobile-menu-width: min(400px, calc(100% - clamp(16px, 4vw, 24px)));
}

.navbar > .container {
  max-width: min(100%, var(--site-nav-shell-max));
  padding-inline: clamp(18px, 2.2vw, 28px);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 980;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overscroll-behavior: contain;
  background: rgba(2, 6, 23, 0.56);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: opacity 0.24s ease, visibility 0s linear 0.24s;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.mobile-menu__panel {
  width: min(var(--site-mobile-menu-width), 100%);
  max-width: 100%;
  min-height: 100dvh;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  padding: calc(var(--nav-height) + 1.1rem) 1rem max(1rem, env(safe-area-inset-bottom));
  border-inline-start: 1px solid rgba(148, 163, 184, 0.14);
  background: linear-gradient(180deg, rgba(11, 19, 34, 0.98), rgba(6, 10, 19, 0.97));
  box-shadow: -20px 0 46px rgba(2, 6, 23, 0.28);
  transform: translate3d(104%, 0, 0);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.mobile-menu.active .mobile-menu__panel {
  transform: translate3d(0, 0, 0);
}

.mobile-menu__stack {
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 0.62rem;
  padding: 0.24rem;
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(15, 23, 42, 0.32);
  box-shadow: none;
}

.mobile-menu__links {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  list-style: none;
  display: grid;
  align-content: start;
  gap: 0.5rem;
}

.mobile-menu__links li {
  width: 100%;
}

.mobile-menu__links a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 46px;
  padding: 0.78rem 0.92rem;
  border-radius: 14px;
  font-size: 0.95rem;
  line-height: 1.35;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.88);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(148, 163, 184, 0.08);
}

.mobile-menu__links a:hover,
.mobile-menu__links a.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(100, 255, 218, 0.1);
}

.mobile-menu__actions {
  display: grid;
  gap: 0.48rem;
  padding-top: 0.48rem;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.mobile-menu__actions .btn {
  width: 100%;
  min-height: 46px;
  justify-content: center;
  padding: 0.82rem 0.98rem;
  text-wrap: balance;
}

.mobile-menu__actions .btn--with-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.mobile-menu__actions .btn--with-icon svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu,
  .mobile-menu__panel {
    transition: none !important;
  }
}

body[data-page-key="about"] .about-intro-story {
  display: grid;
  align-content: start;
  gap: clamp(0.88rem, 1.3vw, 1.12rem);
}

body[data-page-key="about"] .about-intro-story > * {
  margin: 0;
}

body[data-page-key="about"] .about-intro-story h2 {
  font-size: clamp(1.72rem, 3vw, 2.32rem);
  line-height: 1.08;
}

body[data-page-key="about"] .about-intro-story p {
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(226, 232, 240, 0.84);
  text-wrap: pretty;
}

@media (min-width: 1080px) {
  .mobile-menu {
    display: none !important;
  }

  .navbar__mobile-lang,
  .navbar__toggle {
    display: none !important;
  }

  .navbar__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    column-gap: clamp(0.88rem, 1.35vw, 1.45rem);
  }

  .navbar__logo.brand-logo {
    justify-self: start;
    min-width: 0;
    margin-right: 0;
  }

  .navbar__links {
    display: flex !important;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    min-width: 0;
    max-width: none;
    margin-inline: auto;
    gap: 0.3rem var(--site-nav-link-gap);
  }

  .navbar__links li {
    min-width: 0;
  }

  .navbar__links a {
    display: block;
    white-space: nowrap;
    line-height: 1.18;
    font-size: var(--site-nav-link-font);
    letter-spacing: -0.01em;
    padding-inline: clamp(0.12rem, 0.28vw, 0.28rem);
  }

  .navbar__ctas {
    display: flex !important;
    flex-wrap: nowrap;
    align-items: center;
    justify-self: end;
    min-width: max-content;
    gap: clamp(0.38rem, 0.62vw, 0.58rem);
  }

  .navbar__ctas .btn {
    min-height: 40px;
    white-space: nowrap;
    font-size: var(--site-nav-cta-font);
    padding-inline: clamp(0.68rem, 0.82vw, 0.92rem);
  }

  .navbar__ctas .lang-selector {
    margin-inline-start: 0;
  }
}

@media (min-width: 1080px) and (max-width: 1399px) {
  .navbar__ctas .btn--with-icon .btn__label {
    display: none;
  }

  .navbar__ctas .btn--with-icon {
    inline-size: 2.7rem;
    min-inline-size: 2.7rem;
    padding-inline: 0;
    justify-content: center;
  }
}

@media (min-width: 1080px) and (max-width: 1220px) {
  .navbar__inner {
    column-gap: 0.82rem;
  }

  .navbar__logo.brand-logo {
    gap: 0.58rem;
    font-size: 1rem;
  }

  .navbar__logo .brand-logo__mark {
    width: 1.6rem;
    height: 1.6rem;
  }

  .navbar__links {
    gap: 0.24rem clamp(0.38rem, 0.5vw, 0.56rem);
  }

  .navbar__links a {
    font-size: 0.71rem;
    padding-inline: 0.1rem;
  }

  .navbar__ctas .btn:not(.btn--with-icon) {
    font-size: 0.73rem;
    padding-inline: 0.64rem;
  }
}

@media (max-width: 1079px) {
  .navbar__links,
  .navbar__ctas {
    display: none !important;
  }

  .navbar__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 0.72rem;
  }

  .navbar__logo.brand-logo {
    grid-column: 1;
    min-width: 0;
    margin: 0;
  }

  .navbar__mobile-lang {
    display: flex !important;
    grid-column: 2;
    justify-self: end;
    align-items: center;
    min-width: 0;
    margin-inline-start: auto;
  }

  .navbar__mobile-lang .lang-selector {
    min-width: 0;
  }

  .navbar__mobile-lang .lang-selector-btn {
    min-height: 42px;
    padding: 0.42rem 0.56rem;
  }

  .navbar__toggle {
    display: flex !important;
    grid-column: 3;
    width: 44px;
    height: 44px;
    margin: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 12px 28px rgba(2, 6, 23, 0.18);
  }

  .navbar__toggle:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(100, 255, 218, 0.12);
  }

  .navbar__toggle span {
    width: 20px;
  }

}

@media (max-width: 767px) {
  .navbar > .container {
    padding-inline: 20px;
  }

  .navbar {
    padding: 0.76rem 0;
  }

  .navbar__inner {
    gap: 0.62rem;
  }

  .navbar__logo.brand-logo {
    min-width: 0;
  }

  .mobile-menu__panel {
    padding: 5.15rem 0.9rem max(0.95rem, env(safe-area-inset-bottom));
  }

  .mobile-menu__stack {
    gap: 0.6rem;
    padding: 0.34rem;
    border-radius: 24px;
  }

  .mobile-menu__links a {
    min-height: 46px;
    padding: 0.76rem 0.9rem;
    border-radius: 14px;
    font-size: 0.92rem;
  }

  .mobile-menu__actions .btn {
    min-height: 46px;
    font-size: 0.92rem;
  }

  details.faq-item {
    border-radius: 20px;
    margin-bottom: 0.72rem;
  }

  details.faq-item summary {
    padding: 0.98rem 1rem;
    font-size: 0.95rem;
    line-height: 1.42;
  }

  details.faq-item .faq-answer {
    padding: 0.88rem 1rem 1rem;
    font-size: 0.87rem;
    line-height: 1.66;
  }
}


/* ======================================================================
   SEO structural enrichment — breadcrumbs, support links, author trust
   ====================================================================== */
.product-detail-card h3,
.product-detail-card h4,
.product-spec-card h2 {
  margin: 0 0 1rem;
  font-size: 1.12rem;
}

.insight-related h2,
.insight-related h3,
.article-cta h2,
.article-cta h3 {
  color: #f8fafc !important;
  margin: 0;
  font-size: 1rem;
}

.product-support-links,
.insight-support-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.product-support-links__link,
.insight-support-links__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.52rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition), color var(--transition), transform var(--transition);
}

.product-support-links__link:hover,
.insight-support-links__link:hover {
  color: #f8fafc;
  border-color: rgba(100, 255, 218, 0.28);
  background: rgba(100, 255, 218, 0.1);
  transform: translateY(-1px);
}

.insight-breadcrumbs {
  margin-bottom: 1rem;
}

.insight-author-card {
  gap: 0.9rem;
}

.insight-author-card__head {
  display: flex;
  align-items: center;
  gap: 0.84rem;
}

.insight-author-card__avatar {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.insight-author-card__avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insight-author-card__avatar-fallback {
  font-size: 1.2rem;
  font-weight: 800;
  color: #f8fafc;
}

.insight-author-card__meta {
  display: grid;
  gap: 0.16rem;
}

.insight-author-card__meta small {
  color: rgba(148, 163, 184, 0.9);
  font-size: 0.8rem;
  font-weight: 600;
}

.insight-author-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.insight-author-card__actions a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.5rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: #f8fafc;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.insight-author-card__actions a:hover {
  border-color: rgba(100, 255, 218, 0.24);
  background: rgba(100, 255, 218, 0.08);
}

@media (max-width: 767px) {
  .product-support-links,
  .insight-support-links,
  .insight-author-card__actions {
    gap: 0.45rem;
  }

  .product-support-links__link,
  .insight-support-links__link,
  .insight-author-card__actions a {
    width: 100%;
    justify-content: center;
  }
}

/* --- 2026-04-14: final release pass — broker resource links --- */
.brokers-resource-link {
  color: inherit;
  text-decoration: none;
}

.brokers-resource-link:hover {
  text-decoration: underline;
}

.brokers-resources-grid .service-card {
  height: 100%;
}

/* Pass 4 surgical layout refinements: homepage about spacing and product H1 width. */
.about__content {
  display: grid;
  gap: clamp(1rem, 2vw, 1.35rem);
  align-content: start;
}

.about__content .section__label,
.about__content .section__title,
.about__content .about__text {
  margin-block: 0;
}

.about__content .about__values {
  margin-top: clamp(0.4rem, 1vw, 0.75rem);
  gap: clamp(1rem, 1.8vw, 1.35rem);
}

.about__content .about__value {
  gap: 0.95rem;
  padding: clamp(1rem, 1.8vw, 1.15rem);
}

.about__content .about__value h4 {
  margin: 0 0 0.35rem;
}

.about__content .about__value p {
  margin: 0;
  line-height: 1.58;
}
