/* ==========================================================================
   AUTOMATION PAGE — automation.css
   ========================================================================== */

/* ── Statement Band ── */
.auto-statement {
  background: #080808;
  padding: 100px 60px;
  border-bottom: 1px solid rgba(235,125,0,0.15);
}

.auto-statement-inner {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.auto-statement-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #eb7d00;
  display: flex;
  align-items: center;
  gap: 16px;
}
.auto-statement-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: #eb7d00;
  flex-shrink: 0;
}

.auto-statement-title {
  font-family: 'Orbitron', system-ui, sans-serif;
  font-size: clamp(32px, 4.5vw, 62px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
}
.auto-statement-title em { color: #eb7d00; font-style: normal; }

.auto-statement-body {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: clamp(15px, 1.2vw, 18px);
  color: #a8a8a8;
  line-height: 1.85;
  max-width: 720px;
}

/* ── Feature Section (Inspection Room) ── */
.auto-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  background: #0a0a0a;
}

.auto-feature-img {
  position: relative;
  overflow: hidden;
}
.auto-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.auto-feature:hover .auto-feature-img img { transform: scale(1.04); }

.auto-feature-body {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  border-left: 1px solid rgba(235,125,0,0.12);
}

.auto-feature-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #eb7d00;
  display: flex;
  align-items: center;
  gap: 14px;
}
.auto-feature-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: #eb7d00;
  flex-shrink: 0;
}

.auto-feature-title {
  font-family: 'Orbitron', system-ui, sans-serif;
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
}
.auto-feature-title em { color: #eb7d00; font-style: normal; }

.auto-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.auto-feature-list li {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  color: #888;
  padding-left: 22px;
  position: relative;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.auto-feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #eb7d00;
  font-weight: 700;
}

/* ── End-to-End Section ── */
.auto-e2e {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  background: #080808;
}

.auto-e2e-body {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  border-right: 1px solid rgba(235,125,0,0.12);
}

.auto-e2e-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #eb7d00;
  display: flex;
  align-items: center;
  gap: 14px;
}
.auto-e2e-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: #eb7d00;
  flex-shrink: 0;
}

.auto-e2e-title {
  font-family: 'Orbitron', system-ui, sans-serif;
  font-size: clamp(26px, 3.2vw, 48px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
}
.auto-e2e-title em { color: #eb7d00; font-style: normal; }

.auto-e2e-body-text {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: clamp(15px, 1.15vw, 17px);
  color: #888;
  line-height: 1.85;
  max-width: 520px;
}

.auto-e2e-img {
  position: relative;
  overflow: hidden;
}
.auto-e2e-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.auto-e2e:hover .auto-e2e-img img { transform: scale(1.04); }

/* ── Responsive ── */
@media (max-width: 980px) {
  .auto-statement { padding: 60px 22px; }
  .auto-feature { grid-template-columns: 1fr; min-height: auto; }
  .auto-feature-body { padding: 48px 22px; border-left: none; border-top: 1px solid rgba(235,125,0,0.12); }
  .auto-e2e { grid-template-columns: 1fr; min-height: auto; }
  .auto-e2e-body { padding: 48px 22px; border-right: none; border-bottom: 1px solid rgba(235,125,0,0.12); }
}

@media (max-width: 600px) {
  .auto-feature-body { padding: 36px 22px; }
  .auto-e2e-body { padding: 36px 22px; }
}
