/*
LinkManu LED Display Connectivity Page
Scope: .lm-led-display-page only
*/

.lm-led-display-page {
  --lm-led-navy: #0b1f3a;
  --lm-led-blue: #0f5bd8;
  --lm-led-blue-dark: #0b46aa;
  --lm-led-sky: #eef5ff;
  --lm-led-soft: #f5f8fc;
  --lm-led-border: rgba(15, 35, 66, 0.11);
  --lm-led-text: #1d3557;
  --lm-led-muted: #5d708a;
  --lm-led-white: #ffffff;
  --lm-led-shadow: 0 18px 44px rgba(15, 35, 66, 0.08);
  color: var(--lm-led-text);
  background: #ffffff;
}

.lm-led-display-page *,
.lm-led-display-page *::before,
.lm-led-display-page *::after {
  box-sizing: border-box;
}

.lm-led-display-page .lm-led-display-page__container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.lm-led-display-page .lm-led-display-page__hero {
  padding: 56px 0 64px;
  background: linear-gradient(135deg, #f2f7ff 0%, #edf5ff 58%, #f8fbff 100%);
  border-bottom: 1px solid rgba(15, 35, 66, 0.08);
}

.lm-led-display-page .lm-led-display-page__hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 56px;
  align-items: center;
}

.lm-led-display-page .lm-led-display-page__label,
.lm-led-display-page .lm-led-display-page__section-label,
.lm-led-display-page .lm-led-display-page__final-label {
  margin: 0 0 12px;
  color: var(--lm-led-blue);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.lm-led-display-page .lm-led-display-page__title {
  margin: 0;
  color: var(--lm-led-navy);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 850;
}

.lm-led-display-page .lm-led-display-page__lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--lm-led-text);
  font-size: 18px;
  line-height: 1.68;
}

.lm-led-display-page .lm-led-display-page__summary {
  max-width: 640px;
  margin: 14px 0 0;
  color: var(--lm-led-muted);
  font-size: 16px;
  line-height: 1.72;
}

.lm-led-display-page .lm-led-display-page__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.lm-led-display-page .lm-led-display-page__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.lm-led-display-page .lm-led-display-page__button:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.lm-led-display-page .lm-led-display-page__button--primary {
  color: #ffffff;
  background: var(--lm-led-blue);
  box-shadow: 0 14px 28px rgba(15, 91, 216, 0.25);
}

.lm-led-display-page .lm-led-display-page__button--primary:hover {
  color: #ffffff;
  background: var(--lm-led-blue-dark);
}

.lm-led-display-page .lm-led-display-page__button--secondary {
  color: var(--lm-led-blue);
  background: #ffffff;
  border: 1px solid rgba(15, 91, 216, 0.18);
}

.lm-led-display-page .lm-led-display-page__button--light {
  color: var(--lm-led-blue);
  background: #ffffff;
}

.lm-led-display-page .lm-led-display-page__button--outline-light {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.lm-led-display-page .lm-led-display-page__hero-image {
  margin: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 35, 66, 0.08);
  border-radius: 24px;
  box-shadow: var(--lm-led-shadow);
}

.lm-led-display-page .lm-led-display-page__hero-image img {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  border-radius: 18px;
  background: #ffffff;
}

.lm-led-display-page .lm-led-display-page__section {
  padding: 82px 0;
}

.lm-led-display-page .lm-led-display-page__section--soft {
  background: var(--lm-led-soft);
  border-top: 1px solid rgba(15, 35, 66, 0.06);
  border-bottom: 1px solid rgba(15, 35, 66, 0.06);
}

.lm-led-display-page .lm-led-display-page__section-head {
  max-width: 780px;
  margin-bottom: 32px;
}

.lm-led-display-page .lm-led-display-page__section-title {
  margin: 0;
  color: var(--lm-led-navy);
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 850;
}

.lm-led-display-page .lm-led-display-page__section-intro {
  margin: 16px 0 0;
  color: var(--lm-led-muted);
  font-size: 16px;
  line-height: 1.76;
}

.lm-led-display-page .lm-led-display-page__scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.lm-led-display-page .lm-led-display-page__card,
.lm-led-display-page .lm-led-display-page__need-item,
.lm-led-display-page .lm-led-display-page__related-card,
.lm-led-display-page .lm-led-display-page__workflow-step {
  background: #ffffff;
  border: 1px solid var(--lm-led-border);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(15, 35, 66, 0.055);
}

.lm-led-display-page .lm-led-display-page__card {
  padding: 26px 24px;
}

.lm-led-display-page .lm-led-display-page__card-number,
.lm-led-display-page .lm-led-display-page__workflow-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--lm-led-blue);
  background: #edf5ff;
  font-weight: 850;
  font-size: 13px;
}

.lm-led-display-page .lm-led-display-page__card-title,
.lm-led-display-page .lm-led-display-page__need-title,
.lm-led-display-page .lm-led-display-page__related-card-title,
.lm-led-display-page .lm-led-display-page__workflow-title {
  margin: 0;
  color: var(--lm-led-navy);
  font-size: 18px;
  line-height: 1.22;
  font-weight: 850;
}

.lm-led-display-page .lm-led-display-page__card-text,
.lm-led-display-page .lm-led-display-page__need-text,
.lm-led-display-page .lm-led-display-page__related-card-text,
.lm-led-display-page .lm-led-display-page__workflow-text {
  margin: 12px 0 0;
  color: var(--lm-led-muted);
  font-size: 15px;
  line-height: 1.68;
}

.lm-led-display-page .lm-led-display-page__visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.lm-led-display-page .lm-led-display-page__visual-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--lm-led-border);
  border-radius: 22px;
  box-shadow: var(--lm-led-shadow);
}

.lm-led-display-page .lm-led-display-page__visual-figure {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 250px;
  margin: 0;
  padding: 22px;
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 35, 66, 0.06);
}

.lm-led-display-page .lm-led-display-page__visual-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lm-led-display-page .lm-led-display-page__visual-content {
  padding: 24px 24px 26px;
}

.lm-led-display-page .lm-led-display-page__visual-content h3 {
  margin: 0;
  color: var(--lm-led-navy);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 850;
}

.lm-led-display-page .lm-led-display-page__visual-content p {
  margin: 12px 0 0;
  color: var(--lm-led-muted);
  font-size: 15px;
  line-height: 1.68;
}

.lm-led-display-page .lm-led-display-page__need-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.lm-led-display-page .lm-led-display-page__need-item {
  padding: 24px;
}

.lm-led-display-page .lm-led-display-page__related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.lm-led-display-page .lm-led-display-page__related-card {
  padding: 24px;
}

.lm-led-display-page .lm-led-display-page__related-card-title {
  display: inline-block;
  text-decoration: none;
}

.lm-led-display-page .lm-led-display-page__related-card-title:hover {
  color: var(--lm-led-blue);
  text-decoration: none;
}

.lm-led-display-page .lm-led-display-page__support-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 42px;
  padding: 46px;
  background: linear-gradient(135deg, #ffffff 0%, #f3f8ff 100%);
  border: 1px solid var(--lm-led-border);
  border-radius: 24px;
  box-shadow: var(--lm-led-shadow);
}

.lm-led-display-page .lm-led-display-page__support-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.lm-led-display-page .lm-led-display-page__support-item {
  padding: 16px 18px;
  color: var(--lm-led-navy);
  background: #ffffff;
  border: 1px solid var(--lm-led-border);
  border-radius: 14px;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 750;
}

.lm-led-display-page .lm-led-display-page__inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
}

.lm-led-display-page .lm-led-display-page__text-link {
  color: var(--lm-led-blue);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.lm-led-display-page .lm-led-display-page__text-link:hover {
  text-decoration: underline;
}

.lm-led-display-page .lm-led-display-page__review-box {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px;
  background: #ffffff;
  border: 1px solid var(--lm-led-border);
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(15, 35, 66, 0.06);
}

.lm-led-display-page .lm-led-display-page__review-box h3 {
  margin: 0;
  color: var(--lm-led-navy);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 850;
}

.lm-led-display-page .lm-led-display-page__review-box p {
  margin: 14px 0 24px;
  color: var(--lm-led-muted);
  font-size: 15px;
  line-height: 1.75;
}

.lm-led-display-page .lm-led-display-page__workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.lm-led-display-page .lm-led-display-page__workflow-step {
  padding: 24px;
}

.lm-led-display-page .lm-led-display-page__related-grid--pages {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lm-led-display-page .lm-led-display-page__faq-list {
  display: grid;
  gap: 12px;
}

.lm-led-display-page .lm-led-display-page__faq-item {
  background: #ffffff;
  border: 1px solid var(--lm-led-border);
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(15, 35, 66, 0.045);
  overflow: hidden;
}

.lm-led-display-page .lm-led-display-page__faq-question {
  cursor: pointer;
  padding: 18px 22px;
  color: var(--lm-led-navy);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 850;
}

.lm-led-display-page .lm-led-display-page__faq-answer {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--lm-led-muted);
  font-size: 15px;
  line-height: 1.7;
}

.lm-led-display-page .lm-led-display-page__final-cta {
  padding: 78px 0;
  background: linear-gradient(135deg, #082044 0%, #0d4789 100%);
}

.lm-led-display-page .lm-led-display-page__final-inner {
  text-align: center;
}

.lm-led-display-page .lm-led-display-page__final-label {
  color: rgba(255, 255, 255, 0.72);
}

.lm-led-display-page .lm-led-display-page__final-title {
  max-width: 760px;
  margin: 0 auto;
  color: #ffffff;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 850;
}

.lm-led-display-page .lm-led-display-page__final-text {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.75;
}

.lm-led-display-page .lm-led-display-page__hero-actions--center {
  justify-content: center;
}

@media (max-width: 1080px) {
  .lm-led-display-page .lm-led-display-page__hero-inner,
  .lm-led-display-page .lm-led-display-page__support-panel {
    grid-template-columns: 1fr;
  }

  .lm-led-display-page .lm-led-display-page__scenario-grid,
  .lm-led-display-page .lm-led-display-page__related-grid,
  .lm-led-display-page .lm-led-display-page__workflow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lm-led-display-page .lm-led-display-page__visual-grid,
  .lm-led-display-page .lm-led-display-page__need-grid {
    grid-template-columns: 1fr;
  }

  .lm-led-display-page .lm-led-display-page__visual-figure {
    height: 280px;
  }
}

@media (max-width: 720px) {
  .lm-led-display-page .lm-led-display-page__container {
    width: min(100% - 28px, 1120px);
  }

  .lm-led-display-page .lm-led-display-page__hero {
    padding: 42px 0 48px;
  }

  .lm-led-display-page .lm-led-display-page__section {
    padding: 58px 0;
  }

  .lm-led-display-page .lm-led-display-page__scenario-grid,
  .lm-led-display-page .lm-led-display-page__related-grid,
  .lm-led-display-page .lm-led-display-page__workflow,
  .lm-led-display-page .lm-led-display-page__support-list {
    grid-template-columns: 1fr;
  }

  .lm-led-display-page .lm-led-display-page__support-panel {
    padding: 26px;
    gap: 26px;
  }

  .lm-led-display-page .lm-led-display-page__review-box {
    padding: 26px;
  }

  .lm-led-display-page .lm-led-display-page__visual-figure {
    height: 220px;
  }

  .lm-led-display-page .lm-led-display-page__button {
    width: 100%;
  }
}

