/* =========================================================
   DVALI COMPONENT PAGES
   Shared CSS for:
   - Load Cells
   - Indicators
   - Software
   - Service & Repair
   - Calibration
   Uses existing main.css variables and existing .btn classes
   ========================================================= */

/* ---------- Page shell ---------- */

.cmp-page {
  background: #ffffff;
  color: var(--color-text);
}

.cmp-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.cmp-section {
  padding: clamp(56px, 7vw, 88px) 0;
}

.cmp-section--alt {
  background: #f6f8fb;
}

.cmp-section--tight {
  padding: clamp(36px, 5vw, 56px) 0;
}

/* ---------- Breadcrumbs ---------- */

.cmp-breadcrumbs {
  padding: 22px 0 8px;
}

.cmp-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.94rem;
  color: #6b7280;
}

.cmp-breadcrumbs__list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cmp-breadcrumbs__list li:not(:last-child)::after {
  content: "/";
  color: #9ca3af;
}

.cmp-breadcrumbs__list a {
  color: inherit;
  text-decoration: none;
}

.cmp-breadcrumbs__list a:hover {
  color: var(--color-primary);
}

/* ---------- Hero ---------- */

.cmp-hero {
  padding: clamp(28px, 4vw, 40px) 0 clamp(56px, 8vw, 92px);
  background:
    linear-gradient(135deg, rgba(21, 76, 121, 0.06), rgba(21, 76, 121, 0) 55%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.cmp-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 28px;
  align-items: stretch;
}

.cmp-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cmp-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(21, 76, 121, 0.08);
  color: var(--color-primary);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cmp-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.08;
  color: var(--color-text);
}

.cmp-subtitle {
  margin: 0 0 18px;
  font-size: 1.08rem;
  font-weight: 700;
  color: #4b5563;
  line-height: 1.55;
}

.cmp-lead {
  margin: 0 0 20px;
  max-width: 760px;
  color: #586274;
  font-size: 1.03rem;
  line-height: 1.8;
}

.cmp-note,
.cmp-small-note {
  color: #6b7280;
  line-height: 1.75;
}

.cmp-small-note {
  font-size: 0.94rem;
}

.cmp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.cmp-actions .btn {
  min-width: 180px;
}

.cmp-hero__media {
  display: flex;
  align-items: stretch;
}

.cmp-main-image,
.cmp-media-placeholder,
.cmp-media-card {
  width: 100%;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.cmp-main-image {
  display: block;
  height: auto;
}

.cmp-media-card {
  overflow: hidden;
}

.cmp-media-card img {
  display: block;
  width: 100%;
  height: auto;
}

.cmp-media-placeholder {
  min-height: 360px;
  padding: 28px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #607080;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.cmp-media-placeholder strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: #111827;
}

/* ---------- Quick spec boxes ---------- */

.cmp-quick-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 6px 0 6px;
}

.cmp-quick-spec {
  padding: 18px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.cmp-quick-spec span {
  display: block;
  margin-bottom: 8px;
  color: #6b7280;
  font-size: 0.9rem;
}

.cmp-quick-spec strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.35;
  color: #111827;
}

/* ---------- Section headings ---------- */

.cmp-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.cmp-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 2.7vw, 2.45rem);
  line-height: 1.14;
}

.cmp-heading p {
  margin: 0;
  color: #586274;
  line-height: 1.75;
}

/* ---------- Layout grids ---------- */

.cmp-grid {
  display: grid;
  gap: 18px;
}

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

.cmp-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cmp-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ---------- Cards ---------- */

.cmp-card {
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.cmp-card h2,
.cmp-card h3,
.cmp-card h4 {
  margin: 0 0 10px;
  line-height: 1.3;
}

.cmp-card p:last-child,
.cmp-card ul:last-child,
.cmp-card ol:last-child {
  margin-bottom: 0;
}

.cmp-card p {
  color: #586274;
  line-height: 1.75;
}

.cmp-card--accent {
  border-left: 4px solid var(--color-primary);
}

.cmp-card--soft {
  background: #f8fafc;
}

/* ---------- Lists ---------- */

.cmp-list,
.cmp-doc-list,
.cmp-meta-list,
.cmp-check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cmp-list li,
.cmp-doc-list li,
.cmp-meta-list li,
.cmp-check-list li {
  position: relative;
  padding-left: 18px;
  color: #586274;
  line-height: 1.75;
}

.cmp-list li::before,
.cmp-doc-list li::before,
.cmp-meta-list li::before,
.cmp-check-list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* ---------- Tables ---------- */

.cmp-table-wrap {
  overflow-x: auto;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.cmp-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.cmp-table th,
.cmp-table td {
  padding: 16px 18px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
}

.cmp-table thead th {
  background: #f8fafc;
  color: #111827;
  font-size: 0.95rem;
  font-weight: 700;
}

.cmp-table tbody td {
  color: #586274;
}

.cmp-table tbody td:first-child {
  color: #111827;
  font-weight: 600;
}

.cmp-table tbody tr:last-child td {
  border-bottom: none;
}

/* ---------- Documents ---------- */

.cmp-documents {
  display: grid;
  gap: 18px;
}

.cmp-doc-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid #d8e0e6;
  border-radius: 12px;
  background: #ffffff;
  color: var(--color-text);
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s ease;
}

.cmp-doc-link:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: #f8fbfd;
}

/* ---------- Gallery ---------- */

.cmp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cmp-gallery-card {
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.cmp-gallery-card img {
  display: block;
  width: 100%;
  height: auto;
}

.cmp-gallery-placeholder {
  min-height: 220px;
  padding: 22px;
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(180deg, #f8fafc 0%, #edf2f6 100%);
  color: #607080;
}

/* ---------- Related cards ---------- */

.cmp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cmp-related-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.cmp-related-card__media {
  padding: 18px 18px 0;
}

.cmp-related-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px;
}

.cmp-related-card__body h3 {
  margin: 0 0 10px;
}

.cmp-related-card__body p {
  flex: 1;
  margin: 0 0 16px;
  color: #586274;
  line-height: 1.7;
}

/* ---------- FAQ ---------- */

.cmp-faq {
  display: grid;
  gap: 14px;
}

.cmp-faq__item {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}

.cmp-faq__item summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.cmp-faq__item summary::-webkit-details-marker {
  display: none;
}

.cmp-faq__content {
  padding: 0 22px 18px;
  color: #586274;
  line-height: 1.75;
}

.cmp-faq__content p:last-child {
  margin-bottom: 0;
}

/* ---------- Tabs (optional if you use them later) ---------- */

.cmp-tabs {
  display: grid;
  gap: 18px;
}

.cmp-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cmp-tabs__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid #d8e0e6;
  border-radius: 999px;
  background: #ffffff;
  color: #44586b;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.cmp-tabs__button:hover,
.cmp-tabs__button.is-active {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: #eef4f8;
}

.cmp-tabs__panel {
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

/* ---------- CTA ---------- */

.cmp-cta {
  padding: clamp(56px, 8vw, 92px) 0;
  background: linear-gradient(135deg, #123e64 0%, #1d5d92 100%);
  color: #ffffff;
}

.cmp-cta__box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cmp-cta__content {
  max-width: 760px;
}

.cmp-cta__content h2 {
  margin: 0 0 12px;
  font-size: clamp(1.85rem, 3vw, 2.8rem);
  line-height: 1.15;
  color: #ffffff;
}

.cmp-cta__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
}

.cmp-cta .cmp-actions {
  margin-top: 0;
}

.cmp-cta .btn--secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
}

.cmp-cta .btn--secondary:hover {
  border-color: #ffffff;
  color: #ffffff;
  background: transparent;
}

/* ---------- Utility ---------- */

.cmp-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 0;
  border: 0;
}

.cmp-sticky-anchor {
  scroll-margin-top: 110px;
}

.cmp-center {
  text-align: center;
}

.cmp-muted {
  color: #6b7280;
}

/* ---------- Responsive ---------- */

@media (max-width: 1100px) {
  .cmp-grid--4,
  .cmp-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cmp-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .cmp-hero__grid,
  .cmp-grid--2,
  .cmp-grid--3 {
    grid-template-columns: 1fr;
  }

  .cmp-hero__media {
    order: -1;
  }
}

@media (max-width: 640px) {
  .cmp-shell {
    width: min(100% - 24px, 1180px);
  }

  .cmp-quick-specs,
  .cmp-grid--4,
  .cmp-gallery-grid,
  .cmp-related-grid {
    grid-template-columns: 1fr;
  }

  .cmp-actions {
    flex-direction: column;
  }

  .cmp-actions .btn {
    width: 100%;
    min-width: 100%;
  }

  .cmp-media-placeholder {
    min-height: 260px;
  }

  .cmp-table {
    min-width: 100%;
  }

  .cmp-table th,
  .cmp-table td {
    padding: 14px;
  }

  .cmp-tabs__nav {
    flex-direction: column;
  }

  .cmp-tabs__button {
    width: 100%;
  }

  .cmp-cta__box {
    align-items: stretch;
  }
}
/* =========================================================
   DVALI COMPONENT PHOTOS
   Append to /assets/css/components.css
   ========================================================= */

/* Hero photo wrapper */
.cmp-hero__media {
  display: flex;
  align-items: stretch;
  min-height: 100%;
}

.cmp-hero__media > img,
.cmp-hero__media > picture {
  width: 100%;
}

/* Main product photo
   Use this for load cells, indicators, accessories, software screenshots */
.cmp-main-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 360px;
  object-fit: contain;
  object-position: center;
  padding: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

/* Use this only when you want the photo to fill the box */
.cmp-main-image--cover {
  padding: 0;
  object-fit: cover;
}

/* Generic media card photos */
.cmp-media-card {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.cmp-media-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

/* Gallery photos */
.cmp-gallery-card {
  overflow: hidden;
  padding: 10px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.cmp-gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}

/* Related / accessory card images */
.cmp-related-card__media {
  padding: 18px 18px 0;
}

.cmp-related-card__image,
.cmp-related-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: contain;
  object-position: center;
  padding: 12px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
}

/* Optional figure + caption */
.cmp-figure {
  margin: 0;
}

.cmp-figure figcaption {
  margin-top: 10px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #6b7280;
  text-align: center;
}

/* Photo placeholders stay visually aligned with real photos */
.cmp-media-placeholder {
  aspect-ratio: 4 / 3;
  min-height: 360px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 28px;
  color: #607080;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px dashed #c7d2e0;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.cmp-media-placeholder strong {
  display: block;
  margin-bottom: 10px;
  color: #111827;
  font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 900px) {
  .cmp-main-image,
  .cmp-media-placeholder {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .cmp-main-image,
  .cmp-media-placeholder {
    min-height: 240px;
    padding: 16px;
    border-radius: 16px;
  }

  .cmp-gallery-card {
    padding: 8px;
    border-radius: 16px;
  }

  .cmp-gallery-card img,
  .cmp-related-card__image,
  .cmp-related-card__media img {
    border-radius: 10px;
  }
} 
/* ===== ART-2 INDICATOR PAGE ===== */

.indicator-product-page,
.indicator-product-page * {
  box-sizing: border-box;
}

.indicator-product-page {
  --indicator-bg: #ffffff;
  --indicator-panel: #f6f8fb;
  --indicator-line: #dbe4ec;
  --indicator-title: #18324a;
  --indicator-text: #495a6b;
  --indicator-accent: #0f4f96;
  --indicator-accent-dark: #0b3d74;
  --indicator-warm: #c9781f;
  --indicator-shadow: 0 18px 40px rgba(15, 34, 56, 0.08);
  background: var(--indicator-bg);
  color: var(--indicator-text);
}

.indicator-wrap {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.indicator-breadcrumbs {
  padding: 24px 0 8px;
}

.indicator-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  color: #6a7887;
  font-size: 0.95rem;
}

.indicator-breadcrumb-list a {
  color: var(--indicator-accent);
  text-decoration: none;
}

.indicator-breadcrumb-list a:hover {
  text-decoration: underline;
}

.indicator-hero {
  padding: 20px 0 64px;
}

.indicator-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 32px;
  align-items: center;
}

.indicator-eyebrow {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--indicator-warm);
}

.indicator-hero-title,
.indicator-section-title,
.indicator-mini-title,
.indicator-feature-card h3,
.indicator-faq-item summary {
  color: var(--indicator-title);
}

.indicator-hero-title {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.indicator-hero-text,
.indicator-section-intro,
.indicator-panel p,
.indicator-feature-card p,
.indicator-faq-item p,
.indicator-doc-note {
  line-height: 1.7;
}

.indicator-hero-text {
  margin: 0 0 22px;
  font-size: 1.05rem;
  max-width: 60ch;
}

.indicator-hero-facts,
.indicator-cert-badges,
.indicator-hero-actions,
.indicator-check-list,
.indicator-doc-list {
  margin: 0;
  padding: 0;
}

.indicator-hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin-bottom: 18px;
}

.indicator-hero-facts li,
.indicator-cert-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--indicator-line);
  border-radius: 999px;
  background: #fff;
  font-weight: 600;
  color: var(--indicator-title);
}

.indicator-cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.indicator-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.indicator-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s ease;
  border: 1px solid transparent;
}

.indicator-btn--primary {
  background: var(--indicator-accent);
  color: #fff;
}

.indicator-btn--primary:hover {
  background: var(--indicator-accent-dark);
}

.indicator-btn--secondary {
  background: #fff;
  color: var(--indicator-accent);
  border-color: var(--indicator-line);
}

.indicator-btn--secondary:hover {
  border-color: var(--indicator-accent);
}

.indicator-image-card,
.indicator-panel,
.indicator-feature-card,
.indicator-use-card,
.indicator-cta-box {
  background: var(--indicator-panel);
  border: 1px solid var(--indicator-line);
  border-radius: 20px;
  box-shadow: var(--indicator-shadow);
}

.indicator-image-card {
  margin: 0;
  padding: 22px;
}

.indicator-image-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.indicator-section {
  padding: 70px 0;
  border-top: 1px solid #eef2f6;
}

.indicator-section-heading {
  margin-bottom: 26px;
}

.indicator-section-title {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.15;
}

.indicator-section-intro {
  margin: 0;
  max-width: 70ch;
}

.indicator-overview-grid,
.indicator-io-grid,
.indicator-accessory-grid,
.indicator-cert-grid,
.indicator-spec-grid {
  display: grid;
  gap: 22px;
}

.indicator-overview-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.indicator-io-grid,
.indicator-accessory-grid,
.indicator-cert-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.indicator-spec-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.indicator-panel,
.indicator-feature-card {
  padding: 24px;
}

.indicator-panel--table {
  overflow: hidden;
}

.indicator-mini-title {
  margin: 0 0 14px;
  font-size: 1.12rem;
}

.indicator-check-list {
  list-style: none;
}

.indicator-check-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.indicator-check-list li:last-child {
  margin-bottom: 0;
}

.indicator-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--indicator-accent);
  transform: translateY(-50%);
}

.indicator-feature-grid,
.indicator-use-grid {
  display: grid;
  gap: 22px;
}

.indicator-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.indicator-feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.indicator-feature-card p {
  margin: 0;
}

.indicator-use-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.indicator-use-card {
  padding: 18px;
  text-align: center;
  font-weight: 700;
  color: var(--indicator-title);
}

.indicator-table-wrap {
  overflow-x: auto;
}

.indicator-spec-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 420px;
}

.indicator-spec-table th,
.indicator-spec-table td {
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid var(--indicator-line);
}

.indicator-spec-table tr:first-child th,
.indicator-spec-table tr:first-child td {
  border-top: 0;
}

.indicator-spec-table th {
  width: 58%;
  color: var(--indicator-title);
  font-weight: 700;
}

.indicator-spec-table td {
  color: var(--indicator-text);
}

.indicator-doc-list {
  list-style: none;
}

.indicator-doc-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 0;
  border-top: 1px solid var(--indicator-line);
}

.indicator-doc-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.indicator-doc-status {
  font-size: 0.95rem;
  color: #6a7887;
}

.indicator-doc-note {
  margin: 18px 0 0;
}

.indicator-faq-list {
  display: grid;
  gap: 14px;
}

.indicator-faq-item {
  border: 1px solid var(--indicator-line);
  border-radius: 16px;
  background: #fff;
  padding: 0 18px;
}

.indicator-faq-item summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 700;
  list-style: none;
}

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

.indicator-faq-item p {
  margin: 0 0 18px;
}

.indicator-section--cta {
  padding-bottom: 84px;
}

.indicator-cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 28px;
}

@media (max-width: 1100px) {
  .indicator-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .indicator-use-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .indicator-io-grid,
  .indicator-accessory-grid,
  .indicator-cert-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .indicator-hero-grid,
  .indicator-overview-grid,
  .indicator-spec-grid,
  .indicator-cta-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .indicator-wrap {
    width: min(1200px, calc(100% - 24px));
  }

  .indicator-section {
    padding: 56px 0;
  }

  .indicator-feature-grid,
  .indicator-use-grid,
  .indicator-io-grid,
  .indicator-accessory-grid,
  .indicator-cert-grid {
    grid-template-columns: 1fr;
  }

  .indicator-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .indicator-hero-facts li,
  .indicator-cert-badges span {
    width: 100%;
    justify-content: center;
  }

  .indicator-image-card,
  .indicator-panel,
  .indicator-feature-card,
  .indicator-cta-box {
    padding: 20px;
  }
}