/* Hugent — products overview */

/* ---------- Hero ---------- */

.pr-hero {
  padding: 96px 24px 0;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.pr-hero__eyebrow {
  margin-bottom: 20px;
}

.pr-hero h1 {
  font-size: clamp(30px, 4.4vw, 48px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 760px;
  margin-bottom: 10px;
}

.pr-hero__tagline {
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 16px;
}

.pr-hero__copy {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 54ch;
}

.pr-section + .pr-section {
  margin-top: 84px;
}

.pr-section {
  margin-top: 52px;
}

/* ---------- Product cards ---------- */

.pr-card {
  border-radius: var(--radius-lg);
  padding: 34px;
}

.pr-card + .pr-card {
  margin-top: 22px;
}

.pr-card--dark {
  background: var(--ink-card);
  color: #fff;
}

.pr-card--light {
  background: var(--cream-card);
}

.pr-card__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.pr-card--reverse .pr-media {
  order: -1;
}

.pr-card h2 {
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 12px 0 6px;
  max-width: 20ch;
}

.pr-card__tagline {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 12px;
}

.pr-card--dark .pr-card__tagline {
  color: rgba(255, 255, 255, 0.7);
}

.pr-card__copy {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 44ch;
  margin-bottom: 22px;
}

.pr-card--dark .pr-card__copy {
  color: var(--muted-on-dark);
}

.pr-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 11px;
}

.pr-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
}

.pr-list svg {
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.7;
}

.pr-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
}

.btn--outline {
  background: transparent;
}

.btn--light {
  background: var(--paper);
  color: var(--ink);
}

.btn--light:hover {
  background: #f7f5f1;
}

.pr-card--dark .btn--outline {
  border: 1px solid var(--line-on-dark);
  color: #fff;
}

.pr-card--dark .btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.pr-card--light .btn--outline {
  border: 1px solid var(--line);
  color: var(--ink);
}

.pr-card--light .btn--outline:hover {
  background: rgba(20, 20, 20, 0.05);
}

.pr-media {
  display: block;
  border-radius: 20px;
  min-height: 330px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #d8d4ca;
  box-shadow: 0 18px 40px rgba(20, 20, 20, 0.18);
}

/* ---------- Section heads ---------- */

.pr-head {
  max-width: 640px;
  margin-bottom: 26px;
}

.pr-head h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 10px 0 12px;
}

.pr-head p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

/* ---------- Module grid ---------- */

.pr-modules {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pr-module {
  display: block;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.pr-module:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 20, 20, 0.22);
}

.pr-module__num {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--teal);
}

.pr-module h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 9px 0 7px;
}

.pr-module p {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--muted);
}

/* ---------- Comparison ---------- */

.pr-compare {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pr-compare table {
  width: 100%;
  border-collapse: collapse;
}

.pr-compare th,
.pr-compare td {
  text-align: left;
  vertical-align: top;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.pr-compare tr:last-child th,
.pr-compare tr:last-child td {
  border-bottom: 0;
}

.pr-compare thead th {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.02em;
  background: var(--cream-soft);
}

.pr-compare thead th:first-child {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.pr-compare tbody th {
  width: 26%;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
}

.pr-compare td {
  font-size: 13.5px;
  line-height: 1.55;
}

/* ---------- Together band ---------- */

.pr-together {
  background: var(--ink-card);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 34px;
}

.pr-together h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 10px 0 12px;
  max-width: 20ch;
}

.pr-together > p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted-on-dark);
  max-width: 52ch;
}

.pr-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.pr-step {
  background: var(--ink-soft);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius-md);
  padding: 22px;
}

.pr-step p:first-child {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.pr-step h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}

.pr-step p:last-child {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--muted-on-dark);
}

/* ---------- CTA ---------- */

.pr-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--cream-card);
  border-radius: var(--radius-lg);
  padding: 38px;
  margin: 84px 0 20px;
}

.pr-cta h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
  max-width: 20ch;
}

.pr-cta p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
  max-width: 44ch;
}

/* ---------- Responsive ---------- */

@media (max-width: 1000px) {
  .pr-modules {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .pr-hero {
    max-width: 100%;
  }
  .pr-card__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .pr-card--reverse .pr-media {
    order: 0;
  }
  .pr-steps {
    grid-template-columns: 1fr;
  }
  .pr-compare {
    overflow-x: auto;
  }
  .pr-compare table {
    min-width: 640px;
  }
}

@media (max-width: 640px) {
  .pr-hero {
    padding-top: 62px;
  }
  .pr-section + .pr-section {
    margin-top: 56px;
  }
  .pr-card,
  .pr-together {
    padding: 24px;
  }
  .pr-modules {
    grid-template-columns: 1fr;
  }
  .pr-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 22px;
    margin-top: 56px;
  }
}
