:root {
  --ink: #101820;
  --muted: #5d6b78;
  --line: #d8e1e8;
  --panel: #f5f8fb;
  --white: #ffffff;
  --blue: #0b4d78;
  --blue-2: #0f6c9f;
  --teal: #00a99d;
  --green: #3aa657;
  --yellow: #f6c343;
  --shadow: 0 18px 45px rgba(16, 24, 32, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  background: var(--white);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

.brand-logo-wrap {
  display: grid;
  place-items: center;
  width: 118px;
  height: 46px;
  overflow: hidden;
  border-radius: var(--radius);
  background: transparent;
}

.brand-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #253241;
  font-size: 14px;
}

.site-nav a {
  text-decoration: none;
}

.nav-cta {
  padding: 10px 14px;
  color: var(--white);
  border-radius: var(--radius);
  background: var(--blue);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 28px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 19, 31, 0.92) 0%, rgba(4, 27, 43, 0.78) 42%, rgba(4, 27, 43, 0.25) 100%),
    linear-gradient(0deg, rgba(4, 19, 31, 0.18), rgba(4, 19, 31, 0.18));
}

.hero-content {
  position: relative;
  max-width: 790px;
  padding: clamp(52px, 8vw, 110px) clamp(20px, 6vw, 76px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.02;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.25;
}

.hero-copy {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

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

.partnership-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  width: min(620px, 100%);
  margin-top: 28px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(5, 17, 26, 0.72);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.partnership-card img {
  width: 146px;
  height: 72px;
  object-fit: contain;
  border-radius: 6px;
  background: transparent;
}

.partnership-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}

.partnership-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--ink);
  background: var(--yellow);
}

.button.secondary {
  color: var(--white);
  background: var(--teal);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.intro-grid,
.split,
.service-band,
.visual-band,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.intro p,
.split p,
.service-band p,
.visual-band p,
.contact p {
  color: var(--muted);
  font-size: 18px;
}

.metric-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.metric-panel div {
  min-height: 140px;
  padding: 24px;
  background: var(--white);
}

.metric-panel strong {
  display: block;
  color: var(--blue);
  font-size: 32px;
}

.metric-panel span {
  color: var(--muted);
  font-size: 14px;
}

.visual-band,
.service-band {
  background: var(--panel);
}

.visual-band img,
.service-band img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.category-grid,
.application-grid,
.technical-grid,
.product-grid {
  display: grid;
  gap: 18px;
}

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

.category-card,
.application-card,
.technical-grid article,
.product-card,
.highlight-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.category-card {
  padding: 24px;
}

.category-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.split {
  background: linear-gradient(135deg, #0f2b3f, #0d5f86);
  color: var(--white);
}

.split .eyebrow,
.split p {
  color: rgba(255, 255, 255, 0.82);
}

.highlight-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.highlight-list article {
  padding: 22px;
  color: var(--ink);
}

.icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--teal);
}

.products {
  background: #fbfcfd;
}

.filters {
  margin-bottom: 22px;
}

.filter-button {
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.filter-button.is-active {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}

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

.product-card {
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(16, 24, 32, 0.08);
}

.product-card img {
  width: 100%;
  height: 168px;
  object-fit: cover;
}

.product-image-button {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.product-card-body {
  padding: 20px;
}

.badge {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  background: #e6f3f7;
}

.model-code {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #5a3700;
  font-size: 12px;
  font-weight: 900;
  background: #fff0c2;
}

.spec-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 18px;
}

.spec-list div {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #edf2f5;
  font-size: 14px;
}

.spec-list dt {
  color: var(--muted);
  font-weight: 800;
}

.spec-list dd {
  margin: 0;
}

.quote-link {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

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

.application-card {
  padding: 22px;
  min-height: 180px;
  background: linear-gradient(180deg, #ffffff, #f7fafc);
}

.application-card p {
  color: var(--muted);
  font-size: 15px;
}

.technical {
  background: var(--panel);
}

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

.technical-grid article {
  padding: 24px;
}

.technical-grid p {
  color: var(--muted);
}

.contact {
  align-items: start;
  color: var(--white);
  background: linear-gradient(135deg, #0a2538, #0b4d78 62%, #0b6f78);
}

.contact .eyebrow,
.contact p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 6px;
  color: #344454;
  font-size: 14px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.76);
  background: #081923;
}

.site-footer strong,
.site-footer span {
  display: block;
  color: var(--white);
}

.site-footer p {
  margin: 6px 0 0;
}

@media (max-width: 1080px) {
  .category-grid,
  .product-grid,
  .technical-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 20px 22px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    min-height: 720px;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(4, 19, 31, 0.94), rgba(4, 19, 31, 0.72));
  }

  .intro-grid,
  .split,
  .service-band,
  .visual-band,
  .contact {
    grid-template-columns: 1fr;
  }

  .metric-panel {
    grid-template-columns: 1fr;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {
  .hero-content {
    padding-top: 58px;
  }

  .hero-actions .button,
  .contact-form .button {
    width: 100%;
  }

  .partnership-card {
    grid-template-columns: 1fr;
  }

  .partnership-card img {
    width: 150px;
  }

  .category-grid,
  .product-grid,
  .technical-grid,
  .application-grid,
  .highlight-list,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .spec-list div {
    grid-template-columns: 1fr;
  }
}

/* Catalogo interativo Ruyang */
.network-animation {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.74;
}

.network-animation span {
  position: absolute;
  width: 34vw;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--yellow), transparent);
  box-shadow: 0 0 18px rgba(0, 169, 157, 0.55);
  animation: scanLine 5.5s ease-in-out infinite;
}

.network-animation span:nth-child(1) { left: 5%; top: 29%; animation-delay: 0s; }
.network-animation span:nth-child(2) { right: 5%; top: 49%; animation-delay: 1.2s; }
.network-animation span:nth-child(3) { left: 30%; bottom: 24%; animation-delay: 2.3s; }
.network-animation span:nth-child(4) { right: 20%; bottom: 38%; animation-delay: 3.2s; }

@keyframes scanLine {
  0%, 100% { transform: translateX(-22px) scaleX(0.35); opacity: 0; }
  35%, 65% { transform: translateX(26px) scaleX(1); opacity: 1; }
}

.line-grid,
.comparison-grid {
  display: grid;
  gap: 18px;
}

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

.line-card,
.comparison-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.line-card {
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(16, 24, 32, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.line-card:hover,
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 169, 157, 0.55);
  box-shadow: var(--shadow);
}

.line-card img {
  width: 100%;
  height: 142px;
  object-fit: cover;
}

.line-card-body {
  padding: 20px;
}

.line-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-top: -42px;
  margin-bottom: 14px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.line-meta {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 14px 0;
  color: var(--muted);
}

.line-meta strong {
  color: var(--blue);
  font-size: 30px;
}

.line-tags,
.tags,
.modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.line-tags span,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 4px 8px;
  border-radius: 999px;
  color: #155268;
  font-size: 12px;
  font-weight: 800;
  background: #e5f7f5;
}

.product-count {
  margin: -8px 0 22px;
  color: var(--muted);
  font-weight: 800;
}

.product-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card.is-featured {
  border-color: rgba(246, 195, 67, 0.9);
}

.product-media {
  position: relative;
  overflow: hidden;
}

.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.35), transparent 70%);
  transform: translateX(-120%);
  transition: transform 800ms ease;
}

.product-card:hover .product-media::after {
  transform: translateX(120%);
}

.laser-beam {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 18px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffdf5f, #00ffe1, transparent);
  box-shadow: 0 0 14px rgba(0, 255, 225, 0.9);
  animation: laserPulse 2.6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes laserPulse {
  0%, 100% { opacity: 0.25; transform: scaleX(0.7); }
  50% { opacity: 1; transform: scaleX(1); }
}

.filter-button,
.quote-link,
.button {
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.filter-button:hover,
.quote-link:hover,
.button:hover {
  transform: translateY(-1px);
}

.quote-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--blue);
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.muted-link {
  color: var(--muted);
}

.featured-product {
  background: linear-gradient(135deg, #09202f, #0f5d84);
  color: var(--white);
}

#featuredProduct {
  display: block;
}

#featuredProduct img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

#featuredProduct p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.featured-carousel {
  width: 100%;
}

.featured-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
}

.featured-header h2 {
  margin-bottom: 0;
}

.featured-controls {
  display: flex;
  gap: 10px;
}

.featured-controls button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-size: 30px;
  cursor: pointer;
}

.featured-track {
  position: relative;
  min-height: 520px;
}

.featured-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  opacity: 0;
  transform: translateX(20px);
  pointer-events: none;
  transition: opacity 320ms ease, transform 320ms ease;
}

.featured-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.featured-image-button {
  border-radius: var(--radius);
}

.featured-image-button img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
}

.featured-copy .model-code {
  margin-bottom: 14px;
}

.featured-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.featured-dot {
  width: 34px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
}

.featured-dot.is-active {
  background: var(--yellow);
}

.comparison {
  background: #fbfcfd;
}

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

.comparison-card {
  padding: 24px;
  background: linear-gradient(180deg, #ffffff, #f1f7fa);
}

.comparison-card span {
  display: block;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.comparison-card strong {
  display: block;
  margin: 10px 0;
  font-size: 22px;
}

.comparison-card p {
  color: var(--muted);
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
}

.product-modal.is-open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 18, 28, 0.64);
  backdrop-filter: blur(4px);
}

.modal-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(760px, 94vw);
  height: 100%;
  padding: clamp(24px, 5vw, 44px);
  overflow: auto;
  background: var(--white);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.22);
  transform: translateX(100%);
  animation: slideModal 260ms ease forwards;
}

@keyframes slideModal {
  to { transform: translateX(0); }
}

.modal-open {
  overflow: hidden;
}

.modal-close {
  position: sticky;
  top: 0;
  float: right;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--blue);
  font-size: 28px;
  cursor: pointer;
}

.modal-lead {
  color: var(--muted);
  font-size: 18px;
}

.datasheet-label {
  display: inline-flex;
  margin: 12px 0 10px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--blue);
  background: #eaf6fa;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.modal-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.modal-spec-grid article {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfd;
}

.modal-spec-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 13px;
  text-transform: uppercase;
}

.modal-spec-grid span,
.modal-columns li {
  color: #334455;
}

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

.modal-columns section {
  padding: 18px;
  border-radius: var(--radius);
  background: var(--panel);
}

.modal-quote {
  margin-top: 20px;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: clamp(18px, 4vw, 44px);
  background: rgba(3, 12, 20, 0.88);
  backdrop-filter: blur(8px);
}

.image-lightbox.is-open {
  display: grid;
}

.image-lightbox figure {
  width: min(980px, 94vw);
  margin: 0;
}

.image-lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.image-lightbox figcaption {
  margin-top: 14px;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-size: 30px;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease, transform 500ms ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .line-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

@media (max-width: 820px) {
  .line-grid,
  #featuredProduct {
    grid-template-columns: 1fr;
  }

  .featured-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .featured-track {
    min-height: 760px;
  }

  .featured-slide {
    grid-template-columns: 1fr;
    align-content: start;
  }

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

  .image-lightbox img {
    max-height: 42vh;
  }
}

@media (max-width: 580px) {
  .line-grid,
  .comparison-grid,
  .modal-spec-grid,
  .modal-columns {
    grid-template-columns: 1fr;
  }

  .modal-panel {
    width: 100vw;
  }

  .featured-track {
    min-height: 850px;
  }
}
