/* ── SPECS HERO ── */
.specs-hero {
  width: 100%;
  background: linear-gradient(180deg, #6C6C6C 0%, #EEEEEE 100%);
  padding: 61px 24px 24px;
}

.specs-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 1232px;
  margin: 0 auto;
}

.specs-hero-title {
  font-weight: 600;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.5;
  text-align: center;
  text-transform: capitalize;
  color: #FFFFFF;
}

.specs-hero-img {
  display: flex;
  justify-content: center;
}

.specs-hero-img img {
  max-width: 500px;
  width: 100%;
  height: auto;
  display: block;
}

.specs-hero-pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
}

.specs-price {
  font-weight: 400;
  font-size: 18px;
  color: #8B8782;
  text-align: center;
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 32px;
  background: var(--color-accent);
  color: var(--color-accent-dark);
  font-family: var(--font);
  font-weight: 600;
  font-size: 16px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-accent:hover { opacity: 0.85; }

/* ── SPECS CONTENT ── */
.specs-content {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.spec-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 80px 100px;
  gap: 42px;
  border-top: 1.13px solid #D8D8D8;
  flex-wrap: wrap;
}

.spec-row:first-child {
  border-top: none;
}

.spec-label {
  font-weight: 600;
  font-size: clamp(20px, 2.5vw, 32px);
  line-height: 1.5;
  color: #6C6C6C;
  flex: 0 0 300px;
  min-width: 200px;
}

.spec-value {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.spec-value p {
  font-weight: 400;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 2.2;
  color: #8B8782;
}

.spec-value p strong {
  font-weight: 700;
  color: #8B8782;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .spec-row {
    padding: 40px 24px;
    flex-direction: column;
    gap: 16px;
  }

  .spec-label {
    flex: none;
    width: auto;
  }
}
