:root {
  --bg: #ffffff;
  --bg-soft: #f4f2ed;
  --panel: #f5f2eb;
  --panel-strong: #efebe3;
  --surface: rgba(22, 25, 31, 0.72);
  --surface-strong: #0f131a;
  --surface-card: rgba(12, 16, 22, 0.68);
  --surface-light: #ffffff;
  --text: #111723;
  --text-muted: #4c5566;
  --text-soft: #667185;
  --text-inverse: #f4f7fb;
  --line: rgba(17, 23, 35, 0.12);
  --line-strong: rgba(244, 247, 251, 0.14);
  --accent: #1db6da;
  --accent-soft: rgba(29, 182, 218, 0.16);
  --shadow: 0 18px 50px rgba(10, 14, 22, 0.1);
  --shadow-hover: 0 28px 70px rgba(10, 14, 22, 0.16);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --container: min(1360px, calc(100vw - 48px));
  --header-offset: 110px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI Variable Text", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0 0;
}

.nav-bar {
  width: var(--container);
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background: rgba(43, 45, 49, 0.8);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 45px rgba(14, 17, 24, 0.24);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled .nav-bar {
  background: rgba(30, 33, 39, 0.9);
  box-shadow: 0 22px 55px rgba(12, 15, 21, 0.32);
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 192px;
  height: auto;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex: 1;
}

.nav-links a {
  position: relative;
  color: rgba(244, 247, 251, 0.88);
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--accent);
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.nav-cta {
  flex: 0 0 auto;
  color: var(--text-inverse);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-cta:hover,
.button:hover,
.menu-toggle:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-inverse);
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  margin-top: calc(-1 * var(--header-offset));
  padding-top: calc(var(--header-offset) + 110px);
  overflow: hidden;
  color: var(--text-inverse);
}

.hero-video,
.hero-overlay,
.hero-noise {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(96deg, rgba(8, 10, 14, 0.26) 4%, rgba(8, 10, 14, 0.1) 45%, rgba(8, 10, 14, 0.22) 100%),
    linear-gradient(180deg, rgba(8, 10, 14, 0.05), rgba(8, 10, 14, 0.16));
}

.hero-noise {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mix-blend-mode: soft-light;
  opacity: 0.08;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: calc(100vh - 80px);
  padding-top: 40px;
  padding-bottom: 54px;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(244, 247, 251, 0.82);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 600;
}

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

.eyebrow::before,
.section-label::before {
  content: "";
  width: 46px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.hero h1 {
  max-width: 920px;
  margin: 0;
  font-family: "Segoe UI Variable Display", "Segoe UI", sans-serif;
  font-weight: 430;
  font-size: clamp(2.7rem, 5.2vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-wrap: balance;
  text-shadow: 0 10px 28px rgba(6, 8, 12, 0.18);
}

.hero-subline {
  display: block;
  margin-top: 20px;
  max-width: 780px;
  font-size: clamp(1.05rem, 1.75vw, 1.65rem);
  line-height: 1.3;
  letter-spacing: -0.03em;
  color: rgba(244, 247, 251, 0.96);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button.primary {
  background: var(--accent);
  color: #061117;
  box-shadow: 0 16px 32px rgba(29, 182, 218, 0.28);
}

.button.secondary {
  color: var(--text-inverse);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.button.primary:hover {
  box-shadow: 0 22px 38px rgba(29, 182, 218, 0.32);
}

.button.full {
  width: 100%;
}

section {
  scroll-margin-top: 110px;
}

.intro,
.capabilities,
.feature-band,
.gallery,
.simreal,
.partner,
.process,
.cta {
  padding: 110px 0;
}

.split-headline {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 56px;
  align-items: start;
}

.split-headline h2,
.section-heading h2,
.feature-copy h2,
.cta-copy h2 {
  margin: 0;
  font-family: "Segoe UI Variable Display", "Segoe UI", sans-serif;
  font-weight: 360;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.split-headline p:last-child,
.feature-copy p,
.cta-copy p,
.gallery-copy p,
.capability-card p,
.process-card p,
.point-card p,
.site-footer p,
.site-footer li {
  color: var(--text-muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.capability-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
  border: 1px solid rgba(17, 23, 35, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.capability-card:nth-child(1),
.capability-card:nth-child(2) {
  grid-column: span 6;
}

.capability-card:nth-child(3),
.capability-card:nth-child(4),
.capability-card:nth-child(5) {
  grid-column: span 4;
}

.capability-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(17, 23, 35, 0.14);
}

.capability-index {
  display: inline-flex;
  padding: 8px 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #0f6071;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.capability-card h3,
.gallery-copy h3,
.process-card h3,
.point-card h3,
.cta-panel-title {
  margin: 0 0 12px;
  font-size: 1.38rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.feature-band {
  background: transparent;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: 30px;
  align-items: center;
}

.feature-copy {
  padding-right: 14px;
}

.feature-list {
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.feature-list li {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(17, 23, 35, 0.06);
  color: var(--text);
  box-shadow: 0 14px 28px rgba(11, 15, 22, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.feature-list li:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 38px rgba(11, 15, 22, 0.1);
  border-color: rgba(29, 182, 218, 0.16);
}

.feature-visual {
  position: relative;
}

.feature-visual::before {
  content: "";
  position: absolute;
  inset: -24px;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(29, 182, 218, 0.18), rgba(15, 19, 26, 0.04));
  z-index: 0;
}

.feature-visual img,
.partner-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 26px 60px rgba(12, 15, 22, 0.24);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.gallery-card {
  position: relative;
  min-height: 520px;
  border-radius: 30px;
  overflow: hidden;
  background: #0d1016;
  box-shadow: 0 24px 56px rgba(12, 15, 22, 0.2);
}

.gallery-card.wide {
  grid-column: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 14, 0.08), rgba(8, 10, 14, 0.8));
}

.gallery-copy {
  position: absolute;
  inset: auto 24px 24px 24px;
  z-index: 1;
  color: var(--text-inverse);
}

.gallery-copy p {
  color: rgba(244, 247, 251, 0.8);
}

.simreal {
  background: transparent;
}

.simreal-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: center;
}

.simreal-copy {
  padding-right: 10px;
}

.simreal-copy p {
  color: var(--text-muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.simreal-stages {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.simreal-stages span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(17, 23, 35, 0.06);
  color: var(--text);
  box-shadow: 0 10px 24px rgba(12, 15, 22, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.simreal-stages span:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(29, 182, 218, 0.16);
  box-shadow: 0 18px 30px rgba(12, 15, 22, 0.1);
}

.simreal-media {
  position: relative;
  padding: 0;
  border-radius: 30px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.simreal-media::before {
  content: "";
  position: absolute;
  inset: -24px;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(29, 182, 218, 0.18), rgba(15, 19, 26, 0.04));
  z-index: 0;
}

.simreal-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 18px 46px rgba(12, 15, 22, 0.16);
}

.partner-headline {
  margin-bottom: 42px;
}

.partner-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: start;
}

.partner-points {
  display: grid;
  gap: 18px;
}

.point-card,
.process-card,
.cta-panel {
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #faf8f3 100%);
  border: 1px solid rgba(17, 23, 35, 0.08);
  box-shadow: 0 20px 48px rgba(12, 15, 22, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.point-card:hover,
.process-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(17, 23, 35, 0.14);
}

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

.process-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 28px;
  padding: 38px;
  border-radius: 36px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f5ef 100%);
  color: var(--text);
  border: 1px solid rgba(17, 23, 35, 0.08);
  box-shadow: 0 28px 70px rgba(11, 15, 22, 0.12);
}

.cta-copy p:last-child {
  color: var(--text-muted);
}

.cta-panel {
  background: var(--panel);
  box-shadow: 0 16px 34px rgba(12, 15, 22, 0.08);
}

.cta-panel-title {
  color: var(--text);
}

.cta-panel-copy {
  margin: 0 0 18px;
  color: var(--text-muted);
  line-height: 1.7;
}

.cta-panel ul {
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
  display: grid;
  gap: 12px;
}

.cta-panel li {
  color: var(--text-muted);
  line-height: 1.7;
}

.cta-actions {
  display: grid;
  gap: 12px;
}

.contact-cta {
  position: relative;
  overflow: hidden;
  justify-content: flex-start;
  min-height: 58px;
  padding: 0 64px 0 24px;
  color: #f4f7fb;
  border: 1px solid rgba(88, 211, 255, 0.24);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(135deg, #10294f 0%, #0d2752 44%, #09172c 100%);
  box-shadow:
    0 10px 22px rgba(8, 20, 40, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.08) 40%,
    rgba(255, 255, 255, 0.22) 52%,
    rgba(255, 255, 255, 0.08) 64%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-130%);
  transition: transform 0.72s ease;
  pointer-events: none;
}

.contact-cta::after {
  content: "\2192";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(244, 247, 251, 0.92);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.contact-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(88, 211, 255, 0.95);
  box-shadow:
    0 0 0 2px rgba(39, 175, 224, 0.92),
    0 0 24px rgba(39, 175, 224, 0.42),
    0 12px 26px rgba(11, 24, 49, 0.18);
}

.contact-cta:hover::before {
  transform: translateX(130%);
}

.contact-cta:hover::after {
  transform: translate(4px, -50%);
}

.contact-cta-label {
  position: relative;
  z-index: 1;
  color: inherit;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.site-footer {
  padding: 36px 0 60px;
  color: var(--text-inverse);
  background: #0d1016;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  padding-top: 32px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  width: 190px;
  margin-bottom: 18px;
}

.footer-title {
  margin: 0 0 12px;
  color: var(--text-inverse);
  font-weight: 700;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-brand p,
.site-footer li,
.footer-contact a,
.footer-bottom a,
.footer-legal-text {
  color: rgba(244, 247, 251, 0.74);
}

.footer-contact {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.footer-contact a {
  font-weight: 600;
}

.footer-contact a:hover,
.footer-bottom a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.legal-page {
  background: #f7f5f0;
}

.legal-header {
  padding: 24px 0 0;
}

.legal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border-radius: 30px;
  background: #161a22;
  box-shadow: 0 20px 45px rgba(10, 14, 22, 0.18);
}

.legal-brand img {
  width: 186px;
  filter: brightness(0) invert(1);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--text-inverse);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-main {
  padding: 56px 0 84px;
}

.legal-shell {
  max-width: 920px;
}

.legal-shell h1 {
  margin: 0 0 28px;
  font-family: "Segoe UI Variable Display", "Segoe UI", sans-serif;
  font-weight: 430;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.legal-card {
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #faf8f3 100%);
  border: 1px solid rgba(17, 23, 35, 0.08);
  box-shadow: 0 24px 56px rgba(10, 14, 22, 0.1);
}

.legal-card p {
  margin: 0 0 18px;
  color: var(--text-muted);
  line-height: 1.85;
}

.legal-card strong {
  color: var(--text);
}

.legal-card a {
  color: #0f6071;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .button,
  .nav-cta,
  .menu-toggle,
  .nav-bar,
  .nav-links a::after {
    transition: none;
  }

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

@media (max-width: 1180px) {
  :root {
    --container: min(1360px, calc(100vw - 32px));
  }

  .nav-bar {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 4;
    width: 100%;
    justify-content: flex-start;
    padding-top: 6px;
  }

  .process-grid,
  .gallery-grid,
  .simreal-shell,
  .partner-grid,
  .cta-shell,
  .split-headline,
  .feature-layout {
    grid-template-columns: 1fr;
  }

  .gallery-card.wide {
    grid-column: span 1;
  }
}

@media (max-width: 860px) {
  .site-header {
    padding-top: 12px;
  }

  .nav-bar {
    padding: 14px 16px;
    gap: 14px;
  }

  .brand img {
    width: 158px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0 4px;
  }

  .nav-bar.menu-open .nav-links {
    display: flex;
  }

  .hero {
    min-height: 92vh;
    padding-top: calc(var(--header-offset) + 70px);
  }

  .hero-content {
    min-height: calc(92vh - 60px);
    padding-top: 34px;
    padding-bottom: 44px;
  }

  .capability-grid {
    grid-template-columns: 1fr;
  }

  .capability-card,
  .capability-card:nth-child(1),
  .capability-card:nth-child(2),
  .capability-card:nth-child(3),
  .capability-card:nth-child(4),
  .capability-card:nth-child(5) {
    grid-column: auto;
  }

  .intro,
  .capabilities,
  .feature-band,
  .gallery,
  .simreal,
  .partner,
  .process,
  .cta {
    padding: 82px 0;
  }

  .gallery-card {
    min-height: 420px;
  }

  .cta-shell {
    padding: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(1360px, calc(100vw - 22px));
    --header-offset: 92px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .hero-subline {
    font-size: clamp(0.95rem, 4.8vw, 1.3rem);
    line-height: 1.35;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .capability-card,
  .point-card,
  .process-card,
  .cta-panel {
    padding: 22px;
  }

  .legal-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-card {
    padding: 24px;
  }
}
