/* =========================================================
   Industry specialization pages — Oil & Gas, Utilities
   Extends site.css. Adds the value-chain coverage strip,
   the quadrant "solution map", module rows and config table.
   ========================================================= */

/* ---- value-chain coverage cards ---- */
.vc-card { display: flex; flex-direction: column; height: 100%; }
.vc-head { display: flex; align-items: flex-start; gap: 14px; }
.vc-ico {
  width: 50px; height: 50px; border-radius: 13px; flex: none;
  background: var(--navy-050); color: var(--navy-700);
  display: grid; place-items: center; border: 1px solid var(--navy-100);
}
.vc-ico svg { width: 25px; height: 25px; }
.vc-head .vc-stage { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold-700); }
.vc-head h3 { font-size: 22px; margin-top: 3px; }
.vc-card > p.vc-lead { color: var(--ink-500); font-size: 15px; line-height: 1.6; margin-top: 16px; }

/* module rows (code chip + gloss) */
.modlist { margin-top: 8px; }
.modline { display: grid; grid-template-columns: auto 1fr; gap: 13px; align-items: start; padding: 14px 0; border-top: 1px solid var(--border); }
.modline:first-child { border-top: 0; }
.mod-code {
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 600; letter-spacing: 0.01em;
  color: var(--navy-700); background: var(--navy-050); border: 1px solid var(--navy-100);
  border-radius: 7px; padding: 5px 9px; white-space: nowrap; line-height: 1; margin-top: 1px;
}
.mod-txt strong { display: block; font-size: 15px; color: var(--ink-900); font-weight: 700; }
.mod-txt span { display: block; color: var(--ink-500); font-size: 13.5px; line-height: 1.55; margin-top: 3px; }

/* ---- quadrant solution map ---- */
.specmap { position: relative; max-width: 980px; margin: 44px auto 0; }
.quadmap { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
/* On wider viewports, open the cross gap so the 158px hub nests in the
   intersection instead of covering the top quads' chip rows. */
@media (min-width: 861px) { .quadmap { gap: 168px; } }
.quad {
  background: var(--white); border: 1px solid var(--border); border-radius: 18px;
  padding: 26px; box-shadow: var(--shadow-sm); min-height: 188px;
}
.quad .q-ico {
  width: 44px; height: 44px; border-radius: 11px;
  background: var(--navy-050); color: var(--navy-700);
  display: grid; place-items: center; border: 1px solid var(--navy-100); margin-bottom: 14px;
}
.quad .q-ico svg { width: 22px; height: 22px; }
.quad h4 { font-size: 18px; }
.quad .q-mods { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.quad .q-mods span {
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 500;
  color: var(--ink-700); background: var(--ink-050); border: 1px solid var(--border);
  border-radius: 6px; padding: 4px 8px; line-height: 1.1;
}
.quad.q-tl { text-align: right; }
.quad.q-tl .q-ico { margin-left: auto; }
.quad.q-tl .q-mods { justify-content: flex-end; }
.quad.q-tr { text-align: left; }
.quad.q-bl { text-align: right; }
.quad.q-bl .q-ico { margin-left: auto; }
.quad.q-bl .q-mods { justify-content: flex-end; }

.hub {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 158px; height: 158px; border-radius: 50%; z-index: 3;
  background: radial-gradient(120px 90px at 35% 25%, rgba(212,162,76,0.30), transparent 70%),
              linear-gradient(140deg, var(--navy-900), var(--navy-600));
  border: 7px solid var(--white); box-shadow: var(--shadow-lg);
  display: grid; place-items: center; text-align: center; padding: 20px;
}
.hub .hub-k { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold-200); }
.hub .hub-t { font-family: var(--font-display); font-weight: 800; font-size: 15px; line-height: 1.16; color: #fff; margin-top: 6px; letter-spacing: -0.01em; }

@media (max-width: 860px) {
  .hub { display: none; }
  .quad, .quad.q-tl, .quad.q-tr, .quad.q-bl { text-align: left; min-height: 0; }
  .quad.q-tl .q-ico, .quad.q-bl .q-ico { margin-left: 0; }
  .quad.q-tl .q-mods, .quad.q-bl .q-mods { justify-content: flex-start; }
}
@media (max-width: 560px) {
  .quadmap { grid-template-columns: 1fr; }
}

/* ---- signature-config callout list ---- */
.sig-row {
  display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start;
  padding: 26px 0; border-top: 1px solid var(--border);
}
.sig-row:last-child { border-bottom: 1px solid var(--border); }
.sig-tag {
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  color: #fff; background: var(--navy-700); border-radius: 9px;
  padding: 9px 12px; white-space: nowrap; align-self: start; min-width: 92px; text-align: center;
}
.sig-row h3 { font-size: 19px; }
.sig-row p { margin-top: 7px; color: var(--ink-500); font-size: 15.5px; line-height: 1.6; max-width: 70ch; }
.sig-row.is-star .sig-tag { background: var(--gold-500); color: var(--ink-900); }

/* =========================================================
   Conversion blocks — fixed-fee offer, Tier-1 wedge, bio
   ========================================================= */

/* ---- fixed-fee assessment offer ---- */
.offer {
  position: relative; background: var(--white);
  border: 1px solid var(--border); border-radius: 22px;
  box-shadow: var(--shadow-md); overflow: hidden;
}
.offer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--gold-700), var(--gold-500) 55%, var(--gold-200));
}
.offer-head {
  padding: 40px 40px 30px;
  display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: end;
}
.offer-head h3 { font-size: 28px; letter-spacing: -0.02em; margin-top: 14px; max-width: 22ch; }
.offer-head p { margin-top: 12px; color: var(--ink-500); font-size: 16px; line-height: 1.6; max-width: 58ch; }
.offer-badge {
  flex: none; text-align: center; border: 1px solid var(--border);
  border-radius: 16px; padding: 18px 24px; background: var(--navy-050);
}
.offer-badge .ob-k { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--navy-600); }
.offer-badge .ob-v { font-family: var(--font-display); font-weight: 800; font-size: 26px; color: var(--navy-900); letter-spacing: -0.02em; margin-top: 4px; line-height: 1; }
.offer-badge .ob-s { font-size: 12px; color: var(--ink-500); margin-top: 6px; }

.offer-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--border); }
.offer-col { padding: 30px 40px; }
.offer-col + .offer-col { border-left: 1px solid var(--border); }
.offer-col .oc-k { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold-700); display: inline-flex; align-items: center; gap: 8px; }
.offer-col .oc-k svg { width: 16px; height: 16px; }
.offer-col h4 { font-size: 18px; margin-top: 11px; }
.offer-col ul { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 11px; }
.offer-col li { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; font-size: 14.5px; color: var(--ink-500); line-height: 1.5; }
.offer-col li .oc-tick { width: 18px; height: 18px; border-radius: 6px; flex: none; margin-top: 1px; background: var(--navy-050); color: var(--navy-700); display: grid; place-items: center; border: 1px solid var(--navy-100); }
.offer-col li .oc-tick svg { width: 11px; height: 11px; }
.offer-col li strong { color: var(--ink-900); font-weight: 600; }
.offer-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap;
  padding: 26px 40px; background: var(--ink-050); border-top: 1px solid var(--border);
}
.offer-foot p { font-size: 14.5px; color: var(--ink-500); max-width: 56ch; }
.offer-foot p strong { color: var(--ink-900); }

@media (max-width: 820px) {
  .offer-head { grid-template-columns: 1fr; align-items: start; gap: 20px; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-col { padding: 26px 28px; }
  .offer-col + .offer-col { border-left: 0; border-top: 1px solid var(--border); }
  .offer-head, .offer-foot { padding-left: 28px; padding-right: 28px; }
}

/* ---- Tier-1 comparison wedge ---- */
.compare {
  border: 1px solid var(--border); border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-md); background: var(--white);
}
.compare-row { display: grid; grid-template-columns: 0.85fr 1fr 1fr; }
.compare-row + .compare-row { border-top: 1px solid var(--border); }
.compare-cell { padding: 22px 26px; }
.compare-cell.theme {
  background: var(--ink-050); font-family: var(--font-display); font-weight: 700;
  color: var(--ink-900); font-size: 15.5px; display: flex; align-items: center;
}
.compare-cell.us { background: var(--navy-050); }
.compare-cell .cline { display: grid; grid-template-columns: auto 1fr; gap: 11px; align-items: start; }
.compare-cell .cmark { width: 20px; height: 20px; border-radius: 50%; flex: none; display: grid; place-items: center; margin-top: 1px; }
.compare-cell .cmark svg { width: 12px; height: 12px; }
.compare-cell.them .cmark { background: var(--ink-100); color: var(--ink-400); }
.compare-cell.us .cmark { background: var(--gold-500); color: var(--ink-900); }
.compare-cell.them .ctxt { color: var(--ink-500); font-size: 15px; line-height: 1.5; }
.compare-cell.us .ctxt { color: var(--ink-800); font-size: 15px; line-height: 1.5; }
.compare-cell.us .ctxt strong { color: var(--ink-900); font-weight: 700; }
.compare-head .compare-cell { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; padding-top: 20px; padding-bottom: 20px; }
.compare-head .theme { background: var(--white); }
.compare-head .them { color: var(--ink-400); }
.compare-head .us { color: var(--navy-700); display: flex; align-items: center; gap: 8px; }

@media (max-width: 760px) {
  .compare-row { grid-template-columns: 1fr; }
  .compare-head { display: none; }
  .compare-row + .compare-row { border-top: 4px solid var(--ink-050); }
  .compare-cell.theme { background: var(--navy-700); color: #fff; padding: 14px 22px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; }
  .compare-cell.them, .compare-cell.us { position: relative; padding-top: 36px; }
  .compare-cell.them::before, .compare-cell.us::before {
    position: absolute; top: 14px; left: 22px;
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  }
  .compare-cell.them::before { content: "Typical Tier-1 SI"; color: var(--ink-400); }
  .compare-cell.us::before { content: "Excel Connect"; color: var(--navy-700); }
}

/* ---- practice-head bio + pledge ---- */
.bio-card { display: flex; gap: 26px; align-items: center; }
.bio-photo { width: 136px; height: 136px; flex: none; border-radius: 18px; }
.bio-photo .ph-mono span { font-size: 30px; }
.bio-card .bio-role { color: var(--gold-700); }
.bio-card h3 { font-size: 24px; margin-top: 8px; }
.bio-card p { color: var(--ink-500); font-size: 15px; line-height: 1.6; margin-top: 12px; }
.bio-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }

.pledge {
  background:
    radial-gradient(420px 240px at 12% 110%, rgba(212,162,76,0.18), transparent 62%),
    linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: #fff; border-radius: 20px; padding: 36px; box-shadow: var(--shadow-md); height: 100%;
}
.pledge .pledge-ic { width: 50px; height: 50px; border-radius: 13px; background: var(--gold-500); color: var(--ink-900); display: grid; place-items: center; }
.pledge .pledge-ic svg { width: 25px; height: 25px; }
.pledge h3 { color: #fff; font-size: 23px; margin-top: 18px; letter-spacing: -0.01em; }
.pledge p { color: rgba(255,255,255,0.8); margin-top: 13px; font-size: 15.5px; line-height: 1.62; }

@media (max-width: 560px) {
  .bio-card { flex-direction: column; align-items: flex-start; gap: 18px; }
}
