/* ============================================================================
   Valmont Web — Standalone Price Guide (/pricing)
   Brand: navy / orange / gold, white cards, rounded. Builds on shared.css.
   ========================================================================== */

.pg-hero {
  background: linear-gradient(168deg, #0e1d3d 0%, #13264d 60%, #1a3160 100%);
  color: #fff;
  padding: 58px 0 52px;
  text-align: center;
}
.pg-hero .kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange-2);
  background: rgba(245, 140, 20, .14);
  border: 1px solid rgba(245, 140, 20, .35);
  padding: 7px 16px;
  border-radius: 100px;
}
.pg-hero h1 {
  margin-top: 18px;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.12;
}
.pg-hero p.lead {
  margin: 16px auto 0;
  max-width: 640px;
  color: #c4cfe6;
  font-size: 16px;
  line-height: 1.7;
}
.pg-hero .pg-terms {
  margin: 22px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
}
.pg-hero .pg-terms span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 100px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 700;
  color: #e8edf7;
}
.pg-hero .pg-terms svg { width: 15px; height: 15px; color: var(--orange-2); flex: 0 0 auto; }

.pg-wrap { max-width: 980px; margin: 0 auto; padding: 0 24px; }

.pg-sec { margin: 46px 0; }
.pg-sec-head { text-align: center; margin-bottom: 22px; }
.pg-sec-head .sec-kicker {
  font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange);
}
.pg-sec-head h2 {
  margin-top: 8px;
  font-size: clamp(22px, 3.4vw, 30px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--navy);
}
.pg-sec-head p { margin: 10px auto 0; max-width: 620px; color: var(--body); font-size: 15px; line-height: 1.7; }

.pg-table {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(14, 29, 61, .07);
}
.pg-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  border-top: 1px solid var(--line);
}
.pg-row:first-child { border-top: 0; }
.pg-row.head {
  background: var(--navy);
  color: #fff;
  border-top: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 14px 22px;
}
.pg-row:not(.head):nth-child(even) { background: #fafbfe; }
.pg-name { font-weight: 700; color: var(--ink); font-size: 15.5px; }
.pg-name small { display: block; font-weight: 500; color: var(--muted); font-size: 12.5px; margin-top: 2px; line-height: 1.5; }
.pg-price {
  font-weight: 800;
  color: var(--navy);
  font-size: 15.5px;
  white-space: nowrap;
  text-align: right;
}
.pg-price small { display: block; font-weight: 600; color: var(--muted); font-size: 11.5px; margin-top: 1px; }
.pg-quote {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 12.5px;
  color: var(--navy);
  border: 1.5px solid var(--line);
  border-radius: 100px;
  padding: 8px 14px;
  white-space: nowrap;
  transition: background .18s, color .18s, border-color .18s, transform .15s;
}
.pg-quote svg { width: 14px; height: 14px; }
.pg-quote:hover { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-1px); }

.pg-note {
  margin-top: 18px;
  background: #fff4e5;
  border: 1px solid #ffd29a;
  border-radius: 16px;
  padding: 16px 20px;
  font-size: 13.5px;
  color: #6b4400;
  line-height: 1.7;
}
.pg-note b { color: #7a4a00; }

.pg-cta {
  margin: 40px 0 56px;
  background: linear-gradient(168deg, #0e1d3d, #1a3160);
  border-radius: 24px;
  padding: clamp(30px, 5vw, 46px);
  text-align: center;
  color: #fff;
  box-shadow: 0 24px 60px rgba(14, 29, 61, .22);
}
.pg-cta h2 { font-size: clamp(22px, 3.4vw, 30px); font-weight: 800; letter-spacing: -.02em; }
.pg-cta p { margin: 12px auto 0; max-width: 560px; color: #c4cfe6; font-size: 15px; line-height: 1.7; }
.pg-cta .btns { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.pg-cta .btn-ghost { border-color: rgba(255,255,255,.4); color:#fff; }

@media (max-width: 640px) {
  .pg-row { grid-template-columns: 1fr auto; gap: 8px 14px; padding: 14px 16px; }
  .pg-row.head { display: none; }
  .pg-quote { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
  .pg-price { grid-column: 1; text-align: left; }
  .pg-name small { font-size: 12px; }
}

/* Price-list rows now link to the landing page that answers them, so the
   highest-authority page on the site passes equity into the whole set.
   Added by scripts/build-seo-pages.mjs (relinkPricing). */
.pg-namelink { color: var(--ink); text-decoration: none; }
.pg-namelink:hover { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }
