/* Thunder EV — Coming soon placeholder panels (agriculture, etc.) */

.tev-soon {
  --tev-soon-accent: #2563eb;
  --tev-soon-accent-soft: #eff6ff;
  --tev-soon-body: #475569;
  --tev-soon-title: #0f172a;
  padding: 2.5rem 1.25rem 3.5rem;
  background: #f8fafc;
  min-height: min(72vh, 720px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tev-soon--agri {
  --tev-soon-accent: #15803d;
  --tev-soon-accent-soft: #f0fdf4;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 45%, #f0fdf4 100%);
}

.tev-soon__inner {
  max-width: 640px;
  width: 100%;
  text-align: center;
}

.tev-soon__badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tev-soon-accent);
  background: var(--tev-soon-accent-soft);
  border: 1px solid rgba(21, 128, 61, 0.15);
  margin-bottom: 1rem;
}

.tev-soon--agri .tev-soon__badge {
  border-color: rgba(21, 128, 61, 0.2);
}

.tev-soon__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--tev-soon-title);
  line-height: 1.25;
}

.tev-soon__lead {
  margin: 0 auto 1.25rem;
  max-width: 520px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--tev-soon-body);
}

.tev-soon__notice {
  margin: 0 auto 1.25rem;
  max-width: 480px;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e2e8f0;
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
}

.tev-soon__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.tev-soon__tags li {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--tev-soon-accent);
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
}

.tev-soon__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.tev-soon__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.2rem;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.tev-soon__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

.tev-soon__btn--primary {
  background: var(--tev-soon-accent);
  color: #fff;
}

.tev-soon__btn--outline {
  background: #fff;
  color: var(--tev-soon-accent);
  border-color: #bbf7d0;
}

.tev-soon__btn--wa {
  background: #25d366;
  color: #fff;
}

.tev-soon__list {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  padding: 1.15rem 1.25rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  list-style: none;
}

.tev-soon__list li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.25rem;
  font-size: 0.86rem;
  color: var(--tev-soon-body);
  line-height: 1.5;
}

.tev-soon__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tev-soon-accent);
  opacity: 0.75;
}

@media (max-width: 640px) {
  .tev-soon {
    padding: 2rem 1rem 2.5rem;
    min-height: auto;
  }

  .tev-soon__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .tev-soon__btn {
    width: 100%;
  }
}
