/* Why Now Page Styles */
.pg-hero {
  padding: 8rem 0 5rem;
  background: var(--n950);
  text-align: center;
}
.pg-hero__inner {
  margin: 0 auto;
}
.pg-hero__h {
  font-family: var(--fd);
  font-size: clamp(2.4rem, 4.8vw, 3.9rem);
  font-weight: 800;
  color: var(--wh);
  line-height: 1.1;
  letter-spacing: -0.035em; word-spacing: 0.15em;
  margin-bottom: 1.5rem;
}
.pg-hero__sub {
  font-family: var(--fb);
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.62);
  margin: 0 auto;
}
.title-accent {
  font-style: italic;
  background: linear-gradient(135deg, var(--t300) 0%, var(--t400) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Forces */
.wn-forces {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.wn-force {
  background: var(--wh);
  border: 1px solid var(--g200);
  border-radius: var(--rmd);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform var(--spring), box-shadow var(--ease), border-color var(--ease);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.wn-force:hover {
  transform: translateY(-6px);
  border-color: var(--t200);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(29, 158, 117, 0.05);
}
.wn-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-bottom: 1px solid var(--g200);
}
.wn-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.wn-force:hover .wn-img img {
  transform: scale(1.05);
}
.wn-content {
  padding: 2.5rem;
  flex: 1;
  position: relative;
}
.wn-num {
  position: absolute;
  top: 15px;
  right: 25px;
  font-family: var(--fd);
  font-size: 7rem;
  font-weight: 800;
  color: rgba(29, 158, 117, 0.12);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}
.wn-h {
  font-family: var(--fd);
  font-size: 1.5rem;
  color: var(--n900);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.wn-p {
  font-size: 1.05rem;
  color: var(--g600);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .wn-forces { grid-template-columns: 1fr; }
}

/* Barriers styles (reused) */
.bg-n900 {
  background: var(--n900);
  background-image: radial-gradient(circle, rgba(29,158,117,0.03) 1px, transparent 1px);
  background-size: 36px 36px;
}
.sec-hd {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.75rem;
}
.bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.bar-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--rxl);
  padding: 2rem 1.75rem;
  transition: background var(--ease), border-color var(--ease), transform var(--spring);
}
.bar-card:hover {
  background: rgba(29,158,117,.07);
  border-color: rgba(29,158,117,.32);
  transform: translateY(-4px);
}
.bar-ico {
  width: 48px;
  height: 48px;
  background: rgba(29,158,117,.1);
  border: 1px solid rgba(29,158,117,.18);
  border-radius: var(--rlg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.bar-ico svg {
  width: 24px;
  height: 24px;
}
.bar-ttl {
  font-family: var(--fd);
  font-size: 1rem;
  font-weight: 700;
  color: var(--wh);
  margin-bottom: .75rem;
  letter-spacing: -.015em;
}
.bar-bod {
  font-family: var(--fb);
  font-size: .875rem;
  color: rgba(255,255,255,.48);
  line-height: 1.7;
  font-weight: 400;
}

@media (max-width: 1100px) {
  .bar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .bar-grid {
    grid-template-columns: 1fr;
  }
}
