
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

.hz-twf-specs,
.hz-twf-specs * {
  box-sizing: border-box;
}

.hz-twf-specs {
  --hz-orange: #f26a21;
  --hz-orange-dark: #d95416;
  --hz-navy: #071d33;
  --hz-text: #4b5563;
  --hz-border: #e5e7eb;
  --hz-soft-bg: #f6f8fb;

  width: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(242, 106, 33, 0.06), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  font-family: 'Inter', Arial, sans-serif;
  color: var(--hz-text);
  line-height: 1.6;
}

.hz-twf-specs h2,
.hz-twf-specs h3,
.hz-twf-specs p {
  margin: 0;
}

.hz-twf-specs-section {
  padding: 84px 0;
}

.hz-twf-specs-container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 40px;
}

.hz-twf-specs-head {
  max-width: 980px;
  margin-bottom: 46px;
}

.hz-twf-specs-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--hz-orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hz-twf-specs-title {
  margin-bottom: 18px;
  color: var(--hz-navy);
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 44px;
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -1.2px;
}

.hz-twf-specs-desc {
  color: var(--hz-text);
  font-size: 17px;
  line-height: 1.8;
  font-weight: 300;
}

.hz-twf-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.hz-twf-spec-card {
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--hz-border);
  box-shadow: 0 14px 34px rgba(7, 29, 51, 0.045);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.hz-twf-spec-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 106, 33, 0.35);
  box-shadow: 0 22px 52px rgba(7, 29, 51, 0.1);
}

.hz-twf-spec-card-head {
  padding: 22px 26px;
  background:
    radial-gradient(circle at 92% 16%, rgba(242, 106, 33, 0.22), transparent 32%),
    linear-gradient(135deg, #071d33 0%, #0d304f 100%);
}

.hz-twf-spec-card-head h3 {
  color: #ffffff;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 23px;
  line-height: 1.3;
  font-weight: 600;
}

.hz-twf-spec-row {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  border-bottom: 1px solid var(--hz-border);
}

.hz-twf-spec-row:last-child {
  border-bottom: 0;
}

.hz-twf-spec-row div {
  padding: 15px 20px;
  color: var(--hz-text);
  font-size: 14.5px;
  line-height: 1.55;
  font-weight: 300;
}

.hz-twf-spec-row div:first-child {
  background: #f9fafb;
  color: var(--hz-navy);
  font-weight: 700;
}

.hz-twf-spec-note {
  margin-top: 28px;
  padding: 20px 24px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--hz-border);
  color: var(--hz-text);
  font-size: 14.5px;
  line-height: 1.75;
  font-weight: 300;
  box-shadow: 0 12px 30px rgba(7, 29, 51, 0.04);
}

.hz-twf-spec-note strong {
  color: var(--hz-navy);
  font-weight: 700;
}

@media (max-width: 1180px) {
  .hz-twf-specs-grid {
    grid-template-columns: 1fr;
  }

  .hz-twf-specs-title {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .hz-twf-specs-container {
    padding: 0 22px;
  }

  .hz-twf-specs-section {
    padding: 62px 0;
  }

  .hz-twf-specs-title {
    font-size: 32px;
    letter-spacing: -0.8px;
  }

  .hz-twf-specs-desc {
    font-size: 16px;
  }

  .hz-twf-spec-card {
    overflow-x: auto;
  }

  .hz-twf-spec-card-head,
  .hz-twf-spec-row {
    min-width: 640px;
  }
}
