/* ============================================================
   IMTSUS Inner Pages — Shared Production Styles
   Used by all pages except homepage (home.css)
   ============================================================ */

/* ── Page hero ── */
.page-hero {
  min-height:auto !important;
  padding:clamp(4rem,8vw,6.5rem) 0 clamp(3rem,6vw,4.5rem) !important;
  background:var(--navy) !important;
}
.page-hero::before, .ms-hero::before {
  content:''; position:absolute; inset:0; pointer-events:none; z-index:0;
  background-image:linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);
  background-size:72px 72px;
  -webkit-mask-image:radial-gradient(ellipse 95% 95% at 60% 0%, black 25%, transparent 78%);
  mask-image:radial-gradient(ellipse 95% 95% at 60% 0%, black 25%, transparent 78%);
}
.page-hero::after, .ms-hero::after {
  content:''; position:absolute; inset:0; pointer-events:none; z-index:0;
  background:
    radial-gradient(ellipse 45% 60% at 85% 15%, rgba(95,127,217,.14), transparent 65%),
    radial-gradient(ellipse 35% 50% at 8% 90%, rgba(217,122,31,.08), transparent 60%);
  animation:phGlow 9s ease-in-out infinite alternate;
}
@keyframes phGlow { from { opacity:.65; transform:scale(1); } to { opacity:1; transform:scale(1.05); } }
@keyframes phRise { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:none; } }
.page-hero .ph-label, .ms-hero .ph-label { animation:phRise .8s var(--ease) both; }
.page-hero .ph-title, .ms-hero .ph-title { animation:phRise .9s var(--ease) .08s both; }
.page-hero .ph-sub, .ms-hero .ph-sub { animation:phRise .9s var(--ease) .2s both; }
.page-hero .ph-actions, .ms-hero .ph-actions { animation:phRise .9s var(--ease) .32s both; }
@media (prefers-reduced-motion: reduce) {
  .page-hero::after, .ms-hero::after { animation:none; }
  .page-hero .ph-label, .page-hero .ph-title, .page-hero .ph-sub, .page-hero .ph-actions,
  .ms-hero .ph-label, .ms-hero .ph-sub, .ms-hero .ph-title, .ms-hero .ph-actions { animation:none; }
}
/* Hero content always visible — no flash before reveal JS */
.page-hero .reveal,
.page-hero .reveal-left,
.page-hero .reveal-right,
.page-hero .reveal-scale,
.page-hero--sub .reveal,
.page-hero--sub .reveal-left,
.page-hero--sub .reveal-right,
.ms-hero .reveal,
.ms-hero .reveal-left,
.ms-hero .reveal-right {
  opacity:1; transform:none;
}
.page-hero--center { text-align:center; }
.page-hero--center > .w { max-width:700px; margin:0 auto; position:relative; z-index:2; }
.page-hero--contact { padding:4.5rem 0 3.5rem !important; }
.page-hero--contact > .w { text-align:center; position:relative; z-index:2; }
.ph-grid--wide { grid-template-columns:1.1fr .9fr; align-items:start; }
.ph-sub--wide { max-width:44ch; }
.ph-sub--center { max-width:50ch; margin-left:auto; margin-right:auto; }
.page-hero .ph-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:clamp(2rem,4vw,3rem); align-items:center;
  position:relative; z-index:2;
}
@media(max-width:820px){ .page-hero .ph-grid{ grid-template-columns:1fr; } }

.ph-title {
  font-family:var(--font-display);
  font-size:clamp(2.3rem,4.4vw,4rem);
  font-weight:540; color:#fff; line-height:1.05;
  letter-spacing:-.015em; margin-bottom:1rem;
  font-variation-settings:'opsz' 96;
}
.ph-title--lg {
  font-size:clamp(2rem,3.5vw,3.2rem); line-height:1.06;
}
.ph-sub {
  font-size:.98rem; color:rgba(255,255,255,.78);
  line-height:1.7; max-width:42ch; margin-bottom:2rem;
}
.ph-actions { display:flex; gap:.65rem; flex-wrap:wrap; }
.ph-label {
  font-family:var(--font-mono); font-size:.62rem; font-weight:500; letter-spacing:.22em;
  text-transform:uppercase; color:rgba(255,255,255,.38); margin-bottom:.9rem;
}

/* Hero service link cards (O&G pages) */
.hero-svc-cards { display:flex; flex-direction:column; gap:.65rem; }
.hero-svc-card {
  background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1);
  border-radius:var(--r); padding:1.1rem 1.4rem;
  display:flex; align-items:center; gap:1.1rem; text-decoration:none;
  transition:background .25s, border-color .25s, transform .25s var(--ease);
}
.hero-svc-card:hover {
  background:rgba(234,88,12,.12); border-color:rgba(234,88,12,.35);
  transform:translateX(4px);
}
.hero-svc-card--blue:hover { background:rgba(30,58,159,.12); border-color:rgba(30,58,159,.35); }
.hero-svc-card--teal:hover { background:rgba(5,150,105,.12); border-color:rgba(5,150,105,.35); }
.hero-svc-abbr {
  font-family:var(--font-display); font-size:1.5rem; font-weight:600;
  min-width:3.2rem; letter-spacing:-.01em;
}
.hero-svc-abbr.amber { color:#fdba74; }
.hero-svc-abbr.blue { color:#a9bcf0; }
.hero-svc-abbr.teal { color:#86efac; }
.hero-svc-divider { width:2px; height:40px; background:rgba(255,255,255,.1); border-radius:2px; flex-shrink:0; }
.hero-svc-card h4 { font-size:.88rem; font-weight:600; color:#fff; margin-bottom:.15rem; }
.hero-svc-card p { font-size:.75rem; color:rgba(255,255,255,.65); line-height:1.4; margin:0; }

/* ── Page stats band ── */
.page-stats {
  display:grid; grid-template-columns:repeat(4,1fr);
  background:#fff; border-top:1px solid var(--border); border-bottom:1px solid var(--border);
  box-shadow:var(--shadow-sm);
}
@media(max-width:700px){ .page-stats{ grid-template-columns:repeat(2,1fr); } }
.page-stat {
  padding:1.5rem 1rem; text-align:center;
  border-right:1px solid var(--border);
  transition:background .2s;
}
.page-stat:hover { background:var(--off); }
.page-stat:last-child { border-right:none; }
.page-stat-num {
  font-family:var(--font-display); font-size:2rem; font-weight:600;
  letter-spacing:-.02em; line-height:1; margin-bottom:.3rem; color:var(--ink);
}
.page-stat-num.accent { color:var(--blue); }
.page-stat-num.amber { color:var(--amber); }
.page-stat-num.teal { color:var(--teal); }
.page-stat-num.green { color:#059669; }

/* Dark in-page sections (feature grids, process bands) */
.section-dark {
  background:var(--navy); padding:4rem 0;
  position:relative; overflow:hidden;
  border-top:1px solid rgba(255,255,255,.06);
}
.section-dark--sm { padding:3.5rem 0 !important; }
.section-dark > .w { position:relative; z-index:2; }

/* Oil & Gas segment cards (overview page) */
.og-seg-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; }
@media(max-width:820px){ .og-seg-grid{ grid-template-columns:1fr; } }
.og-seg {
  border-radius:18px; padding:2rem; position:relative; overflow:hidden;
  transition:transform .28s var(--ease),box-shadow .28s;
  text-decoration:none; display:block;
}
.og-seg:hover { transform:translateY(-5px); box-shadow:0 20px 56px rgba(0,0,0,.35); }
.og-seg-dark { background:linear-gradient(145deg,var(--navy-2),var(--navy-3)); border:1px solid rgba(255,255,255,.08); }
.og-seg-orange { background:linear-gradient(135deg,#7c2d12,#9a3412); border:1px solid rgba(234,88,12,.25); }
.og-seg-blue { background:linear-gradient(135deg,var(--blue-2),#1e3a8a); border:1px solid rgba(30,58,159,.3); }
.og-seg-num { font-family:var(--font-display); font-size:3.5rem; font-weight:600; color:rgba(255,255,255,.08); line-height:1; margin-bottom:.5rem; letter-spacing:-.02em; }
.og-seg h3 { font-family:var(--font-display); font-size:1.25rem; font-weight:600; color:#fff; margin-bottom:.4rem; }
.og-seg p { font-size:.855rem; line-height:1.65; color:rgba(255,255,255,.72); margin-bottom:1.25rem; max-width:32ch; }
.og-seg-pills { display:flex; flex-wrap:wrap; gap:.35rem; margin-bottom:1.25rem; }
.og-pill { font-family:var(--font-mono); font-size:.6rem; font-weight:500; letter-spacing:.1em; border-radius:var(--r-xs); padding:.22rem .55rem; }
.og-pill-orange { color:#fdba74; background:rgba(253,186,116,.12); border:1px solid rgba(253,186,116,.2); }
.og-pill-blue   { color:#a9bcf0; background:rgba(169,188,240,.1); border:1px solid rgba(169,188,240,.2); }
.og-seg-link { display:inline-flex; align-items:center; gap:.4rem; font-size:.82rem; font-weight:600; color:#fff; opacity:.75; transition:opacity .2s,gap .2s; }
.og-seg-link svg { width:12px; height:12px; stroke:#fff; fill:none; stroke-width:2.5; stroke-linecap:round; stroke-linejoin:round; }
.og-seg:hover .og-seg-link { opacity:1; gap:.6rem; }
.vc-wrap { background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.07); border-radius:14px; padding:1.25rem; }
.vc-row { display:flex; align-items:center; gap:.5rem; overflow-x:auto; padding:.25rem 0; }
.vc-node { flex-shrink:0; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); border-radius:10px; padding:.65rem 1rem; text-align:center; min-width:80px; transition:background .2s,border-color .2s; }
.vc-node:hover { background:rgba(30,58,159,.15); border-color:rgba(30,58,159,.35); }
.vc-node-title { font-family:var(--font-display); font-size:.78rem; font-weight:600; color:#fff; }
.vc-node-sub   { font-size:.62rem; color:rgba(255,255,255,.5); margin-top:.1rem; }
.vc-arrow { color:rgba(255,255,255,.2); font-size:1rem; flex-shrink:0; }

/* Marketing / tech overview grids */
.svc-overview-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem; }
.mkt-grid-wide { grid-template-columns:repeat(3,1fr); }
@media(max-width:900px){ .mkt-grid-wide{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:640px){ .svc-overview-grid,.mkt-grid-wide{ grid-template-columns:1fr; } }
@media(max-width:760px){ .svc-overview-grid{ grid-template-columns:1fr; } }
.svc-card {
  background:#fff; border:1px solid var(--border); border-radius:20px; overflow:hidden;
  transition:transform .3s var(--ease), box-shadow .3s, border-color .3s;
  text-decoration:none; display:flex; flex-direction:column;
}
.svc-card:hover { transform:translateY(-6px); box-shadow:0 24px 64px rgba(9,9,31,.12); border-color:var(--blue-pale); }
.svc-card-top { padding:1.75rem 1.75rem 0; }
.svc-card-graphic { height:120px; border-radius:12px; margin-bottom:1.25rem; display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden; }
.svc-card-icon { width:44px; height:44px; border-radius:12px; display:flex; align-items:center; justify-content:center; margin-bottom:.9rem; }
.svc-card h3 { font-family:var(--font-display); font-size:1.15rem; font-weight:600; color:var(--ink); margin-bottom:.35rem; }
.svc-card p { font-size:.85rem; color:var(--muted); line-height:1.65; margin-bottom:1rem; }
.svc-card-bottom { padding:1.1rem 1.75rem 1.5rem; border-top:1px solid var(--border); margin-top:auto; display:flex; align-items:center; justify-content:space-between; }
.svc-card-link { display:inline-flex; align-items:center; gap:.4rem; font-size:.82rem; font-weight:600; }
.svc-card-link svg { width:12px; height:12px; stroke:currentColor; fill:none; stroke-width:2.5; stroke-linecap:round; stroke-linejoin:round; transition:transform .2s var(--spring); }
.svc-card:hover .svc-card-link svg { transform:translateX(3px); }
.svc-card-tag { font-family:var(--font-mono); font-size:.6rem; font-weight:500; letter-spacing:.14em; text-transform:uppercase; padding:.28rem .6rem; border-radius:var(--r-xs); }
.svc-card--tech .svc-card-top { padding:2rem 2rem 0; }
.svc-card--tech .svc-card-graphic { height:140px; margin-bottom:1.5rem; }
.svc-card--tech .svc-card-icon { width:52px; height:52px; border-radius:14px; margin-bottom:1rem; }
.svc-card--tech h3 { font-size:1.3rem; margin-bottom:.4rem; }
.svc-card--tech p { font-size:.875rem; }
.svc-card--tech .svc-card-bottom { padding:1.25rem 2rem 1.75rem; }
.svc-card--tech .svc-card-link svg { width:14px; height:14px; }
.svc-card--tech .svc-card-tag { font-size:.7rem; padding:.3rem .7rem; border-radius:7px; }

.contact-card-title {
  font-family:var(--font-display); font-size:1.35rem; font-weight:600;
  color:#fff; margin-bottom:1.75rem;
}
.contact-grid { display:grid; grid-template-columns:1fr 1.6fr; gap:3rem; align-items:start; }
@media(max-width:820px){ .contact-grid{ grid-template-columns:1fr; } }

.page-hero--sub { padding:4rem 0 3.5rem !important; }
.page-hero--sub > .w { position:relative; z-index:2; }

.page-stat-lbl { font-size:.75rem; color:var(--muted); line-height:1.4; }

/* ── O&G solution sections ── */
.sol-wrap { padding:3.5rem 0; }
.sol-grid { display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:start; }
@media(max-width:820px){ .sol-grid{ grid-template-columns:1fr; } }
.sol-tag { font-family:var(--font-mono); font-size:.62rem; font-weight:500; letter-spacing:.2em; text-transform:uppercase; display:block; margin-bottom:1rem; }
.sol-h2 { font-family:var(--font-display); font-size:1.8rem; font-weight:700; letter-spacing:-.01em; line-height:1.15; margin-bottom:.5rem; }
.sol-desc { font-size:.95rem; line-height:1.7; color:var(--muted); margin-bottom:1.5rem; max-width:44ch; }
.sol-bullets { display:flex; flex-direction:column; gap:.55rem; margin-bottom:1.75rem; }
.sol-bullet { display:flex; align-items:flex-start; gap:.65rem; font-size:.88rem; color:var(--ink-2); line-height:1.45; }
.sol-bullet-dot { width:7px; height:7px; border-radius:50%; flex-shrink:0; margin-top:.35rem; background:var(--blue); }

.dash-panel { background:linear-gradient(145deg,var(--navy-2),var(--navy-3)); border:1px solid rgba(255,255,255,.08); border-radius:var(--r-lg); padding:1.5rem; box-shadow:var(--shadow-lg); }
.dash-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:1.25rem; }
.dash-title { font-family:var(--font-mono); font-size:.64rem; font-weight:500; letter-spacing:.18em; text-transform:uppercase; color:rgba(255,255,255,.5); }
.dash-pill { display:inline-flex; align-items:center; gap:.3rem; font-size:.65rem; font-weight:600; color:#86efac; background:rgba(134,239,172,.1); border:1px solid rgba(134,239,172,.25); border-radius:var(--r-xs); padding:.2rem .65rem; }
.dash-pill::before { content:''; width:5px; height:5px; border-radius:50%; background:#86efac; animation:pulseDot 2s ease-in-out infinite; }
.dash-row { display:flex; align-items:center; justify-content:space-between; background:rgba(255,255,255,.045); border:1px solid rgba(255,255,255,.07); border-radius:var(--r-sm); padding:.65rem .9rem; margin-bottom:.45rem; transition:background .2s; }
.dash-row:hover { background:rgba(255,255,255,.07); }
.dash-row-label { font-size:.8rem; font-weight:500; color:rgba(255,255,255,.75); }
.badge-green  { font-size:.7rem; font-weight:600; color:#86efac; background:rgba(134,239,172,.1); border:1px solid rgba(134,239,172,.22); border-radius:5px; padding:.15rem .55rem; }
.badge-yellow { font-size:.7rem; font-weight:600; color:#fde68a; background:rgba(253,230,138,.08); border:1px solid rgba(253,230,138,.2); border-radius:5px; padding:.15rem .55rem; }
.badge-blue   { font-size:.7rem; font-weight:600; color:#a9bcf0; background:rgba(169,188,240,.08); border:1px solid rgba(169,188,240,.2); border-radius:5px; padding:.15rem .55rem; }
.badge-purple { font-size:.7rem; font-weight:600; color:#a9bcf0; background:rgba(169,188,240,.08); border:1px solid rgba(169,188,240,.2); border-radius:5px; padding:.15rem .55rem; }
.badge-orange { font-size:.7rem; font-weight:600; color:#fdba74; background:rgba(253,186,116,.08); border:1px solid rgba(253,186,116,.2); border-radius:5px; padding:.15rem .55rem; }
.prog-row { display:flex; align-items:center; gap:.75rem; }
.prog-track { flex:1; height:6px; background:rgba(255,255,255,.07); border-radius:3px; overflow:hidden; }
.prog-fill { height:100%; border-radius:3px; width:0; transition:width .8s var(--ease); }
.prog-fill.purple, .prog-fill.blue { background:linear-gradient(90deg,var(--blue),#7d97e8); }
.prog-fill.orange { background:linear-gradient(90deg,var(--amber),var(--amber-lt)); }
.prog-fill.teal { background:linear-gradient(90deg,var(--teal),var(--teal-lt)); }
.prog-lbl { font-size:.72rem; font-weight:600; color:rgba(255,255,255,.6); min-width:2.5rem; text-align:right; }

/* ── Midstream page ── */
.ms-hero { background:var(--navy); padding:4rem 0 3.5rem; position:relative; overflow:hidden; }
.ms-hero-grid { display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:center; position:relative; z-index:2; }
@media(max-width:820px){ .ms-hero-grid{ grid-template-columns:1fr; } }
.prod-cards { display:flex; flex-direction:column; gap:.65rem; }
.prod-card {
  background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1);
  border-radius:var(--r); padding:1.1rem 1.4rem;
  display:flex; align-items:center; gap:1.1rem;
  transition:background .25s, border-color .25s, transform .25s var(--ease);
}
.prod-card:hover { background:rgba(30,58,159,.12); border-color:rgba(30,58,159,.35); transform:translateX(4px); }
.prod-card-abbr { font-family:var(--font-display); font-size:1.6rem; font-weight:600; color:#fff; min-width:3.5rem; letter-spacing:-.01em; }
.prod-card-abbr.blue { color:#a9bcf0; }
.prod-card-abbr.purple { color:#a9bcf0; }
.prod-card-abbr.green { color:#86efac; }
.prod-card-divider { width:2px; height:40px; background:rgba(255,255,255,.1); border-radius:2px; flex-shrink:0; }
.prod-card-text h4 { font-size:.88rem; font-weight:600; color:#fff; margin-bottom:.15rem; }
.prod-card-text p { font-size:.75rem; color:rgba(255,255,255,.65); line-height:1.4; }
.ms-stats { display:grid; grid-template-columns:repeat(4,1fr); background:#fff; border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
@media(max-width:700px){ .ms-stats{ grid-template-columns:repeat(2,1fr); } }
.ms-stat { padding:1.5rem 1rem; text-align:center; border-right:1px solid var(--border); }
.ms-stat:last-child { border-right:none; }
.ms-stat-num { font-family:var(--font-display); font-size:2rem; font-weight:600; letter-spacing:-.02em; color:var(--ink); line-height:1; margin-bottom:.3rem; }
.ms-stat-lbl { font-size:.75rem; color:var(--muted); }
.ms-cta { position:relative; overflow:hidden; }

/* ── Marketing / tech service cards ── */
.svc-card-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; }
@media(max-width:900px){ .svc-card-grid{ grid-template-columns:1fr; } }
.svc-card {
  background:#fff; border:1px solid var(--border); border-radius:var(--r-lg);
  overflow:hidden; transition:transform .28s var(--ease), box-shadow .28s;
}
.svc-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-card); }
.svc-card h3 { font-family:var(--font-display); font-size:1.15rem; font-weight:600; color:var(--ink); margin-bottom:.35rem; }
.svc-card-body { padding:1.5rem; }
.svc-card-graphic { height:140px; position:relative; overflow:hidden; }
.svc-chip {
  position:absolute; font-family:var(--font-body); font-size:.75rem; font-weight:600;
  padding:.3rem .65rem; border-radius:8px; color:#fff;
}

/* ── Section headings (inline style replacement) ── */
.sh-title {
  font-family:var(--font-display);
  font-size:clamp(1.6rem,2.5vw,2.2rem);
  font-weight:600; letter-spacing:-.02em; line-height:1.15;
}
.sh-title--white { color:#fff; }
.sh-title--dark { color:var(--ink); }
.sh-title--cta { font-size:clamp(1.7rem,3vw,2.4rem); color:#fff; margin-bottom:.9rem; }

.feature-h4 {
  font-family:var(--font-display); font-size:1.05rem; font-weight:600;
  color:#fff; margin-bottom:.5rem;
}
.stat-inline {
  font-family:var(--font-display); font-size:1.4rem; font-weight:600;
}
.mini-stat-box {
  background:rgba(255,255,255,.05); border-radius:var(--r-sm);
  padding:.85rem; text-align:center;
}
.mini-stat-box .stat-inline { margin-bottom:.2rem; display:block; }
.mini-stat-box span:last-child { font-size:.7rem; color:rgba(255,255,255,.6); }

/* ── Dark feature grid (downstream etc.) ── */
.dark-feat-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; }
@media(max-width:820px){ .dark-feat-grid{ grid-template-columns:1fr; } }
.dark-feat-card {
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08);
  border-radius:var(--r); padding:1.5rem;
  transition:background .25s, border-color .25s;
}
.dark-feat-card:hover { background:rgba(255,255,255,.07); border-color:rgba(255,255,255,.15); }
.dark-feat-card h4 { font-family:var(--font-display); font-size:1rem; font-weight:600; margin-bottom:.5rem; }
.dark-feat-card h4.green { color:#4ade80; }
.dark-feat-card h4.blue { color:#7d97e8; }
.dark-feat-card h4.amber { color:#fb923c; }
.dark-feat-card p { font-size:.82rem; color:rgba(255,255,255,.6); line-height:1.6; }

/* ── Contact page ── */
.contact-info-card {
  background:var(--navy-2); border-radius:var(--r-lg); padding:2.5rem;
  border:1px solid rgba(255,255,255,.08); height:100%;
  box-shadow:var(--shadow-lg);
}
.contact-info-item {
  display:flex; align-items:flex-start; gap:1rem;
  padding:1.5rem 0; border-bottom:1px solid rgba(255,255,255,.07);
}
.contact-info-item:last-child { border-bottom:none; padding-bottom:0; }
.contact-info-item:first-child { padding-top:0; }
.contact-info-icon {
  width:44px; height:44px; border-radius:var(--r-sm);
  background:rgba(30,58,159,.15); border:1px solid rgba(30,58,159,.25);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.contact-info-icon svg { width:20px; height:20px; stroke:#a9bcf0; fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.contact-info-label { font-family:var(--font-mono); font-size:.64rem; font-weight:500; letter-spacing:.18em; text-transform:uppercase; color:rgba(255,255,255,.38); margin-bottom:.35rem; }
.contact-info-value { font-size:.95rem; font-weight:500; color:#fff; line-height:1.55; }
.contact-info-value a { color:#a9bcf0; transition:color .18s; }
.contact-info-value a:hover { color:#fff; }
.form-card { background:var(--white); border:1px solid var(--border); border-radius:var(--r-lg); padding:3rem; box-shadow:var(--shadow-sm); }

/* ── Partners ── */
.partner-type-card {
  background:#fff; border:1px solid var(--border); border-radius:var(--r-lg);
  padding:2rem; transition:transform .28s var(--ease), box-shadow .28s;
}
.partner-type-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-card); }
.partner-type-card h3 { font-family:var(--font-display); font-size:1.5rem; font-weight:600; color:var(--ink); margin-bottom:.75rem; }

/* ── Standard CTA block ── */
.cta-band h2 {
  font-family:var(--font-display) !important;
  font-size:clamp(1.7rem,3vw,2.4rem) !important;
  font-weight:600 !important;
  color:#fff !important;
  letter-spacing:-.02em !important;
  margin-bottom:.9rem !important;
}
.cta-block { position:relative; overflow:hidden; text-align:center; }
.cta-block .w { position:relative; z-index:2; }
.cta-block-inner { max-width:480px; margin:0 auto; }
.cta-block p { font-size:.95rem; color:rgba(255,255,255,.75); margin-bottom:2rem; }
.cta-actions { display:flex; gap:.65rem; justify-content:center; flex-wrap:wrap; }

/* ── Utility: display font for any remaining inline ── */
.font-display { font-family:var(--font-display) !important; }
.text-white-78 { color:rgba(255,255,255,.78); }
.text-white-65 { color:rgba(255,255,255,.65); }
