.auto-shell {
  max-width: 1220px;
  margin: 0 auto;
  padding: 30px 18px 56px;
  color: #1b2433;
}

.auto-hero {
  background: linear-gradient(135deg, #eff8f7 0%, #f7fbff 100%);
  border: 1px solid #cfe5e1;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(27, 36, 51, 0.08);
}

.auto-eyebrow {
  margin: 0 0 10px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0f766e;
}

.auto-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.auto-intro {
  max-width: 860px;
  margin-top: 16px;
  line-height: 1.7;
  font-size: 1.05rem;
}

.auto-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.auto-chip-list span {
  padding: 9px 14px;
  border-radius: 999px;
  background: #1b2433;
  color: #fff;
  font-weight: 700;
}

.auto-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.auto-card,
.auto-content {
  background: #fff;
  border: 1px solid #dde5ee;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 14px 34px rgba(27, 36, 51, 0.06);
}

.auto-card h2,
.auto-content h2 {
  margin: 0 0 12px;
}

.auto-card p,
.auto-content p {
  line-height: 1.7;
}

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

.auto-card label {
  display: block;
  margin-top: 14px;
  margin-bottom: 6px;
  font-weight: 700;
}

.auto-card input,
.auto-card select {
  width: 100%;
  border: 1px solid #bfd0df;
  border-radius: 14px;
  padding: 12px 14px;
  background: #f7fbff;
}

.auto-card button {
  margin-top: 16px;
  width: 100%;
  border: none;
  border-radius: 14px;
  padding: 14px 18px;
  background: #0f766e;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.auto-result {
  margin-top: 16px;
  min-height: 84px;
  border-radius: 16px;
  border: 1px solid #d2e5e2;
  background: #f2fffb;
  padding: 16px;
}

.auto-result strong {
  display: block;
  margin-bottom: 8px;
  color: #0f766e;
}

.auto-content {
  margin-top: 24px;
}

.auto-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.auto-link-grid a {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f2fffb;
  border: 1px solid #cfe5e1;
  border-radius: 12px;
  padding: 14px 16px;
  text-decoration: none;
  color: #0f766e;
  font-weight: 600;
}

.auto-link-grid a i {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #fff;
}

@media (max-width: 920px) {
  .auto-grid,
  .auto-link-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .auto-shell {
    padding: 20px 14px 44px;
  }

  .auto-hero,
  .auto-card,
  .auto-content {
    padding: 18px;
    border-radius: 18px;
  }

  .auto-form-grid {
    grid-template-columns: 1fr;
  }
}
