/* ==========================================================================
   webhosting.css — Webhosting product page styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   Page-level dark base + aurora background
   -------------------------------------------------------------------------- */

body {
  background-color: var(--color-bg-dark);
  color: var(--color-text-inverse);
}

.page-aurora {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: var(--z-below);
}

.page-aurora__orb {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

.page-aurora__orb--1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle at center, #1e3a8a 0%, transparent 68%);
  filter: blur(90px);
  top: -300px;
  left: -150px;
  opacity: .75;
  animation: aurora-orb-1 22s ease-in-out infinite alternate;
}

.page-aurora__orb--2 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at center, #0e7490 0%, transparent 68%);
  filter: blur(80px);
  top: -80px;
  right: -80px;
  opacity: .55;
  animation: aurora-orb-2 28s ease-in-out infinite alternate;
}

.page-aurora__orb--3 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at center, #1d4ed8 0%, transparent 68%);
  filter: blur(70px);
  bottom: 20%;
  left: 30%;
  opacity: .4;
  animation: aurora-orb-3 24s ease-in-out infinite alternate;
}

.page-aurora__orb--4 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at center, #0891b2 0%, transparent 68%);
  filter: blur(60px);
  top: 40%;
  right: 15%;
  opacity: .35;
  animation: aurora-orb-4 19s ease-in-out infinite alternate;
}

@keyframes aurora-orb-1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(90px, 70px) scale(1.12); }
}

@keyframes aurora-orb-2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-70px, 90px) scale(1.16); }
}

@keyframes aurora-orb-3 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(50px, -70px) scale(1.09); }
}

@keyframes aurora-orb-4 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-45px, -35px) scale(1.14); }
}

@media (prefers-reduced-motion: reduce) {
  .page-aurora__orb { animation: none; }
}

/* --------------------------------------------------------------------------
   Layout container (shared across sections)
   -------------------------------------------------------------------------- */

.wh-container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

/* --------------------------------------------------------------------------
   Hero section — .wh-hero
   -------------------------------------------------------------------------- */

.wh-hero {
  background-color: var(--color-bg-dark);
  min-height: 420px;
  padding-block: 3.5rem 4rem;
  display: flex;
  align-items: center;
}

.wh-hero__inner {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 3rem;
  align-items: center;
}

/* --------------------------------------------------------------------------
   Hero — left column: breadcrumb, heading, subline, CTAs
   -------------------------------------------------------------------------- */

.wh-hero__breadcrumb {
  margin-block-end: 1rem;
}

.wh-hero__breadcrumb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: .375rem;
  flex-wrap: wrap;
  font-size: var(--font-size-sm);
  color: var(--color-neutral-400);
}

.wh-hero__breadcrumb-list li + li::before {
  content: '/';
  margin-inline-end: .375rem;
  opacity: .5;
}

.wh-hero__breadcrumb-list a {
  color: var(--color-neutral-400);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.wh-hero__breadcrumb-list a:hover {
  color: var(--color-primary-300);
}

.wh-hero__breadcrumb-list [aria-current='page'] {
  color: var(--color-neutral-300);
}

.wh-hero__h1 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: var(--font-weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: #fff;
  margin-block-end: .875rem;
}

.wh-hero__subline {
  font-size: clamp(.9375rem, 1.75vw, 1.0625rem);
  color: var(--color-primary-200);
  line-height: var(--leading-relaxed);
  margin-block-end: 1.75rem;
  max-inline-size: 52ch;
}

.wh-hero__actions {
  display: flex;
  gap: .875rem;
  flex-wrap: wrap;
}

/* Ghost button override — white outline on dark background */
.wh-hero__actions .btn--ghost {
  border-color: rgb(255 255 255 / .35);
  color: #fff;
}

.wh-hero__actions .btn--ghost:hover {
  background-color: rgb(255 255 255 / .1);
  border-color: rgb(255 255 255 / .55);
  color: #fff;
}

/* --------------------------------------------------------------------------
   Hero — right column: 2×2 feature badge grid
   -------------------------------------------------------------------------- */

.wh-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.wh-badge {
  background: rgb(255 255 255 / .06);
  border: 1px solid rgb(255 255 255 / .1);
  border-radius: var(--radius-xl);
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .625rem;
  text-align: center;
  transition: background-color var(--duration-normal) var(--ease-out),
              border-color var(--duration-normal) var(--ease-out);
}

.wh-badge:hover {
  background: rgb(255 255 255 / .1);
  border-color: rgb(255 255 255 / .2);
}

.wh-badge__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-lg);
  background: rgb(37 99 235 / .25);
  color: var(--color-primary-300);
  flex-shrink: 0;
}

.wh-badge__label {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: #fff;
  line-height: var(--leading-snug);
}

/* --------------------------------------------------------------------------
   Responsive — stack to single column on mobile
   -------------------------------------------------------------------------- */

@media (max-width: 767px) {
  .wh-hero {
    padding-block: 2.5rem 3rem;
  }

  .wh-hero__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .wh-badges {
    grid-template-columns: 1fr 1fr;
  }
}

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

/* --------------------------------------------------------------------------
   Pricing section — .wh-pricing
   -------------------------------------------------------------------------- */

.wh-pricing {
  padding-block: 5rem 6rem;
  position: relative;
  z-index: var(--z-base);
}

/* Section header */

.wh-pricing__header {
  text-align: center;
  max-inline-size: 56ch;
  margin-inline: auto;
  margin-block-end: 2.5rem;
}

.wh-pricing__h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--tracking-tight);
  color: #fff;
  line-height: var(--leading-tight);
  margin-block-end: .625rem;
}

.wh-pricing__sub {
  font-size: var(--font-size-base);
  color: var(--color-neutral-400);
  line-height: var(--leading-relaxed);
}

/* --------------------------------------------------------------------------
   Billing period toggle — fieldset + pills
   -------------------------------------------------------------------------- */

.wh-pricing__toggle {
  border: none;
  padding: 0;
  margin: 0 0 3rem;
  display: flex;
  justify-content: center;
}

.wh-pricing__pills {
  display: inline-flex;
  gap: .5rem;
  background: rgb(255 255 255 / .05);
  border: 1px solid rgb(255 255 255 / .1);
  border-radius: var(--radius-full);
  padding: .3125rem;
  flex-wrap: wrap;
  justify-content: center;
}

.wh-pricing__pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  padding: .5rem 1.125rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-neutral-400);
  transition: color var(--duration-fast) var(--ease-out),
              background-color var(--duration-fast) var(--ease-out);
  user-select: none;
}

.wh-pricing__pill:has(input:checked) {
  background-color: var(--color-orange-500);
  color: #fff;
}

.wh-pricing__pill:hover:not(:has(input:checked)) {
  color: var(--color-neutral-200);
  background: rgb(255 255 255 / .07);
}

.wh-pricing__pill:focus-within {
  outline: 2px solid var(--color-focus-ring);
  outline-offset: 2px;
}

/* ACTIEPRIJS badge on the 1-year pill */

.wh-pricing__pill-badge {
  font-size: .625rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  background: var(--color-orange-500);
  color: #fff;
  padding: .1rem .4rem;
  border-radius: var(--radius-full);
  line-height: 1.4;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Plan cards grid — 3 → 2 → 1 columns
   -------------------------------------------------------------------------- */

.wh-pricing__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}

/* --------------------------------------------------------------------------
   Individual plan card — .wh-plan-card
   -------------------------------------------------------------------------- */

.wh-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgb(255 255 255 / .05);
  border: 1px solid rgb(255 255 255 / .1);
  border-radius: var(--radius-2xl);
  padding: 1.75rem;
  transition: border-color var(--duration-normal) var(--ease-out),
              background-color var(--duration-normal) var(--ease-out),
              transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

.wh-plan-card:hover {
  background: rgb(255 255 255 / .08);
  border-color: rgb(255 255 255 / .18);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgb(0 0 0 / .4);
}

/* Featured card — Medium Online */

.wh-plan-card--featured {
  border-top: 3px solid var(--color-orange-500);
  background: rgb(249 115 22 / .07);
  box-shadow: 0 0 0 1px rgb(249 115 22 / .25),
              0 8px 32px rgb(0 0 0 / .35);
}

.wh-plan-card--featured:hover {
  background: rgb(249 115 22 / .1);
  box-shadow: 0 0 0 1px rgb(249 115 22 / .35),
              0 24px 48px rgb(0 0 0 / .45);
}

/* POPULAIR badge */

.wh-plan-card__badge {
  display: inline-block;
  font-size: .6875rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  background: var(--color-orange-500);
  color: #fff;
  padding: .2rem .75rem;
  border-radius: var(--radius-full);
  margin-block-end: .875rem;
  align-self: flex-start;
}

/* Plan name + storage chip row */

.wh-plan-card__header {
  margin-block-end: 1.25rem;
}

.wh-plan-card__name-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .5rem;
  margin-block-end: .875rem;
}

.wh-plan-card__name {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: #fff;
  line-height: var(--leading-snug);
}

.wh-plan-card__storage {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary-300);
  background: rgb(37 99 235 / .2);
  border: 1px solid rgb(37 99 235 / .3);
  padding: .1875rem .625rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Pricing block */

.wh-plan-card__pricing {
  margin-block-end: .5rem;
}

.wh-plan-card__price-orig {
  font-size: var(--font-size-sm);
  color: var(--color-neutral-500);
  text-decoration: line-through;
  display: block;
  margin-block-end: .1875rem;
}

.wh-plan-card__price-current {
  display: flex;
  align-items: baseline;
  gap: .125rem;
}

.wh-plan-card__currency {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  color: #fff;
  line-height: 1;
}

.wh-plan-card__price-active {
  font-size: 2.25rem;
  font-weight: var(--font-weight-bold);
  color: #fff;
  letter-spacing: var(--tracking-tight);
  line-height: 1;
}

.wh-plan-card__period {
  font-size: var(--font-size-sm);
  color: var(--color-neutral-400);
  margin-inline-start: .125rem;
}

/* SSL micro-label */

.wh-plan-card__ssl {
  font-size: var(--font-size-xs);
  color: var(--color-accent-400);
  margin: 0;
}

/* Specs list */

.wh-plan-card__specs {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .625rem;
  flex: 1;
  border-top: 1px solid rgb(255 255 255 / .08);
  padding-top: 1.25rem;
}

.wh-plan-card__spec {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: var(--font-size-sm);
  color: var(--color-neutral-300);
}

.wh-plan-card__spec svg {
  flex-shrink: 0;
  color: var(--color-primary-400);
}

.wh-plan-card__spec strong {
  color: #fff;
  font-weight: var(--font-weight-semibold);
}

/* Footer: CTA + specs link */

.wh-plan-card__footer {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: auto;
}

.wh-plan-card__cta {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.wh-plan-card__cta--added {
  cursor: default;
  pointer-events: none;
  opacity: 0.75;
}

.wh-plan-card__specs-link {
  font-size: var(--font-size-sm);
  color: var(--color-primary-300);
  text-decoration: none;
  text-align: center;
  transition: color var(--duration-fast) var(--ease-out);
}

.wh-plan-card__specs-link:hover {
  color: var(--color-primary-200);
}

/* Featured card scale on desktop */

@media (min-width: 1024px) {
  .wh-plan-card--featured {
    transform: scale(1.02);
    transform-origin: top center;
  }
}

/* --------------------------------------------------------------------------
   Responsive breakpoints for the pricing grid
   -------------------------------------------------------------------------- */

@media (max-width: 1023px) {
  .wh-pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 639px) {
  .wh-pricing {
    padding-block: 3.5rem 4rem;
  }

  .wh-pricing__grid {
    grid-template-columns: 1fr;
  }

  .wh-pricing__pills {
    gap: .25rem;
  }

  .wh-pricing__pill {
    padding: .4375rem .875rem;
  }
}

/* ==========================================================================
   USP strip — .wh-usp-strip
   ========================================================================== */

.wh-usp-strip {
  background: var(--color-neutral-900);
  padding-block: 2.5rem;
  border-block: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  z-index: var(--z-base);
}

.wh-usp-strip__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8) var(--space-10);
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.wh-usp-strip__item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex: 1 1 200px;
  max-inline-size: 260px;
}

.wh-usp-strip__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-xl);
  background: rgba(249, 115, 22, 0.14);
  color: var(--color-orange-500);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wh-usp-strip__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.wh-usp-strip__value {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: #fff;
  line-height: var(--leading-tight);
}

.wh-usp-strip__desc {
  font-size: var(--font-size-sm);
  color: var(--color-neutral-400);
  line-height: var(--leading-normal);
}

/* ==========================================================================
   Platforms section — CMS & WordPress + Windows Hosting (combined)
   ========================================================================== */

.wh-platforms {
  padding-block: 3rem 3.5rem;
  background: var(--color-bg-subtle);
  position: relative;
  z-index: var(--z-base);
}

.wh-platforms__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.wh-platforms__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: 1.75rem 2rem 2rem;
  display: flex;
  flex-direction: column;
}

/* Eyebrow label chip */

.wh-platforms__label {
  display: inline-flex;
  align-items: center;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--color-primary-600);
  background: rgb(37 99 235 / .08);
  border: 1px solid rgb(37 99 235 / .18);
  border-radius: var(--radius-full);
  padding: .2rem .7rem;
  margin-block-end: .875rem;
  align-self: flex-start;
}

.wh-platforms__label--win {
  color: #0369a1;
  background: rgb(3 105 161 / .08);
  border-color: rgb(3 105 161 / .18);
}

.wh-platforms__h2 {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-snug);
  margin-block-end: .625rem;
}

.wh-platforms__body {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  margin-block-end: 1.25rem;
}

/* CMS logo pills */

.wh-cms-logos {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0 0 1.375rem;
  align-items: center;
}

.wh-cms-logos__item {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: .3rem .75rem .3rem .375rem;
  line-height: 1;
}

.wh-cms-logos__item img {
  border-radius: 5px;
  flex-shrink: 0;
  display: block;
}

/* Inline text link */

.wh-platforms__link {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary-600);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
  margin-top: auto;
}

.wh-platforms__link:hover {
  color: var(--color-primary-700);
  text-decoration: underline;
}

.wh-platforms__link:focus-visible {
  outline: 2px solid var(--color-focus-ring);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Windows feature checklist */

.wh-win-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem var(--space-4);
}

.wh-win-feature {
  display: flex;
  align-items: center;
  gap: .375rem;
  font-size: var(--font-size-sm);
  color: var(--color-text);
  line-height: var(--leading-snug);
}

.wh-win-feature__check {
  flex-shrink: 0;
  color: var(--color-success-700);
}

.wh-platforms__cta {
  align-self: flex-start;
  margin-top: auto;
}

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

  .wh-win-features {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Closing CTA Banner — .wh-cta-banner
   ========================================================================== */

.wh-cta-banner {
  padding-block: 5rem 5.5rem;
  background: linear-gradient(135deg, var(--color-neutral-900) 0%, var(--color-primary-900) 100%);
  border-block: 1px solid rgb(255 255 255 / .07);
  position: relative;
  z-index: var(--z-base);
  text-align: center;
}

.wh-cta-banner__inner {
  max-inline-size: 640px;
  margin-inline: auto;
}

.wh-cta-banner__h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: var(--font-weight-bold);
  color: #fff; /* always white — dark bg regardless of color-scheme */
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
  margin-block-end: var(--space-4);
}

.wh-cta-banner__sub {
  font-size: var(--font-size-lg);
  color: var(--color-neutral-400);
  line-height: var(--leading-normal);
  margin-block-end: var(--space-10);
}

.wh-cta-banner__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-block-end: var(--space-8);
}

.wh-cta-banner__trust {
  font-size: var(--font-size-sm);
  color: var(--color-neutral-500);
  margin: 0;
}

.wh-cta-banner__phone-icon {
  display: inline-block;
  vertical-align: middle;
  margin-block-end: 1px;
}

@media (max-width: 480px) {
  .wh-cta-banner {
    padding-block: 3.5rem 4rem;
  }

  .wh-cta-banner__actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ==========================================================================
   Specs Comparison Table — .wh-specs-table
   ========================================================================== */

.wh-specs-table {
  padding-block: 3rem 4.5rem;
  background: var(--color-bg-dark);
  position: relative;
  z-index: var(--z-base);
}

.wh-specs-table__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-block-end: var(--space-6);
  flex-wrap: wrap;
}

.wh-specs-table__h2 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-semibold);
  color: #fff;
}

.wh-specs-table__toggle {
  display: inline-flex;
  align-items: center;
  padding: var(--space-2) var(--space-4);
  background: transparent;
  border: 1px solid rgb(255 255 255 / .2);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-primary-300, #fdba74);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-colors);
}

.wh-specs-table__toggle:hover {
  background: rgb(255 255 255 / .07);
  border-color: rgb(255 255 255 / .35);
}

.wh-specs-table__toggle:focus-visible {
  outline: 2px solid var(--color-focus-ring);
  outline-offset: 2px;
}

/* Collapsible panel — max-height transition */

.wh-specs-table__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-in-out);
}

.wh-specs-table--open .wh-specs-table__panel {
  max-height: 3200px;
}

@media (prefers-reduced-motion: reduce) {
  .wh-specs-table__panel {
    transition: none;
  }
}

/* Table scroll wrapper */

.wh-specs-table__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / .08);
  box-shadow: 0 4px 24px rgb(0 0 0 / .4);
}

/* Table */

.wh-specs-table__table {
  width: 100%;
  min-width: 840px;
  border-collapse: collapse;
  font-size: var(--font-size-sm);
  color: #e5e7eb;
  background: rgb(255 255 255 / .03);
}

.wh-specs-table__feat-col {
  min-width: 200px;
  width: 24%;
}

/* Header row */

.wh-specs-table__table thead th {
  padding: 12px 16px;
  background: rgb(255 255 255 / .06);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: #9ca3af;
  border-block-end: 1px solid rgb(255 255 255 / .1);
  min-width: 120px;
}

.wh-specs-table__table thead th:first-child {
  text-align: left;
  min-width: 200px;
}

/* Featured column header — orange tint */

.wh-specs-table__table thead .wh-specs-table__col--featured {
  background: rgba(255, 107, 0, 0.12);
  color: var(--color-orange-400, #fb923c);
}

/* Group heading rows */

.wh-specs-table__group td {
  padding: 8px 16px;
  background: rgb(255 255 255 / .04);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--color-orange-400, #fb923c);
  border-block: 1px solid rgb(255 255 255 / .07);
}

/* Data rows — alternating subtle dark tones */

.wh-specs-table__table tbody tr:not(.wh-specs-table__group) th,
.wh-specs-table__table tbody tr:not(.wh-specs-table__group) td {
  padding: 12px 16px;
  border-block-end: 1px solid rgb(255 255 255 / .05);
  text-align: center;
  vertical-align: middle;
  background: transparent;
  color: #d1d5db;
}

.wh-specs-table__table tbody tr:not(.wh-specs-table__group):nth-child(even) th,
.wh-specs-table__table tbody tr:not(.wh-specs-table__group):nth-child(even) td {
  background: rgb(255 255 255 / .03);
}

/* Label column — left-aligned, medium weight, brighter */

.wh-specs-table__table tbody tr:not(.wh-specs-table__group) th {
  text-align: left;
  font-weight: 500;
  color: #f3f4f6;
  min-width: 200px;
}

/* Featured column tint */

.wh-specs-table__col--featured {
  background: rgba(255, 107, 0, 0.07) !important;
}

/* Boolean icons */

.wh-specs-table__icon {
  font-size: 1rem;
  line-height: 1;
}

.wh-specs-table__icon--yes {
  color: var(--color-success, #22c55e);
}

.wh-specs-table__icon--no {
  color: var(--color-muted, #4b5563);
}

/* Mobile — freeze label column */

@media (max-width: 767px) {
  .wh-specs-table__scroll {
    overflow-x: scroll;
  }

  .wh-specs-table__table thead th:first-child,
  .wh-specs-table__table tbody tr:not(.wh-specs-table__group) th {
    position: sticky;
    left: 0;
    z-index: 1;
    background: #0f172a;
    border-right: 1px solid rgb(255 255 255 / .1);
  }

  .wh-specs-table__table tbody tr:not(.wh-specs-table__group):nth-child(even) th {
    background: #111827;
  }
}

/* ==========================================================================
   Print Stylesheet
   Hide navigational chrome, hero, and CTAs; preserve plan cards and specs.
   ========================================================================== */

@media print {
  .page-aurora,
  .wh-hero__breadcrumb,
  .wh-hero__actions,
  .wh-usp-strip,
  .wh-platforms,
  .wh-cta-banner,
  .wh-plan-card__cta,
  .wh-plan-card__specs-link,
  .wh-specs-table__toggle {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }

  .wh-pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .wh-plan-card {
    background: #fff;
    border: 1px solid #ccc;
    color: #000;
    break-inside: avoid;
    transform: none;
    box-shadow: none;
  }

  .wh-specs-table {
    background: #fff;
    color: #000;
  }

  .wh-specs-table__table {
    color: #000;
    background: #fff;
  }

  .wh-specs-table__table thead th,
  .wh-specs-table__table tbody tr:not(.wh-specs-table__group) th,
  .wh-specs-table__table tbody tr:not(.wh-specs-table__group) td {
    color: #000;
    background: #fff;
  }

  /* Reveal full specs table without requiring user interaction */
  /* !important needed here to override JS-controlled max-height: 0 */
  .wh-specs-table__panel {
    max-height: none !important; /* WORKAROUND: panel uses JS-toggled max-height */
    overflow: visible !important;
  }
}
