:root {
  --navy: #0e223f;
  --navy-2: #16345c;
  --gold: #d8a63b;
  --gold-dark: #b98520;
  --text: #1b2a41;
  --muted: #627287;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-2: rgba(255, 255, 255, 0.82);
  --border: rgba(14, 34, 63, 0.1);
  --shadow-soft: 0 18px 42px rgba(14, 34, 63, 0.08);
  --shadow-strong: 0 26px 70px rgba(14, 34, 63, 0.14);
  --radius-xl: 32px;
  --radius-lg: 26px;
  --radius-md: 20px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  font: 16px/1.7 "Segoe UI", Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(216, 166, 59, 0.12), transparent 24%),
    linear-gradient(180deg, #eff4f8 0%, #e8eef4 100%);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(1320px, calc(100% - 56px));
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: #071a39;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header .container {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  color: #fff;
}

.brand-logo {
  display: block;
  width: 360px;
  height: 123px;
  max-width: 100%;
  object-fit: contain;
}

.menu-toggle {
  display: none;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 10px;
}

nav a {
  display: block;
  padding: 11px 15px;
  border-radius: 999px;
  color: #eef4fb;
  font-size: 16px;
  font-weight: 700;
  transition: background-color .2s ease, color .2s ease;
}

nav a:hover,
nav a:focus-visible,
nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  outline: none;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(216, 166, 59, 0.22);
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(216, 166, 59, 0.26);
}

.btn.btn-outline-dark,
.btn.btn-secondary {
  background: transparent;
  border-color: rgba(14, 34, 63, 0.16);
  color: var(--navy);
  box-shadow: none;
}

.btn.btn-secondary.btn-secondary-dark {
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.home-corporate-hero {
  padding: 20px 0 24px;
}

.hero-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top center, rgba(216, 166, 59, 0.12), transparent 28%),
    linear-gradient(180deg, #071a39 0%, #0b2345 100%);
  box-shadow: 0 28px 72px rgba(5, 14, 30, 0.18);
  width: 100%;
  margin: 0 auto;
}

.home-hero-banner {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}

.home-hero-banner-mobile {
  display: none;
}

.hero-stage-abbr {
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 10px 28px rgba(2, 8, 20, 0.2);
}

.hero-stage-services {
  margin: -6px 0 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(12px, 1.4vw, 15px);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hero-service-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  min-height: 280px;
  aspect-ratio: 16 / 8.5;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: #0b1e3b;
  box-shadow: 0 20px 46px rgba(2, 8, 20, 0.24);
  text-decoration: none;
  isolation: isolate;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.hero-service-card:hover,
.hero-service-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px rgba(2, 8, 20, 0.3);
  border-color: rgba(216, 166, 59, 0.38);
  outline: none;
}

.hero-service-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.hero-service-card:hover .hero-service-card-image,
.hero-service-card:focus-visible .hero-service-card-image {
  transform: scale(1.03);
}

.hero-service-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 26, 57, 0.04) 0%, rgba(7, 26, 57, 0.16) 45%, rgba(7, 26, 57, 0.76) 100%),
    linear-gradient(90deg, rgba(7, 26, 57, 0.1) 0%, rgba(7, 26, 57, 0) 38%, rgba(7, 26, 57, 0.24) 100%);
  z-index: 1;
}

.hero-service-card-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
  padding: 18px 18px 20px;
  color: #fff;
}

.hero-service-card-copy strong {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: calc(100% - 40px);
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(8, 24, 48, 0.52);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.hero-service-card-copy > span {
  display: none;
}

.hero-service-card-button {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  margin-left: auto;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 24px rgba(3, 12, 28, 0.18);
}

.hero-service-card:hover .hero-service-card-button,
.hero-service-card:focus-visible .hero-service-card-button {
  background: rgba(216, 166, 59, 0.96);
  border-color: rgba(216, 166, 59, 0.96);
  color: #0b1e3b;
}

.home-corporate-copy {
  padding: 34px 36px 40px;
}

.home-corporate-copy-block {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.home-corporate-copy h1 {
  max-width: 980px;
  color: var(--navy);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -2px;
}

.hero-brandline {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.home-corporate-lead {
  max-width: 920px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.82;
}

.hero-keyline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-keyline span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid rgba(14, 34, 63, 0.1);
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.hero-proof,
.service-grid,
.metrics-grid,
.process-grid,
.home-focus-grid,
.focus-split,
.home-image-stack,
.contact-grid,
.two-column-layout,
.footer-grid,
.request-form-grid,
.section-stack {
  display: grid;
  gap: 24px;
}

.hero-proof {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.hero-proof-card,
.service-card,
.metric-card,
.process-card,
.focus-panel,
.focus-mini-card,
.image-stack-card,
.content-panel,
.dark-panel,
.timeline-card,
.page-intro-card,
.request-form-card,
.contact-hero-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.hero-proof-card,
.metric-card,
.process-card,
.focus-panel,
.focus-mini-card,
.content-panel,
.dark-panel,
.timeline-card,
.page-intro-card,
.request-form-card,
.contact-hero-card {
  padding: 28px;
}

.hero-proof-card strong,
.metric-card strong,
.process-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
}

.hero-proof-card span,
.metric-card span,
.process-card p,
.focus-panel p,
.focus-mini-card p,
.content-panel p,
.timeline-card p,
.contact-hero-card p,
.page-intro-card p,
.section-copy,
.request-note {
  color: var(--muted);
}

.section-slab {
  padding: 34px 0;
}

.section-slab.section-slab-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.52) 0%, rgba(235, 241, 246, 0.88) 100%);
}

.section-header,
.section-header-inline {
  display: grid;
  gap: 14px;
  margin-bottom: 26px;
}

.section-header-inline {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  align-items: end;
}

.section-header h2,
.section-header-inline h2,
.page-intro-card h2,
.focus-panel h3,
.timeline-card h2,
.request-form-card h2,
.contact-hero-card h2 {
  color: var(--navy);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -1.2px;
}

.section-header p,
.section-header-inline p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.8;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  min-height: 240px;
  aspect-ratio: 16 / 7;
  border-radius: 30px;
  background: #0a1d37;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  padding: 0;
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 26, 57, 0.08) 0%, rgba(7, 26, 57, 0.24) 52%, rgba(7, 26, 57, 0.7) 100%);
  pointer-events: none;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(14, 34, 63, 0.16);
}

.service-card:focus-visible {
  outline: 2px solid rgba(216, 166, 59, 0.9);
  outline-offset: 3px;
}

.service-card-label {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: calc(100% - 40px);
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(7, 26, 57, 0.76);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.service-card img,
.page-slide-image,
.contact-banner,
.image-stack-card img {
  width: 100%;
  object-fit: cover;
}

.service-card img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  background: #ffffff;
  border-radius: 28px;
  transform: scale(1.02);
}

.metrics-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-card h3,
.focus-mini-card strong {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.18;
}

.page-shell {
  padding: 34px 0 84px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 26px;
}

.page-slide-image,
.contact-banner {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.page-slide-image {
  max-height: 580px;
}

.contact-banner {
  aspect-ratio: 1.6 / 1;
}

.page-hero-copy {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.page-hero-copy h1,
.content-panel h2 {
  color: var(--navy);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: -1.2px;
}

.page-hero-copy p,
.content-panel.prose p,
.services-list li {
  color: var(--muted);
  font-size: 18px;
}

.page-intro-card p + p,
.content-panel.prose p + p {
  margin-top: 14px;
}

.two-column-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.services-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-left: 20px;
  list-style: disc;
}

.dark-panel {
  background: linear-gradient(135deg, var(--navy-2) 0%, var(--navy) 100%);
  color: #fff;
}

.dark-panel h3,
.dark-panel p,
.dark-panel li,
.dark-panel a,
.dark-panel strong {
  color: #fff;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(233, 239, 246, 0.88);
}

.check-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffe2a0;
}

.timeline-list {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.timeline-item {
  padding-left: 18px;
  border-left: 2px solid rgba(216, 166, 59, 0.5);
}

.timeline-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 18px;
}

.request-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.request-form-grid .full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  border: 1px solid rgba(14, 34, 63, 0.16);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(216, 166, 59, 0.16);
  border-color: var(--gold);
}

.form-status {
  padding: 14px 16px;
  border-radius: 16px;
  background: #e9f9ef;
  color: #126836;
}

.form-status.is-error {
  background: #fdecec;
  color: #9f1d1d;
}

.contact-grid {
  grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
}

.contact-hero-card {
  background: linear-gradient(160deg, var(--navy-2) 0%, var(--navy) 76%);
}

.contact-hero-card h2,
.contact-hero-card p,
.contact-hero-card a,
.contact-hero-card dd {
  color: #fff;
}

.company-details,
.mini-details {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.company-details div,
.mini-details div {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.company-details div:last-child,
.mini-details div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.company-details dt,
.mini-details dt {
  margin-bottom: 4px;
  color: #ffe2a0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.contact-action-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
}

.contact-action-link,
.contact-copy-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.contact-action-link:hover,
.contact-action-link:focus-visible,
.contact-copy-button:hover,
.contact-copy-button:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.38);
  transform: translateY(-1px);
  outline: none;
}

.contact-copy-button.is-copied {
  background: rgba(216, 166, 59, 0.22);
  border-color: rgba(255, 226, 160, 0.55);
}

.home-focus-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.focus-panel h3 {
  margin-bottom: 16px;
}

.focus-split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.home-image-stack {
  gap: 18px;
}

.image-stack-card {
  overflow: hidden;
  border-radius: 30px;
}

.image-stack-card img {
  aspect-ratio: 1.38 / 1;
  border-radius: calc(var(--radius-lg) - 2px);
}

.form-section {
  padding: 34px 0 96px;
}

.cta-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px 38px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--navy-2) 0%, var(--navy) 100%);
  box-shadow: var(--shadow-strong);
}

.cta-banner h2,
.cta-banner p,
.footer-grid h3,
.footer-grid p,
.footer-grid a,
.footer-grid li {
  color: #fff;
}

.footer-shell {
  padding: 0 0 40px;
  background: var(--navy);
}

.footer-grid {
  grid-template-columns: minmax(240px, 1.1fr) repeat(3, minmax(0, 1fr));
  padding: 42px 0 24px;
  color: rgba(233, 239, 246, 0.88);
}

.footer-grid h3 {
  margin-bottom: 14px;
  font-size: 18px;
}

.footer-brand {
  max-width: 340px;
}

.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(233, 239, 246, 0.68);
  text-align: center;
}

@media (max-width: 1100px) {
  .section-header-inline,
  .service-grid,
  .metrics-grid,
  .process-grid,
  .home-focus-grid,
  .two-column-layout,
  .contact-grid,
  .footer-grid,
  .cta-banner,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: calc(100% - 16px);
  }

  .header .container {
    min-height: 72px;
    gap: 12px;
  }

  .brand-logo {
    width: 170px;
    height: 58px;
    max-width: 100%;
  }

  .menu-toggle {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 12px;
    background: transparent;
    color: #fff;
    font-size: 23px;
    cursor: pointer;
  }

  .header nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 12px;
    right: 12px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    background: rgba(14, 34, 63, 0.97);
    box-shadow: var(--shadow-strong);
  }

  .header nav.is-open {
    display: block;
  }

  nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  nav a {
    text-align: center;
    border-radius: 14px;
    font-size: 16px;
  }

  .home-corporate-hero,
  .page-shell,
  .form-section {
    padding-top: 6px;
    padding-bottom: 10px;
  }

  .home-corporate-hero .container {
    width: calc(100% - 2px);
  }

  .hero-copy-section {
    margin-top: 0;
  }

  .hero-stage,
  .cta-banner,
  .service-card,
  .metric-card,
  .process-card,
  .focus-panel,
  .focus-mini-card,
  .content-panel,
  .dark-panel,
  .timeline-card,
  .page-intro-card,
  .request-form-card,
  .contact-hero-card,
  .page-hero-copy {
    border-radius: 22px;
  }

  .home-corporate-copy {
    padding: 22px;
  }

  .home-corporate-copy h1 {
    font-size: clamp(26px, 7.4vw, 38px);
    line-height: 1.04;
    letter-spacing: -0.9px;
  }

  .home-corporate-lead,
  .page-hero-copy p,
  .section-header p,
  .section-header-inline p {
    font-size: 16px;
  }

  .hero-copy-section .container {
    width: calc(100% - 20px);
  }

  .hero-brandline {
    margin-bottom: 10px;
    font-size: clamp(20px, 6vw, 28px);
    letter-spacing: 0.04em;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .page-slide-image,
  .contact-banner,
  .service-card img,
  .image-stack-card img {
    aspect-ratio: auto;
    max-height: none;
    object-fit: contain;
    background: #071a39;
  }

  .service-card {
    min-height: 260px;
    aspect-ratio: auto;
  }

  .service-card img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: transparent;
  }

  .service-card-label {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: calc(100% - 32px);
    font-size: 13px;
    letter-spacing: 0.06em;
  }

  .home-hero-banner {
    border-radius: 22px;
  }

  .hero-stage {
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(5, 14, 30, 0.14);
  }

  .home-hero-banner-desktop {
    display: none;
  }

  .home-hero-banner-mobile {
    display: block;
  }

  .hero-stage .home-hero-banner-mobile {
    width: 100%;
    height: 100%;
    min-height: 188px;
    aspect-ratio: 2.22 / 1;
    object-fit: cover;
    object-position: center;
  }

  .hero-stage-abbr {
    margin-bottom: 14px;
    font-size: clamp(24px, 8vw, 34px);
    letter-spacing: 0.16em;
  }

  .hero-stage-services {
    margin: -2px 0 14px;
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .hero-card-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-service-card {
    min-height: 240px;
    aspect-ratio: auto;
    border-radius: 22px;
  }

  .hero-service-card-copy {
    padding: 16px;
  }

  .hero-service-card-copy strong {
    left: 16px;
    top: 16px;
    max-width: calc(100% - 32px);
    font-size: 13px;
  }

  .hero-service-card-button {
    min-height: 40px;
    padding: 10px 14px;
    font-size: 11px;
  }

  .request-form-grid,
  .focus-split {
    grid-template-columns: 1fr;
  }

