body {
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.05), transparent 28%),
    linear-gradient(180deg, #f7f6f1 0%, #f3f3ef 55%, #efeee8 100%);
  color: #1f2937;
}

/* GLOBAL */
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 800;
  color: #f97316;
  margin-bottom: 1rem;
}

.section-title-main {
  font-size: clamp(2.3rem, 4vw, 4.8rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.section-copy {
  margin-top: 1.05rem;
  color: #5f6978;
  font-size: 1.06rem;
  line-height: 1.85;
}

/* HERO */
.hero-shell {
  position: relative;
  background: #0f172a;
  overflow: visible;
  isolation: isolate;
  padding-bottom: 5.5rem;
}

.hero-shell video {
  filter: none;
}

.hero-container {
  padding-top: 7rem;
  padding-bottom: 6.5rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 10, 18, 0.3) 0%, rgba(6, 10, 18, 0.62) 100%),
    linear-gradient(115deg, rgba(6, 10, 18, 0.45) 0%, rgba(6, 10, 18, 0.2) 46%, rgba(6, 10, 18, 0.62) 100%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.hero-shell::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 220px;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.54), transparent);
  pointer-events: none;
  z-index: 1;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  min-height: 560px;
}

.hero-copy {
  max-width: 860px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #f8fafc;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.hero-pill-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #f97316;
  box-shadow: 0 0 16px rgba(249, 115, 22, 0.82);
}

.hero-heading {
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.07em;
  color: #ffffff;
  max-width: 8ch;
  text-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
}

.hero-text {
  margin-top: 1.7rem;
  max-width: 54rem;
  color: #f97316;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.35;
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.4rem;
}

.hero-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 1rem 1.75rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.02rem;
  backdrop-filter: blur(8px);
  transition: all 0.32s ease;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.hero-outline-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.hero-metrics-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -64px;
  z-index: 30;
}


.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.metric-card {
  position: relative;
  overflow: hidden;
  min-height: 138px;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.95) 0%, rgba(15, 23, 42, 0.92) 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(16px);
  border-radius: 1.55rem;
  padding: 1.35rem 1.35rem 1.2rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
}

.metric-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.2rem;
  right: 1.2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.65), transparent);
}

.metric-number {
  font-size: clamp(2.6rem, 3.2vw, 4rem);
  line-height: 1;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.metric-label {
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.35;
}

/* SECTORS */
.trust-bar-section {
  padding-top: 7rem;
  padding-bottom: 2.4rem;
  background: transparent;
}

.sector-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.sector-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 248, 0.98) 100%);
  border: 1px solid #e7e5df;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  text-decoration: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
}

.sector-card:hover,
.sector-card.is-active {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  border-color: rgba(249, 115, 22, 0.28);
}

.sector-card-image {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: #dfe4ea;
}

.sector-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.5s ease, transform 0.7s ease;
}

.sector-img-primary {
  opacity: 1;
  transform: scale(1);
}

.sector-img-secondary {
  opacity: 0;
  transform: scale(1.08);
}

.sector-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.38), transparent 62%);
  opacity: 0.45;
  transition: opacity 0.35s ease;
  z-index: 1;
}

.sector-card-content {
  padding: 1.15rem 1.2rem 1.2rem;
  position: relative;
}

.sector-card-content h3 {
  color: #14213d;
  font-size: 1.08rem;
  line-height: 1.3;
  font-weight: 800;
  margin: 0;
  transition: color 0.3s ease, transform 0.3s ease;
}

.sector-card-cta {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f97316;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sector-card:hover .sector-img-primary,
.sector-card.is-active .sector-img-primary {
  opacity: 0;
  transform: scale(1.08);
}

.sector-card:hover .sector-img-secondary,
.sector-card.is-active .sector-img-secondary {
  opacity: 1;
  transform: scale(1.02);
}

.sector-card:hover .sector-card-overlay,
.sector-card.is-active .sector-card-overlay {
  opacity: 0.7;
}

.sector-card:hover .sector-card-content h3,
.sector-card.is-active .sector-card-content h3 {
  color: #0f172a;
  transform: translateY(-2px);
}

.sector-card:hover .sector-card-cta,
.sector-card.is-active .sector-card-cta {
  opacity: 1;
  transform: translateY(0);
}

/* VALUE */
.value-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(247, 246, 241, 0.98) 0%, rgba(243, 243, 239, 0.98) 100%);
}

.value-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(247, 246, 241, 0.62), rgba(243, 243, 239, 0.72)),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.32;
  pointer-events: none;
}

.value-section > .container {
  position: relative;
  z-index: 1;
}

.value-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 2.4rem;
  align-items: start;
}

.value-heading {
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.94;
  font-weight: 800;
  color: #0f172a;
  max-width: 11ch;
  letter-spacing: -0.05em;
}

.value-copy {
  margin-top: 1.6rem;
  max-width: 44rem;
  color: #55606f;
  font-size: 1.14rem;
  line-height: 1.9;
  font-weight: 500;
}

.value-bullets {
  display: grid;
  gap: 1rem;
}

.value-bullets div {
  position: relative;
  padding: 0.25rem 0 0.25rem 1.75rem;
  color: #2f3a4a;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.7;
}

.value-bullets div::before {
  content: "";
  position: absolute;
  top: 0.88rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #f97316;
  box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.1);
}

.value-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(231, 229, 223, 0.9);
  border-radius: 1.5rem;
  padding: 1.6rem;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.value-card h3 {
  font-size: 1.18rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.value-card p {
  color: #5d6674;
  line-height: 1.82;
  font-size: 1rem;
}

/* CREDENTIALS */
.credential-card {
  min-height: 190px;
  border-radius: 1.6rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 248, 0.98) 100%);
  border: 1px solid #ecece8;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.7rem;
  transition: all 0.3s ease;
}

.credential-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.08);
}

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

.credential-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: #6b7280;
  font-weight: 600;
}

.bbb-big-logo {
  max-height: 10rem;
  width: auto;
  object-fit: contain;
}

.cwb-logo {
  max-height: 10rem;
  width: auto;
  object-fit: contain;
}

.tech-logo {
  max-height: 10rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}


.credential-brand-light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 248, 0.98) 100%);
  border: 1px solid #ecece8;
}

.credential-brand-box {
  text-align: center;
}

.credential-brand-top {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 800;
}

.worksafe-wordmark {
  color: #0b5f9b;
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0;
}

.worksafe-wordmark .tm {
  font-size: 0.58em;
  vertical-align: super;
  opacity: 0.9;
  margin-left: 0.06rem;
}

/* PARTNERS */
.partner-row-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 0.5rem;
}

.partner-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.partner-row.is-fading-out {
  opacity: 0;
  transform: translateY(10px);
}

.partner-row.is-fading-in {
  opacity: 1;
  transform: translateY(0);
}

.partner-tile {
  min-height: 96px;
  border-radius: 1.35rem;
  background: linear-gradient(180deg, #ffffff 0%, #fafaf8 100%);
  border: 1px solid #e7e5df;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}

.partner-name {
  display: block;
  text-align: center;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 700;
  color: #1f2937;
}

/* EXECUTION */
.execution-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background: #0b1220;
}

.execution-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* filter: none !important; */
  filter: contrast(1.05) brightness(1.02);
}

.execution-content {
  position: relative;
  z-index: 2;
}

.execution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.execution-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 18, 32, 0.18);
  /* background:
    linear-gradient(135deg, rgba(11, 18, 32, 0.48) 0%, rgba(17, 24, 39, 0.18) 100%),
    linear-gradient(120deg, transparent 0%, rgba(249, 115, 22, 0.02) 35%, transparent 70%); */
}

.execution-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 1.65rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.execution-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.075);
}

.execution-card h3 {
  color: #ffffff;
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.9rem;
}

.execution-card p {
  color: #e2e8f0;
  line-height: 1.9;
  font-size: 1rem;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.service-box {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
  text-decoration: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
}

.service-box-image {
  height: 220px;
  overflow: hidden;
}

.service-box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-box:hover .service-box-image img {
  transform: scale(1.06);
}

.service-box-content {
  padding: 1.4rem;
}

.service-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 800;
  color: #f97316;
  margin-bottom: 0.85rem;
}

.service-box-content h3 {
  color: #0f172a;
  font-size: 1.03rem;
  line-height: 1.7;
  font-weight: 700;
}

/* SPACING */
.py-24 {
  padding-top: 6.4rem;
  padding-bottom: 6.4rem;
}

.py-18 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-14 {
  padding-top: 4.2rem;
  padding-bottom: 4.2rem;
}

/* RESPONSIVE */
@media (max-width: 1280px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .execution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-shell {
    padding-bottom: 4.8rem;
  }

  .trust-bar-section {
    padding-top: 6.5rem;
  }

  .metric-number {
    font-size: clamp(2.3rem, 3vw, 3.2rem);
  }

  .metric-label {
    font-size: 0.84rem;
  }
}

@media (max-width: 1024px) {
  .hero-shell {
    padding-bottom: 2rem;
  }

  .hero-container {
    padding-top: 5.8rem;
    padding-bottom: 2.8rem;
  }

  .hero-metrics-wrap {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 1.5rem;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-bar-section {
    padding-top: 2.6rem;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .section-title-main {
    font-size: clamp(2rem, 5vw, 3.8rem);
  }
}

@media (max-width: 768px) {
  .hero-shell {
    min-height: auto;
    padding-bottom: 1.5rem;
    overflow: hidden;
  }

  .hero-container {
    padding-top: 4.8rem;
    padding-bottom: 1.8rem;
  }

  .hero-layout {
    min-height: auto;
    justify-items: start;
  }

  .hero-copy {
    max-width: 100%;
    padding-left: 0.35rem;
    padding-right: 0.35rem;
  }

  .hero-heading {
    font-size: clamp(2.8rem, 12vw, 4rem);
    line-height: 0.98;
    max-width: 100%;
    letter-spacing: -0.06em;
    overflow-wrap: normal;
    word-break: keep-all;
    hyphens: none;
    margin-left: 0;
    margin-bottom: 0.5rem;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.45;
    margin-top: 0.85rem;
    max-width: 100%;
  }

  .hero-pill {
    width: 100%;
    max-width: 100%;
    font-size: 0.68rem;
    line-height: 1.45;
    padding: 0.8rem 1rem;
    letter-spacing: 0.08em;
    white-space: normal;
    border-radius: 999px;
    margin-top: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    margin-top: 1.2rem;
    gap: 0.85rem;
  }

  .hero-outline-btn,
  .btn.btn-lg {
    width: 100%;
    min-height: 56px;
    font-size: 0.98rem;
  }

  .hero-metrics-wrap {
  position: relative;
  bottom: auto;
  left: auto;
  right: auto;
  margin-top: 1.2rem;
  padding: 0 1rem;
  z-index: 10;
}

  .hero-metrics,
  .sector-cards,
  .value-cards,
  .execution-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .partner-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .partner-tile {
    min-height: 84px;
    padding: 0.9rem 1rem;
  }

  .partner-name {
    font-size: 0.92rem;
  }

  .metric-card {
    min-height: auto;
    padding: 0.9rem 0.6rem;
    border-radius: 1.2rem;
    aspect-ratio: 1/ 1;
    overflow: visible;
  }

  .metric-number {
    font-size: clamp(2.2rem, 10vw, 3rem);
    line-height: 1.15;
  }

  .metric-label {
    font-size: 0.82rem;
    line-height: 1.35;
    letter-spacing: 0.08em;
  }

  .sector-card-image {
    height: 220px;
  }

  .value-section {
    overflow: hidden;
  }

  .value-section::before {
    opacity: 0.14;
    background-position: center;
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .value-grid > div:first-child {
    max-width: 22rem;
  }

  .value-heading {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
    line-height: 0.98;
    max-width: 9ch;
    margin-bottom: 1rem;
  }

  .value-copy {
    margin-top: 0;
    font-size: 1.04rem;
    line-height: 1.8;
    max-width: 100%;
  }

  .value-bullets {
    gap: 0.85rem;
    margin-top: 1.5rem;
  }

  .value-bullets div {
    padding: 0 0 0 1.35rem;
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .value-bullets div::before {
    top: 0.7rem;
    width: 7px;
    height: 7px;
    box-shadow: 0 0 0 5px rgba(249, 115, 22, 0.1);
  }

  .value-card {
    padding: 1.25rem;
    border-radius: 1.2rem;
  }

  .value-card h3 {
    font-size: 1.02rem;
    line-height: 1.35;
    margin-bottom: 0.55rem;
  }

  .value-card p {
    font-size: 0.95rem;
    line-height: 1.65;
  }
}

@media (max-width: 560px) {
  .hero-container,
  .hero-metrics-wrap .container,
  .trust-bar-section .container,
  .value-section .container,
  .execution-content.container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-copy {
    max-width: 100%;
    padding-left: 0.15rem;
    padding-right: 0.15rem;
  }

  .hero-heading {
    font-size: clamp(2.5rem, 13vw, 3.4rem);
    max-width: 7.5ch;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-pill {
    width: 100%;
    justify-content: flex-start;
    font-size: 0.62rem;
    padding: 0.75rem 0.9rem;
  }

  .partner-row {
    grid-template-columns: 1fr;
  }

  .metric-number {
    font-size: clamp(1.6rem, 6.5vw, 2.2rem);
  }

  .metric-label {
    font-size: 0.6rem;
  }
  .hero-metrics-wrap {
    transform: translateX(-40px); /* move left slightly */
  }

  .value-grid > div:first-child {
    max-width: 100%;
  }

  .value-heading {
    font-size: clamp(2rem, 10.8vw, 2.9rem);
    max-width: 8.5ch;
  }

  .value-copy {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .value-bullets div {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .value-card {
    padding: 1.1rem;
  }

  .value-card h3 {
    font-size: 0.98rem;
  }

  .value-card p {
    font-size: 0.92rem;
  }
}
