
/* --- Custom form and CTA styles for Job Seeker and Hire Talent pages --- */
.form-card {
  border-radius: 1.5rem;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-label {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.form-control, .form-select {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
  border-radius: 0.9rem;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  box-shadow: none;
  transition: border-color 0.2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--brand);
  background: rgba(255,255,255,0.13);
  color: var(--text);
  box-shadow: none;
}
.form-select {
  min-height: 3rem;
}
.form-control[readonly], .form-control:disabled {
  opacity: 0.7;
  background: rgba(255,255,255,0.07);
}
.form-text {
  color: var(--muted);
  font-size: 0.94rem;
}
.form-message {
  font-size: 1.08rem;
  font-weight: 600;
  padding: 0.7rem 1rem;
  border-radius: 0.9rem;
  margin-top: 0.4rem;
}
.form-message.success {
  background: rgba(47,107,255,0.12);
  color: var(--brand);
  border: 1px solid var(--brand-soft);
}
.form-message.error {
  background: rgba(255, 67, 67, 0.13);
  color: #ff4343;
  border: 1px solid #ff4343;
}
.invalid-feedback {
  display: block;
  color: #ff4343;
  font-size: 0.96rem;
  margin-top: 0.2rem;
}
.form-control.is-invalid, .form-select.is-invalid {
  border-color: #ff4343;
  background: rgba(255, 67, 67, 0.07);
}
.form-control.is-valid, .form-select.is-valid {
  border-color: var(--brand);
}
.btn[disabled], .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.inner-hero-section {
  min-height: 60vh;
  padding-top: 8rem;
  padding-bottom: 2rem;
}
@media (max-width: 991.98px) {
  .form-card {
    padding: 1.2rem !important;
  }
  .inner-hero-section {
    padding-top: 7rem;
    padding-bottom: 1.2rem;
  }
}
@media (max-width: 767.98px) {
  .form-card {
    padding: 0.7rem !important;
    border-radius: 1.1rem;
  }
  .inner-hero-section {
    padding-top: 6.5rem;
    padding-bottom: 0.7rem;
  }
}
input[type="file"].form-control {
  padding: 0.45rem 1rem;
  background: rgba(255,255,255,0.07);
  color: var(--text);
}
input[type="file"].form-control::-webkit-file-upload-button {
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 0.7rem;
  padding: 0.5rem 1.1rem;
  font-weight: 600;
}
input[type="file"].form-control::file-selector-button {
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 0.7rem;
  padding: 0.5rem 1.1rem;
  font-weight: 600;
}
/* Responsive form grid tweaks */
@media (max-width: 575.98px) {
  .form-card {
    padding: 0.4rem !important;
    border-radius: 0.8rem;
  }
  .form-label {
    font-size: 0.98rem;
  }
}
:root {
  --bg: #050814;
  --bg-soft: #0a1022;
  --surface: rgba(12, 18, 33, 0.72);
  --surface-strong: rgba(16, 23, 43, 0.92);
  --text: #f4f7ff;
  --muted: #9faecf;
  --brand: #2f6bff;
  --brand-soft: #7ca0ff;
  --accent: #ff9f43;
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 20%, rgba(47, 107, 255, 0.18), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(10, 79, 244, 0.16), transparent 24%),
    linear-gradient(180deg, #060914 0%, #060b17 100%);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  opacity: 0.4;
  z-index: -2;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.text-muted-custom {
  color: var(--muted);
}

.navbar {
  padding: 1rem 0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
  background: rgba(5, 8, 20, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  padding: 0.7rem 0;
}

.navbar-brand img {
  height: 50px;
  width: auto;
}

.navbar-nav .nav-link {
  color: rgba(244, 247, 255, 0.82);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #fff;
}

.btn {
  border-radius: 999px;
  font-weight: 700;
  padding: 0.9rem 1.5rem;
}

.btn-brand {
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, #2150ff 100%);
  border: 1px solid rgba(124, 160, 255, 0.5);
  box-shadow: 0 18px 40px rgba(47, 107, 255, 0.25);
}

.btn-brand:hover,
.btn-brand:focus {
  color: #fff;
  background: linear-gradient(135deg, #437cff 0%, #2b56ff 100%);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7.5rem 0 4rem;
  overflow: clip;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.45;
  z-index: 0;
}

.hero-orb-left {
  width: 28rem;
  height: 28rem;
  left: -10rem;
  top: 4rem;
  background: rgba(47, 107, 255, 0.2);
}

.hero-orb-right {
  width: 24rem;
  height: 24rem;
  right: -6rem;
  top: 8rem;
  background: rgba(255, 159, 67, 0.14);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 20, 0.18) 0%, rgba(5, 8, 20, 0.56) 48%, rgba(5, 8, 20, 0.9) 100%),
    url("../imgs/mhs-hero-bangalore.jpg") center / cover no-repeat;
  opacity: 1;
  z-index: 0;
}

.hero-grid::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.14;
}

.hero-section .container {
  z-index: 1;
}

.hero-frame {
  position: relative;
  padding: 2.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(7, 11, 24, 0.88) 0%, rgba(7, 11, 24, 0.78) 100%),
    rgba(7, 11, 24, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.hero-subline {
  max-width: 38rem;
  color: rgba(244, 247, 255, 0.62);
  line-height: 1.7;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 159, 67, 0.28);
  border-radius: 999px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  white-space: nowrap;
}

.eyebrow,
.section-kicker,
.mini-label,
.panel-label,
.contact-label {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
}

.eyebrow {
  color: rgba(244, 247, 255, 0.7);
  margin-bottom: 1.25rem;
}

.hero-title,
.section-intro h2,
.contact-shell h2 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-title {
  margin: 0;
  font-size: clamp(2.95rem, 6vw, 5.6rem);
  font-weight: 700;
}

.hero-title span {
  color: var(--brand);
}

.hero-copy {
  max-width: 42rem;
  font-size: 1.08rem;
  line-height: 1.72;
  color: var(--muted);
  margin: 1.35rem 0 1.8rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.78rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(244, 247, 255, 0.88);
  font-size: 0.95rem;
}

.hero-panel,
.surface-card,
.contact-shell {
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.hero-panel {
  position: relative;
  padding: 1.75rem;
  border-radius: 1.8rem;
}

.panel-label {
  color: var(--accent);
  margin-bottom: 1rem;
}

.panel-main-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-main-stat strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.15rem, 4.8vw, 3.5rem);
  line-height: 1;
}

.panel-main-stat span {
  color: var(--muted);
  line-height: 1.6;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.kpi-card {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
}

.kpi-card strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 0.35rem;
}

.kpi-card span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.strip-card {
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(14px);
}

.strip-value {
  display: block;
  margin-bottom: 0.5rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  color: #fff;
}

.strip-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.96rem;
}

.content-section {
  position: relative;
  padding: 6.5rem 0;
}

.section-dark {
  background: linear-gradient(180deg, rgba(12, 16, 30, 0.72) 0%, rgba(7, 10, 21, 0.82) 100%);
}

.section-intro {
  max-width: 48rem;
  margin-bottom: 2.5rem;
}

.section-kicker {
  color: var(--accent);
  display: inline-block;
  margin-bottom: 1rem;
}

.section-intro h2,
.contact-shell h2 {
  font-size: clamp(1.95rem, 4.2vw, 3.35rem);
  margin: 0;
}

.section-lead {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.surface-card {
  height: 100%;
  padding: 1.7rem;
  border-radius: 1.6rem;
}

.about-stack {
  display: grid;
  gap: 1rem;
  height: 100%;
}

.about-photo-card {
  padding: 0;
  overflow: hidden;
  background: var(--surface-strong);
}

.about-photo-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.about-photo-caption {
  display: grid;
  gap: 0.45rem;
  padding: 1.15rem 1.2rem 1.25rem;
}

.about-photo-caption strong {
  font-size: 1rem;
}

.about-photo-caption span {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.accent-card {
  background:
    linear-gradient(180deg, rgba(47, 107, 255, 0.12) 0%, rgba(10, 16, 34, 0.9) 100%),
    var(--surface-strong);
}

.accent-card h3,
.quote-card h3,
.problem-card h3,
.client-card h3,
.role-card h3,
.process-card h3,
.surface-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.28rem;
  margin: 0 0 0.8rem;
}

.mini-label {
  color: var(--brand-soft);
  display: inline-block;
  margin-bottom: 0.9rem;
}

.quote-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-text {
  font-size: clamp(1.2rem, 3vw, 1.85rem);
  line-height: 1.3;
  margin: 0;
}

.problem-card {
  padding: 1.6rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.problem-card:hover,
.client-card:hover,
.surface-card:hover,
.process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 160, 255, 0.35);
}

.problem-number,
.client-badge,
.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  height: 3rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, rgba(47, 107, 255, 0.92), rgba(24, 76, 255, 0.7));
}

.problem-card p,
.client-card p,
.process-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.slider-nav {
  display: flex;
  gap: 0.75rem;
}

.slider-button {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.78rem 1.15rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.slider-button:hover,
.slider-button:focus {
  background: rgba(47, 107, 255, 0.12);
  border-color: rgba(124, 160, 255, 0.45);
}

.client-slider {
  overflow: visible;
  padding-bottom: 3rem;
}

.client-card {
  height: 100%;
  padding: 1.8rem;
  border: 1px solid var(--border);
  border-radius: 1.6rem;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--brand);
}

.feature-list {
  display: grid;
  gap: 0.95rem;
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 0;
}

.feature-list li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--muted);
  line-height: 1.65;
}

.feature-list li::before {
  position: absolute;
  left: 0;
  top: 0.12rem;
  content: "+";
  color: var(--brand);
  font-weight: 800;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.process-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 1.45rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.advantage-list {
  display: grid;
  gap: 1rem;
}

.advantage-quote {
  height: 100%;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 1.8rem;
  background:
    radial-gradient(circle at top right, rgba(47, 107, 255, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
}

.advantage-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6rem;
  height: 3.6rem;
  margin-bottom: 1.25rem;
  padding: 0 1.2rem;
  border-radius: 999px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  color: #fff;
  background: linear-gradient(135deg, rgba(47, 107, 255, 0.92), rgba(24, 76, 255, 0.7));
}

.advantage-quote-text {
  font-size: clamp(1.25rem, 2.7vw, 1.95rem);
  line-height: 1.3;
}

.advantage-item {
  display: grid;
  gap: 0.35rem;
  padding: 1.25rem 1.35rem;
  border-radius: 1.35rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.advantage-item strong {
  font-size: 1.1rem;
}

.advantage-item span {
  color: var(--muted);
  line-height: 1.6;
}

.contact-section {
  padding-bottom: 7rem;
}

.contact-shell {
  position: relative;
  padding: 2rem;
  border-radius: 2rem;
  overflow: hidden;
}

.contact-shell::before {
  position: absolute;
  inset: auto -10% -30% auto;
  width: 22rem;
  height: 22rem;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 107, 255, 0.28), transparent 65%);
}

.contact-copy {
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
  margin: 1.3rem 0 2rem;
}

.contact-card {
  display: grid;
  gap: 0.9rem;
  padding: 1.5rem;
  border-radius: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-note {
  margin-top: 1rem;
  color: rgba(244, 247, 255, 0.58);
  line-height: 1.65;
}

.contact-label {
  color: var(--accent);
}

.site-footer {
  padding: 0 0 2rem;
  color: rgba(244, 247, 255, 0.55);
  text-align: center;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1199.98px) {
  .hero-frame {
    padding: 1.8rem;
  }

  .hero-title {
    font-size: clamp(2.7rem, 5.7vw, 4.8rem);
  }

  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .navbar-brand img {
    height: 44px;
  }

  .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    background: rgba(7, 10, 21, 0.92);
  }

  .hero-section {
    min-height: auto;
    padding-top: 8rem;
  }

  .hero-topbar {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.6rem;
  }

  .hero-location {
    align-self: flex-start;
  }

  .hero-frame {
    padding: 1.5rem;
  }

  .hero-title {
    font-size: clamp(2.45rem, 6.8vw, 3.9rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .section-intro h2,
  .contact-shell h2 {
    font-size: clamp(1.8rem, 4.6vw, 2.75rem);
  }

  .section-lead {
    font-size: 1.08rem;
  }

  .panel-main-stat {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .navbar {
    padding: 0.8rem 0;
  }

  .navbar-brand img {
    height: 40px;
  }

  .hero-section {
    padding: 7.25rem 0 3rem;
  }

  .hero-frame {
    padding: 1.2rem;
  }

  .hero-title {
    font-size: clamp(2.1rem, 11vw, 3rem);
    line-height: 1.02;
  }

  .hero-subline,
  .hero-copy,
  .section-lead,
  .contact-copy {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .section-intro h2,
  .contact-shell h2 {
    font-size: clamp(1.55rem, 7vw, 2.2rem);
    line-height: 1.08;
  }

  .quote-text,
  .advantage-quote-text {
    font-size: 1.15rem;
    line-height: 1.45;
  }

  .surface-card,
  .hero-panel,
  .contact-shell,
  .contact-card,
  .problem-card,
  .client-card,
  .process-card,
  .advantage-quote {
    padding: 1.15rem;
  }

  .kpi-grid,
  .process-grid,
  .hero-strip {
    grid-template-columns: 1fr;
  }

  .content-section {
    padding: 4.25rem 0;
  }

  .section-intro {
    margin-bottom: 1.8rem;
  }

  .contact-shell,
  .surface-card,
  .hero-panel,
  .hero-frame,
  .client-card {
    border-radius: 1.35rem;
  }

  .hero-meta span,
  .slider-button {
    width: 100%;
    justify-content: center;
  }

  .hero-location,
  .hero-section .btn-lg,
  .contact-section .btn-lg {
    width: 100%;
    text-align: center;
  }

  .hero-meta {
    gap: 0.7rem;
    margin-top: 1.2rem;
  }

  .hero-meta span {
    font-size: 0.88rem;
    padding: 0.75rem 0.9rem;
  }

  .hero-strip {
    margin-top: 1rem;
  }

  .slider-nav {
    width: 100%;
  }

  .slider-button {
    flex: 1;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    padding-top: 6.9rem;
  }

  .hero-frame {
    padding: 1rem;
  }

  .hero-title {
    font-size: clamp(1.9rem, 10vw, 2.5rem);
  }

  .eyebrow,
  .section-kicker,
  .mini-label,
  .panel-label,
  .contact-label {
    letter-spacing: 0.16em;
    font-size: 0.72rem;
  }

  .hero-subline,
  .hero-copy,
  .section-lead,
  .contact-copy,
  .strip-copy,
  .kpi-card span,
  .problem-card p,
  .client-card p,
  .process-card p,
  .advantage-item span {
    font-size: 0.93rem;
  }

  .section-intro h2,
  .contact-shell h2 {
    font-size: 1.45rem;
  }

  .accent-card h3,
  .quote-card h3,
  .problem-card h3,
  .client-card h3,
  .role-card h3,
  .process-card h3,
  .surface-card h3 {
    font-size: 1.12rem;
  }

  .panel-main-stat strong,
  .kpi-card strong {
    font-size: 1.8rem;
  }
}
