/* LinkManu Automotive Electronics Industry Page CSS */
.lm-auto-page {
  --lm-auto-navy: #071b3a;
  --lm-auto-blue: #0e2d5c;
  --lm-auto-accent: #f28c28;
  --lm-auto-text: #1d2939;
  --lm-auto-muted: #667085;
  --lm-auto-line: #e6eaf0;
  --lm-auto-bg: #f6f8fb;
  --lm-auto-white: #ffffff;
  font-family: inherit;
  color: var(--lm-auto-text);
  background: var(--lm-auto-white);
}

.lm-auto-page * {
  box-sizing: border-box;
}

.lm-auto-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.lm-auto-hero {
  padding: 78px 0 70px;
  background:
    radial-gradient(circle at top right, rgba(242, 140, 40, 0.20), transparent 32%),
    linear-gradient(135deg, #071b3a 0%, #0e2d5c 58%, #12396e 100%);
  color: var(--lm-auto-white);
  overflow: hidden;
}

.lm-auto-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 48px;
  align-items: center;
}

.lm-auto-eyebrow {
  margin: 0 0 12px;
  color: var(--lm-auto-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lm-auto-hero h1,
.lm-auto-section h2,
.lm-auto-final-cta h2 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.lm-auto-hero h1 {
  max-width: 760px;
  font-size: clamp(38px, 5vw, 68px);
  color: var(--lm-auto-white);
}

.lm-auto-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.72;
}

.lm-auto-hero-actions,
.lm-auto-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.lm-auto-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.lm-auto-btn:hover {
  transform: translateY(-1px);
}

.lm-auto-btn-primary {
  background: var(--lm-auto-accent);
  color: #111827;
  box-shadow: 0 14px 32px rgba(242, 140, 40, 0.30);
}

.lm-auto-btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--lm-auto-white);
  background: rgba(255, 255, 255, 0.08);
}

.lm-auto-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.lm-auto-proof-row span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 650;
}

.lm-auto-hero-media {
  position: relative;
}

.lm-auto-hero-media::before {
  content: "";
  position: absolute;
  inset: 24px -18px -18px 42px;
  border-radius: 28px;
  background: rgba(242, 140, 40, 0.16);
}

.lm-auto-hero-media img,
.lm-auto-product-card img,
.lm-auto-evidence-card img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.lm-auto-hero-media img {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 28px;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.32);
}

.lm-auto-section {
  padding: 76px 0;
}

.lm-auto-intro {
  background: var(--lm-auto-bg);
}

.lm-auto-section-head {
  max-width: 840px;
  margin-bottom: 34px;
}

.lm-auto-section-head h2,
.lm-auto-split h2 {
  color: var(--lm-auto-navy);
  font-size: clamp(30px, 3.5vw, 46px);
}

.lm-auto-section-head p,
.lm-auto-split p,
.lm-auto-card p,
.lm-auto-product-card p,
.lm-auto-step p,
.lm-auto-note-box p,
.lm-auto-faq details p,
.lm-auto-final-cta p {
  color: var(--lm-auto-muted);
  line-height: 1.72;
}

.lm-auto-card-grid {
  display: grid;
  gap: 20px;
}

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

.lm-auto-card {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--lm-auto-line);
  border-radius: 22px;
  background: var(--lm-auto-white);
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.06);
}

.lm-auto-card h3,
.lm-auto-product-card h3,
.lm-auto-step h3 {
  margin: 0 0 10px;
  color: var(--lm-auto-navy);
  font-size: 20px;
  line-height: 1.28;
}

.lm-auto-card p,
.lm-auto-product-card p,
.lm-auto-step p {
  margin: 0;
  font-size: 15px;
}

.lm-auto-dark {
  color: var(--lm-auto-white);
  background: linear-gradient(135deg, #071b3a 0%, #102f5f 100%);
}

.lm-auto-dark h2,
.lm-auto-dark p {
  color: var(--lm-auto-white);
}

.lm-auto-dark .lm-auto-split > div:first-child p:not(.lm-auto-eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.lm-auto-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: center;
}

.lm-auto-check-list {
  display: grid;
  gap: 14px;
}

.lm-auto-check-list div {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.lm-auto-check-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--lm-auto-white);
}

.lm-auto-check-list span {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.lm-auto-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.lm-auto-product-card {
  overflow: hidden;
  border: 1px solid var(--lm-auto-line);
  border-radius: 24px;
  background: var(--lm-auto-white);
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.06);
}

.lm-auto-product-card img {
  aspect-ratio: 16 / 9;
}

.lm-auto-product-card div {
  padding: 24px;
}

.lm-auto-product-card a,
.lm-auto-inline-links a {
  color: var(--lm-auto-blue);
  font-weight: 800;
  text-decoration: none;
}

.lm-auto-product-card a:hover,
.lm-auto-inline-links a:hover {
  color: var(--lm-auto-accent);
}

.lm-auto-process {
  background: var(--lm-auto-bg);
}

.lm-auto-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.lm-auto-step {
  position: relative;
  padding: 28px;
  border-radius: 24px;
  background: var(--lm-auto-white);
  border: 1px solid var(--lm-auto-line);
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.06);
}

.lm-auto-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(242, 140, 40, 0.14);
  color: var(--lm-auto-accent);
  font-weight: 900;
}

.lm-auto-note-box {
  margin-top: 26px;
  padding: 24px;
  border-left: 5px solid var(--lm-auto-accent);
  border-radius: 18px;
  background: #fff7ed;
}

.lm-auto-note-box strong {
  color: var(--lm-auto-navy);
}

.lm-auto-evidence-card {
  padding: 12px;
  border: 1px solid var(--lm-auto-line);
  border-radius: 28px;
  background: var(--lm-auto-white);
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.08);
}

.lm-auto-evidence-card img {
  aspect-ratio: 16 / 11;
  border-radius: 20px;
}

.lm-auto-inline-links a {
  padding: 12px 16px;
  border: 1px solid var(--lm-auto-line);
  border-radius: 999px;
  background: var(--lm-auto-bg);
}

.lm-auto-faq {
  background: var(--lm-auto-bg);
}

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

.lm-auto-faq details {
  border: 1px solid var(--lm-auto-line);
  border-radius: 18px;
  background: var(--lm-auto-white);
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
}

.lm-auto-faq summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--lm-auto-navy);
  font-weight: 800;
}

.lm-auto-faq details p {
  margin: 0;
  padding: 0 22px 22px;
}

.lm-auto-final-cta {
  padding: 70px 0;
  background: var(--lm-auto-white);
}

.lm-auto-final-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px;
  border-radius: 30px;
  background: linear-gradient(135deg, #071b3a 0%, #103667 100%);
  color: var(--lm-auto-white);
}

.lm-auto-final-box h2,
.lm-auto-final-box p {
  color: var(--lm-auto-white);
}

.lm-auto-final-box p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 980px) {
  .lm-auto-hero-grid,
  .lm-auto-split {
    grid-template-columns: 1fr;
  }

  .lm-auto-card-grid-4,
  .lm-auto-product-grid,
  .lm-auto-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lm-auto-hero-media {
    max-width: 620px;
  }
}

@media (max-width: 640px) {
  .lm-auto-container {
    width: min(100% - 28px, 1180px);
  }

  .lm-auto-hero {
    padding: 58px 0 54px;
  }

  .lm-auto-section {
    padding: 58px 0;
  }

  .lm-auto-card-grid-4,
  .lm-auto-product-grid,
  .lm-auto-steps {
    grid-template-columns: 1fr;
  }

  .lm-auto-card,
  .lm-auto-step,
  .lm-auto-product-card div {
    padding: 22px;
  }

  .lm-auto-final-box {
    align-items: flex-start;
    flex-direction: column;
    padding: 30px;
  }

  .lm-auto-btn {
    width: 100%;
  }
}

