.page-hero { padding: 160px 5% 80px; position: relative; overflow: hidden; }
.page-hero-glow {
  position: absolute; width: 800px; height: 800px;
  top: -200px; right: -150px;
  background: radial-gradient(circle, rgba(217,119,6,.07) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--ff-head); font-size: clamp(2.4rem,4.5vw,4rem);
  font-weight: 700; line-height: 1.08; letter-spacing: -.4px;
  animation: fade-in .7s ease both;
}
.page-hero h1 em { font-style: italic; color: var(--azure); }
.page-hero p {
  margin-top: 1.4rem; font-size: 1.05rem;
  color: var(--off); line-height: 1.85; max-width: 620px;
  animation: fade-in .7s .1s ease both;
}
@keyframes fade-in { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:none; } }

/* CASE LIST */
.cases-section { background: var(--ink2); }
.cases-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem; margin-top: 2.5rem;
}
@media (max-width: 900px) { .cases-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .cases-grid { grid-template-columns: 1fr; } }

.case-card {
  background: var(--ink3); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 1.8rem;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  text-decoration: none; color: inherit;
}
.case-card:hover { border-color: rgba(14,165,233,.3); transform: translateY(-4px); box-shadow: var(--glow); }
.case-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--azure), var(--teal));
}
.case-type {
  font-family: var(--ff-mono); font-size: .68rem;
  letter-spacing: 1px; color: var(--azure);
  background: rgba(14,165,233,.08); border: 1px solid var(--border);
  border-radius: 4px; padding: .18rem .55rem;
  display: inline-block; margin-bottom: .9rem; width: fit-content;
}
.case-card h3 {
  font-family: var(--ff-head); font-size: 1.15rem;
  font-weight: 700; line-height: 1.3; margin-bottom: .8rem; flex: 1;
}
.case-metrics {
  display: flex; gap: .8rem; flex-wrap: wrap;
  margin: .8rem 0; padding: .8rem;
  background: rgba(14,165,233,.04);
  border: 1px solid var(--border2); border-radius: 8px;
}
.cm { text-align: center; flex: 1; min-width: 50px; }
.cm-val {
  font-family: var(--ff-head); font-size: 1.5rem;
  font-weight: 700; color: var(--azure); line-height: 1;
}
.cm-label { font-size: .67rem; color: var(--muted); letter-spacing: .3px; margin-top: .1rem; }
.case-industry {
  font-size: .8rem; color: var(--muted); margin-top: .6rem;
}
.case-card .case-quote {
  margin-top: .9rem; padding: .8rem 1rem;
  background: rgba(217,119,6,.06); border-left: 2px solid var(--gold2);
  border-radius: 0 6px 6px 0; font-size: .81rem;
  color: var(--off); font-style: italic; line-height: 1.6;
}

/* FEATURED CASE DETAIL */
.featured-case { background: var(--ink3); }
.fc-inner {
  background: var(--ink2); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 3rem; margin-top: 2rem;
}
.fc-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: start; margin-bottom: 2.5rem;
}
@media (max-width: 740px) { .fc-header { grid-template-columns: 1fr; } }
.fc-metrics {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: .8rem;
}
.fc-metric {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 10px; padding: 1rem 1.2rem;
}
.fc-metric-val {
  font-family: var(--ff-head); font-size: 2rem;
  font-weight: 700; color: var(--azure); line-height: 1;
}
.fc-metric-label { font-size: .74rem; color: var(--muted); margin-top: .15rem; }

.psdm-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 1.2rem; margin-top: 1.5rem;
}
@media (max-width: 640px) { .psdm-grid { grid-template-columns: 1fr; } }
.psdm-block {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 1.4rem;
}
.psdm-block h4 {
  font-family: var(--ff-mono); font-size: .68rem;
  letter-spacing: 1.5px; color: var(--azure);
  text-transform: uppercase; margin-bottom: .7rem;
}
.psdm-block p { font-size: .88rem; color: var(--muted); line-height: 1.7; }

/* COMING SOON BANNER */
.coming-soon {
  background: rgba(14,165,233,.05);
  border: 1px dashed rgba(14,165,233,.2);
  border-radius: var(--r2); padding: 2.5rem;
  text-align: center; margin-top: 2.5rem;
}
.coming-soon h3 {
  font-family: var(--ff-head); font-size: 1.5rem; font-weight: 700; margin-bottom: .6rem;
}
.coming-soon p { font-size: .9rem; color: var(--muted); line-height: 1.7; }
