:root {
  --c-primary: #0033a0;
  --c-primary-dark: #002380;
  --c-primary-light: #3358b8;
  --c-gold: #c9a961;
  --c-gold-dark: #a8893f;
  --c-gold-light: #e0c98a;
  --c-ink: #0b1228;
  --c-ink-soft: #2a3454;
  --c-muted: #5a6788;
  --c-line: #e4e9f2;
  --c-line-soft: #f0f3f9;
  --c-bg: #ffffff;
  --c-bg-alt: #f7f9fc;
  --c-bg-dark: #0b1228;
  --f-sans:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial,
    sans-serif;
  --f-display: "Sora", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --sh-soft: 0 2px 8px rgba(11, 18, 40, 0.06);
  --sh-md: 0 8px 24px rgba(11, 18, 40, 0.08);
  --sh-lg: 0 24px 48px rgba(11, 18, 40, 0.12);
  --sh-gold: 0 8px 24px rgba(201, 169, 97, 0.22);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--f-sans);
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--c-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--c-primary-dark);
}
h1,
h2,
h3,
h4 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
  color: var(--c-ink);
}
h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
}
h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
}
h3 {
  font-size: 1.2rem;
  font-weight: 700;
}
p {
  margin: 0 0 1rem;
  color: var(--c-ink-soft);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container--narrow {
  max-width: 820px;
}
.eyebrow {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gold-dark);
  margin-bottom: 0.75rem;
}
.accent {
  color: var(--c-primary);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn--primary {
  background: var(--c-primary);
  color: #fff;
}
.btn--primary:hover {
  background: var(--c-primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--sh-md);
}
.btn--gold {
  background: var(--c-gold);
  color: #fff;
}
.btn--gold:hover {
  background: var(--c-gold-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--sh-gold);
}
.btn--ghost {
  background: transparent;
  color: var(--c-primary);
  border-color: var(--c-primary);
}
.btn--ghost:hover {
  background: var(--c-primary);
  color: #fff;
}
.btn--outline {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-line);
}
.btn--outline:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
}
.btn--sm {
  padding: 0.55rem 0.9rem;
  font-size: 0.82rem;
}
.btn--lg {
  padding: 1.05rem 1.8rem;
  font-size: 1rem;
}
.btn__group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Header */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-line);
  transition: box-shadow 0.25s ease;
}
.nav.is-scrolled {
  box-shadow: var(--sh-soft);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--c-ink);
  text-decoration: none;
}
.nav__brand .mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
  color: #fff;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.nav__brand:hover {
  color: var(--c-primary);
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav__menu a {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--c-ink-soft);
  text-decoration: none;
}
.nav__menu a:hover {
  color: var(--c-primary);
}
.nav__menu a.is-active {
  color: var(--c-primary);
  font-weight: 700;
}
.nav__menu a.is-active::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--c-gold);
  margin-top: 4px;
  border-radius: 2px;
}
.nav__toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--c-ink);
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 1rem 0;
  background: var(--c-bg-alt);
  border-bottom: 1px solid var(--c-line-soft);
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  color: var(--c-muted);
}
.breadcrumbs li::after {
  content: "/";
  margin-left: 0.5rem;
  color: var(--c-line);
}
.breadcrumbs li:last-child::after {
  display: none;
}
.breadcrumbs a {
  color: var(--c-muted);
}
.breadcrumbs a:hover {
  color: var(--c-primary);
}
.breadcrumbs li[aria-current="page"] {
  color: var(--c-ink);
  font-weight: 600;
}

/* Hero */
.hero {
  position: relative;
  padding: 4rem 0 3rem;
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 51, 160, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(201, 169, 97, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
}
.hero h1 {
  margin-bottom: 1.2rem;
}
.hero__lead {
  font-size: 1.15rem;
  color: var(--c-ink-soft);
  max-width: 760px;
  margin-bottom: 0.5rem;
}
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.8rem;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-ink-soft);
}
.hero__pill svg {
  width: 14px;
  height: 14px;
  color: var(--c-gold-dark);
}

/* Two-column hero (left text + right image) — mirrors product-labels hero__grid */
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero .container:has(.hero__grid) {
  text-align: left;
}
.hero__content {
  min-width: 0;
}
.hero__grid .hero__lead {
  margin-left: 0;
  margin-right: 0;
  max-width: 580px;
}
.hero__grid .btn__group {
  justify-content: flex-start;
}
.hero__visual {
  position: relative;
}
.hero__visual img {
  border-radius: 15px;
}
.hero__visual .hero__img {
  display: block;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(11, 18, 40, 0.12);
}
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .hero .container:has(.hero__grid) {
    text-align: center;
  }
  .hero__grid .hero__lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__grid .btn__group {
    justify-content: center;
  }
  .hero__visual .hero__img {
    max-width: 360px;
  }
}

/* Stats — blue business panel */
.stats {
  padding: 0;
  background: var(--c-bg);
}
.section--tight:has(.stats__grid) {
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(201, 169, 97, 0.18) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 88% 82%,
      rgba(51, 88, 184, 0.32) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, #0b1228 0%, #0033a0 55%, #002380 100%);
  color: #fff;
  position: relative;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
  margin-top: -1.5rem;
  position: relative;
  z-index: 2;
}
.stats__cell {
  background: transparent;
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: background 0.25s ease;
}
.stats__cell:hover {
  background: rgba(255, 255, 255, 0.06);
}
.stats__num {
  font-family: var(--f-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
}
.stats__num .unit {
  font-size: 1.15rem;
  color: var(--c-gold-light);
  margin-left: 0.15rem;
}
.stats__label {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Section base */
.section {
  padding: 4.5rem 0;
}
.section--alt {
  background: var(--c-bg-alt);
}
.section--tight {
  padding: 2.5rem 0;
}
.section-head {
  max-width: 780px;
  margin-bottom: 2.5rem;
}
.section-head h2 {
  margin-bottom: 0.75rem;
}
.section-head p {
  font-size: 1.05rem;
  color: var(--c-muted);
  margin: 0;
}
.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.geo-quote {
  font-size: 1.1rem;
  color: var(--c-ink-soft);
  line-height: 1.75;
  border-left: 4px solid var(--c-gold);
  padding-left: 1.25rem;
  margin: 0;
}

/* Filter bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
  justify-content: center;
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  background: #fff;
  border: 1.5px solid var(--c-line);
  border-radius: 999px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--c-ink-soft);
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-chip:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
}
.filter-chip.is-active {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
}
.filter-chip svg {
  width: 14px;
  height: 14px;
}
.filter-chip .count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 0.4rem;
  background: rgba(0, 51, 160, 0.08);
  color: var(--c-primary);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}
.filter-chip.is-active .count {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

/* Material groups */
.mat-group {
  margin-bottom: 3rem;
}
.mat-group:last-child {
  margin-bottom: 0;
}
.mat-group__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.85rem;
  border-bottom: 2px solid var(--c-line);
}
.mat-group__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--c-bg-alt);
  border-radius: var(--r-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
}
.mat-group__icon--gold {
  background: rgba(201, 169, 97, 0.12);
  color: var(--c-gold-dark);
}
.mat-group__icon--paper {
  background: rgba(181, 146, 101, 0.12);
  color: #8b6b40;
}
.mat-group__icon--specialty {
  background: linear-gradient(
    135deg,
    rgba(155, 93, 229, 0.12),
    rgba(76, 201, 240, 0.12)
  );
  color: #7b3ff2;
}
.mat-group__icon svg {
  width: 24px;
  height: 24px;
}
.mat-group__title {
  flex: 1;
}
.mat-group__title h3 {
  margin: 0;
  font-size: 1.3rem;
}
.mat-group__title .sub {
  font-size: 0.85rem;
  color: var(--c-muted);
  margin-top: 0.15rem;
}
.mat-group__count {
  font-family: var(--f-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-gold-dark);
  background: rgba(201, 169, 97, 0.14);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Material cards */
.mat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.mat-card {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  transition: all 0.25s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.mat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--c-primary);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.mat-card:hover {
  border-color: var(--c-primary);
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
}
.mat-card:hover::before {
  opacity: 1;
}
.mat-card--gold::before {
  background: var(--c-gold);
}
.mat-card__swatch {
  position: relative;
  height: 88px;
  border-radius: var(--r-md);
  margin-bottom: 1rem;
  border: 1px solid var(--c-line);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mat-card__swatch-label {
  position: absolute;
  bottom: 0.4rem;
  right: 0.5rem;
  font-family: var(--f-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(11, 18, 40, 0.65);
  background: rgba(255, 255, 255, 0.82);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}
.mat-card__swatch--bopp-w {
  background: linear-gradient(135deg, #ffffff, #f0f0f0);
}
.mat-card__swatch--bopp-c {
  background: linear-gradient(
    135deg,
    rgba(220, 232, 242, 0.6),
    rgba(180, 200, 220, 0.4)
  );
}
.mat-card__swatch--bopp-m {
  background: linear-gradient(135deg, #f0f0f0 0%, #c0c0c0 50%, #f0f0f0 100%);
}
.mat-card__swatch--pet-w {
  background: linear-gradient(135deg, #f4f5f7, #e0e3e8);
}
.mat-card__swatch--pet-c {
  background: linear-gradient(
    135deg,
    rgba(200, 215, 230, 0.7),
    rgba(160, 180, 200, 0.5)
  );
}
.mat-card__swatch--pet-s {
  background: linear-gradient(135deg, #c8ccd2, #9aa3ad, #c8ccd2);
}
.mat-card__swatch--vinyl-w {
  background: linear-gradient(135deg, #fafafa, #e8e8e8);
}
.mat-card__swatch--vinyl-c {
  background: linear-gradient(
    135deg,
    rgba(210, 225, 238, 0.65),
    rgba(170, 190, 210, 0.45)
  );
}
.mat-card__swatch--paper {
  background: linear-gradient(135deg, #fdfbf4, #f5efde);
}
.mat-card__swatch--kraft {
  background: linear-gradient(135deg, #c9a777, #a07a4d);
}
.mat-card__swatch--estate {
  background: linear-gradient(135deg, #ece3cc, #d9cdb0);
  background-image:
    repeating-linear-gradient(
      135deg,
      rgba(120, 95, 55, 0.08) 0,
      rgba(120, 95, 55, 0.08) 1px,
      transparent 1px,
      transparent 4px
    ),
    linear-gradient(135deg, #ece3cc, #d9cdb0);
}
.mat-card__swatch--estate-9 {
  background: linear-gradient(135deg, #f5efe0, #e8dec6);
  background-image:
    repeating-linear-gradient(
      90deg,
      rgba(150, 130, 90, 0.06) 0,
      rgba(150, 130, 90, 0.06) 1px,
      transparent 1px,
      transparent 3px
    ),
    linear-gradient(135deg, #f5efe0, #e8dec6);
}
.mat-card__swatch--textured-paper {
  background-image:
    repeating-linear-gradient(
      135deg,
      rgba(111, 89, 57, 0.09) 0,
      rgba(111, 89, 57, 0.09) 1px,
      transparent 1px,
      transparent 5px
    ),
    linear-gradient(135deg, #e8ddc6, #cbb99a);
}
.mat-card__swatch--holo {
  background: linear-gradient(
    135deg,
    #ff80b5 0%,
    #ffd166 25%,
    #06d6a0 50%,
    #4cc9f0 75%,
    #9b5de5 100%
  );
}
.mat-card__swatch--thermal {
  background: linear-gradient(135deg, #eef0e8, #dde0d0);
}
.mat-card__swatch--direct {
  background: linear-gradient(135deg, #fffae8, #f0e8c8);
}
.mat-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.mat-card__head h3 {
  margin: 0;
  font-size: 1.1rem;
}
.mat-card__tag {
  flex-shrink: 0;
  font-family: var(--f-display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}
.mat-tag--film {
  background: rgba(0, 51, 160, 0.1);
  color: var(--c-primary);
}
.mat-tag--paper {
  background: rgba(181, 146, 101, 0.16);
  color: #8b6b40;
}
.mat-tag--specialty {
  background: linear-gradient(
    135deg,
    rgba(155, 93, 229, 0.15),
    rgba(76, 201, 240, 0.15)
  );
  color: #7b3ff2;
}
.mat-card__desc {
  font-size: 0.9rem;
  color: var(--c-muted);
  margin-bottom: 0.85rem;
  flex: 1;
}
.mat-card__specs {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.mat-card__specs li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--c-ink-soft);
}
.mat-card__specs li svg {
  width: 14px;
  height: 14px;
  color: var(--c-gold-dark);
  flex-shrink: 0;
}
.mat-card__specs li strong {
  color: var(--c-ink);
  font-weight: 600;
}
.mat-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.mat-pill {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--c-bg-alt);
  color: var(--c-muted);
  border: 1px solid var(--c-line-soft);
}
.mat-pill--good {
  background: rgba(6, 150, 95, 0.1);
  color: #047857;
  border-color: transparent;
}
.mat-pill--premium {
  background: rgba(201, 169, 97, 0.18);
  color: var(--c-gold-dark);
  border-color: transparent;
}
.mat-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--c-primary);
  text-decoration: none;
  margin-top: auto;
}
.mat-card__cta:hover {
  color: var(--c-primary-dark);
  gap: 0.55rem;
}
.mat-card__cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}
.mat-card__cta:hover svg {
  transform: translateX(2px);
}

/* Matrix */
.matrix-wrap {
  overflow-x: auto;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-soft);
  border: 1px solid var(--c-line);
}
.la-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 0.9rem;
  min-width: 760px;
}
.la-table th,
.la-table td {
  padding: 0.95rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--c-line);
}
.la-table thead th {
  background: var(--c-bg-alt);
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--c-ink);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.la-table tbody tr:hover {
  background: var(--c-bg-alt);
}
.la-table td.col-accent {
  color: var(--c-primary);
  font-weight: 600;
}
.la-table .col-name {
  font-weight: 700;
  color: var(--c-ink);
}
.la-table .col-swatch {
  width: 48px;
  padding-right: 0;
}
.swatch-dot {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid var(--c-line);
  vertical-align: middle;
}

.rating {
  display: inline-flex;
  gap: 0.2rem;
  align-items: center;
}
.rating span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e4e9f2;
}
.rating--5 span {
  background: #047857;
}
.rating--4 span:nth-child(-n + 4) {
  background: #16a34a;
}
.rating--4 span:nth-child(5) {
  background: #e4e9f2;
}
.rating--3 span:nth-child(-n + 3) {
  background: #eab308;
}
.rating--3 span:nth-child(n + 4) {
  background: #e4e9f2;
}
.rating--2 span:nth-child(-n + 2) {
  background: #ea580c;
}
.rating--2 span:nth-child(n + 3) {
  background: #e4e9f2;
}
.rating--1 span:nth-child(1) {
  background: #dc2626;
}
.rating--1 span:nth-child(n + 2) {
  background: #e4e9f2;
}

/* Decision table */
.decision-wrap {
  background: #fff;
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-soft);
}
.decision-search {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--c-line);
  background: var(--c-bg-alt);
}
.decision-search svg {
  width: 18px;
  height: 18px;
  color: var(--c-muted);
  flex-shrink: 0;
}
.decision-search input {
  flex: 1;
  border: 0;
  background: transparent;
  font-family: var(--f-sans);
  font-size: 0.95rem;
  color: var(--c-ink);
  outline: none;
}
.decision-search input::placeholder {
  color: var(--c-muted);
}
.decision-search kbd {
  font-family: var(--f-display);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 4px;
  color: var(--c-muted);
}
.decision-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.decision-table th,
.decision-table td {
  padding: 0.95rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--c-line);
}
.decision-table thead th {
  background: var(--c-bg-alt);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-ink);
}
.decision-table tbody tr:last-child td {
  border-bottom: 0;
}
.decision-table tbody tr:hover {
  background: var(--c-bg-alt);
}
.decision-table td.col-accent {
  color: var(--c-primary);
  font-weight: 600;
}
.decision-table .no-results {
  padding: 2rem;
  text-align: center;
  color: var(--c-muted);
  font-style: italic;
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  counter-reset: step;
}
.process-card {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.25rem 1.25rem;
}
.process-card::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  font-family: var(--f-display);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--c-gold);
  letter-spacing: 0.06em;
}
.process-card__icon {
  width: 42px;
  height: 42px;
  background: rgba(0, 51, 160, 0.08);
  color: var(--c-primary);
  border-radius: var(--r-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
}
.process-card__icon svg {
  width: 22px;
  height: 22px;
}
.process-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}
.process-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--c-muted);
  line-height: 1.55;
}

/* Sample banner */
.sample-banner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, #0033a0, #3358b8);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.sample-banner::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.3), transparent 70%);
  pointer-events: none;
}
.sample-banner h2 {
  color: #fff;
  margin-bottom: 0.75rem;
  position: relative;
}
.sample-banner p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.25rem;
  max-width: 520px;
  position: relative;
}
.sample-banner .eyebrow {
  color: var(--c-gold-light);
  position: relative;
}
.sample-banner__price {
  position: relative;
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  backdrop-filter: blur(8px);
}
.sample-banner__price strong {
  display: block;
  font-family: var(--f-display);
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.sample-banner__price span {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.78);
}

/* CTA band */
.cta-band {
  padding: 4rem 0;
  background: linear-gradient(135deg, #0b1228, #1a2848);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(0, 51, 160, 0.4) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(201, 169, 97, 0.2) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.cta-band > .container {
  position: relative;
  z-index: 1;
}
.cta-band h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 0;
}
.cta-band .eyebrow {
  color: var(--c-gold-light);
}
.cta-band .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.cta-band .btn--ghost:hover {
  background: #fff;
  color: var(--c-primary);
  border-color: #fff;
}

/* Footer */
.site-footer {
  background: #070c1f;
  color: rgba(255, 255, 255, 0.7);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.85rem;
}
.footer-brand .mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--c-primary);
  border-radius: 10px;
  font-size: 0.85rem;
}
.site-footer h4 {
  color: #fff;
  font-family: var(--f-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-decoration: none;
}
.site-footer a:hover {
  color: var(--c-gold);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--c-line);
  padding: 0.75rem 1rem;
  z-index: 90;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-cta.is-visible {
  transform: translateY(0);
}
.sticky-cta__inner {
  display: flex;
  gap: 0.6rem;
  max-width: 480px;
  margin: 0 auto;
}
.sticky-cta .btn {
  flex: 1;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) {
  transition-delay: 0.06s;
}
.reveal:nth-child(3) {
  transition-delay: 0.12s;
}
.reveal:nth-child(4) {
  transition-delay: 0.18s;
}
.reveal:nth-child(5) {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sample-banner {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
}
@media (max-width: 720px) {
  .nav__menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--c-line);
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .nav__menu.is-open {
    display: flex;
  }
  .nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--c-ink);
  }
  .nav__toggle svg {
    width: 24px;
    height: 24px;
  }
  .hero {
    padding: 2.5rem 0 2rem;
  }
  .section {
    padding: 3rem 0;
  }
  .section--tight {
    padding: 1.75rem 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
  }
  .stats__num {
    font-size: 1.7rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .sticky-cta {
    display: block;
    padding: 0.65rem 0.75rem;
  }
  body {
    padding-bottom: 70px;
  }
  .mat-grid {
    grid-template-columns: 1fr;
  }
}
