.wh-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.wh-center {
  text-align: center;
}

.wh-h1 {
  font-size: clamp(28px, 2.2vw, 36px);
  color: var(--wh-text);
  margin: 0 0 18px;
  font-weight: 700;
}

.wh-h2 {
  font-size: clamp(24px, 2.0vw, 34px);
  color: var(--wh-text);
  margin: 0 0 10px;
  font-weight: 800;
}


/* HERO */
.wh-hero {
  background: var(--wh-white);
  padding: 120px 0;
}

.wh-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 42px;
  align-items: start;
}

.wh-hero__points {
  display: grid;
  gap: 18px;
  margin-top: 6px;
}

.wh-hero__frame {
  width: 100%;
  background: #d1d5db;
  /* placeholder gray */
  border-radius: 2px;
  overflow: hidden;
}

.wh-hero__placeholder {
  /* Keep a similar aspect ratio to the screenshot */
  aspect-ratio: 16 / 9;
  background: #bdbdbd;
}

.wh-dots {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  justify-content: flex-start;
}

.wh-dot {
  width: 8px;
  height: 8px;
  background: #d1d5db;
  border: 0;
  border-radius: 2px;
  padding: 0;
  cursor: pointer;
}

.wh-dot--active {
  background: #6b7280;
}

/* PARTNER / CARDS */
.wh-partner {
  background: var(--wh-bg-soft);
  padding: 120px 0 120px;
}

.wh-lead {
  max-width: 720px;
  margin: 0 auto 34px;
  color: var(--wh-muted);
}

.wh-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 10px;
}

.wh-card {
  background: var(--wh-white);
  border: 1px solid var(--wh-border);
  padding: 18px 18px 16px;
  min-height: 150px;
}

.wh-card__icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--thm-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}


/* FEATURE COMPARISON */
.wh-compare {
  background: var(--wh-white);
  padding: 120px 0 120px;
}

.wh-subhead {
  max-width: 680px;
  margin: 0 auto 22px;
  color: var(--wh-muted);
  font-size: 16px;
}

.wh-table-wrap {
  overflow: auto;
  border: 1px solid var(--wh-border);
  border-radius: 0px;
  /* screenshot looks square */
}

.wh-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 860px;
  /* keeps layout stable on small screens */
}

.wh-table thead th {
  background: var(--thm-primary);
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 11px;
  font-weight: 700;
  padding: 18px 16px;
  text-align: center;
}

.wh-table tbody th,
.wh-table tbody td {
  background: #f7f7f7;
  border-top: 1px solid var(--wh-border);
  padding: 18px 16px;
  vertical-align: middle;
}

.wh-table tbody tr:first-child th,
.wh-table tbody tr:first-child td {
  border-top: none;
}

.wh-table tbody th {
  width: 30%;
  text-align: left;
  font-size: 16px;
  color: var(--wh-text);
  font-weight: 700;
}

.wh-rowhead {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.wh-rowicon {
  width: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
}

.wh-table tbody td {
  width: 35%;
  text-align: center;
  color: var(--wh-muted);
  font-size: 16px;
}

.wh-cell {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  max-width: 330px;
  text-align: left;
  /* text wraps nicely like the screenshot */
}

.wh-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  font-weight: 800;
  color: #6b7280;
  margin-top: 1px;
}

/* Responsive */
@media (max-width: 980px) {
  .wh-hero__grid {
    grid-template-columns: 1fr;
  }

  .wh-hero__media {
    order: -1;
    /* image first on mobile; remove if you want copy first */
  }

  .wh-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .wh-cards {
    grid-template-columns: 1fr;
  }

  .wh-hero {
    padding: 120px 0;
  }

  .wh-partner {
    padding: 120px 0 120px;
  }

  .wh-compare {
    padding: 120px 0 120px;
  }
}


.wh-step-card {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

/* Circular icon badge */
.wh-step-icon {
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: var(--thm-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 18px rgba(var(--thm-primary-rgb), .18);
}

/* Small divider line */
.wh-step-divider {
  width: 56px;
  height: 5px;
  border-radius: 999px;
  background: #6b7280;
  opacity: .9;
}