:root {
  --navy-950: #06172d;
  --navy-900: #0b2341;
  --navy-800: #12365e;
  --blue-700: #066aa9;
  --blue-600: #087fc3;
  --blue-500: #1997d4;
  --blue-100: #e5f3fb;
  --blue-050: #f2f9fd;
  --red-500: #eb3d2f;
  --slate-900: #172437;
  --slate-700: #3f5066;
  --slate-600: #5c6d82;
  --slate-300: #cbd6e2;
  --slate-200: #dce5ee;
  --slate-100: #eef3f7;
  --white: #ffffff;
  --shadow-sm: 0 8px 24px rgba(6, 23, 45, 0.08);
  --shadow-lg: 0 28px 70px rgba(6, 23, 45, 0.16);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --header-height: 84px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--slate-900);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(25, 151, 212, 0.55);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy-950);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.section--compact {
  padding: 68px 0;
}

.section--tint {
  background: var(--blue-050);
}

.section--navy {
  color: var(--white);
  background: var(--navy-950);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  background: var(--red-500);
  content: "";
}

.section--navy .eyebrow,
.page-hero .eyebrow {
  color: #73c7ee;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy-950);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(2.55rem, 6vw, 5.35rem);
  font-weight: 760;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 740;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.24rem;
  font-weight: 730;
  letter-spacing: -0.02em;
}

p {
  margin-top: 0;
}

.lead {
  max-width: 750px;
  color: var(--slate-700);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.65;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 46px;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.kicker-line {
  color: var(--slate-600);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 760;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--white);
  background: var(--blue-700);
  box-shadow: 0 12px 30px rgba(6, 106, 169, 0.24);
}

.button--primary:hover {
  background: var(--blue-600);
  box-shadow: 0 16px 34px rgba(6, 106, 169, 0.3);
}

.button--secondary {
  border-color: var(--slate-300);
  color: var(--navy-900);
  background: var(--white);
}

.button--secondary:hover {
  border-color: var(--blue-600);
  color: var(--blue-700);
}

.button--light {
  color: var(--navy-950);
  background: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
  font-weight: 750;
}

.text-link::after {
  content: "→";
  transition: transform 160ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(203, 214, 226, 0.75);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

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

.brand img {
  width: 220px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a:not(.button) {
  position: relative;
  color: var(--slate-700);
  font-size: 0.94rem;
  font-weight: 680;
}

.site-nav a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--blue-600);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav a[aria-current="page"] {
  color: var(--navy-950);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--slate-300);
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before {
  position: absolute;
  top: -6px;
}

.nav-toggle span::after {
  position: absolute;
  top: 6px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 78px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(25, 151, 212, 0.25), transparent 32%),
    linear-gradient(135deg, var(--navy-950) 0%, #0b3155 58%, #0c5783 115%);
}

.hero::before,
.hero::after {
  position: absolute;
  border: 1px solid rgba(115, 199, 238, 0.14);
  border-radius: 50%;
  content: "";
}

.hero::before {
  width: 520px;
  height: 520px;
  top: -260px;
  right: -130px;
}

.hero::after {
  width: 340px;
  height: 340px;
  right: 70px;
  bottom: -230px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 70px;
  grid-template-columns: minmax(0, 1.17fr) minmax(330px, 0.83fr);
}

.hero h1,
.page-hero h1 {
  color: var(--white);
}

.hero .lead,
.page-hero .lead {
  color: rgba(255, 255, 255, 0.78);
}

.hero-copy {
  max-width: 730px;
}

.route-panel {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

.route-panel::before {
  position: absolute;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  top: 45px;
  left: 45px;
  content: "";
}

.route-line {
  position: absolute;
  width: 240px;
  height: 180px;
  border-top: 2px solid rgba(115, 199, 238, 0.7);
  border-right: 2px solid rgba(115, 199, 238, 0.7);
  border-radius: 0 100% 0 0;
  top: 128px;
  left: 96px;
  transform: rotate(-13deg);
}

.route-node {
  position: absolute;
  display: grid;
  width: 136px;
  min-height: 90px;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  text-align: center;
  background: rgba(5, 31, 57, 0.78);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.route-node::before {
  width: 9px;
  height: 9px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: var(--red-500);
  box-shadow: 0 0 0 7px rgba(235, 61, 47, 0.15);
  content: "";
}

.route-node strong {
  font-size: 1rem;
}

.route-node span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
}

.route-node--sg {
  bottom: 68px;
  left: 48px;
}

.route-node--mm {
  top: 52px;
  right: 42px;
}

.route-caption {
  position: absolute;
  right: 36px;
  bottom: 42px;
  max-width: 180px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.85rem;
  line-height: 1.5;
}

.confidence-strip {
  color: var(--white);
  background: var(--blue-700);
}

.confidence-list {
  display: grid;
  margin: 0;
  padding: 22px 0;
  gap: 10px;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
}

.confidence-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.025em;
}

.confidence-list li::before {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #86d5f5;
  content: "";
}

/* Cards and grids */
.split {
  display: grid;
  align-items: start;
  gap: 70px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.feature-grid,
.sector-grid,
.value-grid,
.path-grid {
  display: grid;
  gap: 20px;
}

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

.feature-card,
.sector-card,
.value-card,
.path-card,
.info-card {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.feature-card {
  position: relative;
  min-height: 230px;
  padding: 30px;
  overflow: hidden;
}

.feature-card::after {
  position: absolute;
  width: 72px;
  height: 72px;
  right: -36px;
  bottom: -36px;
  border-radius: 50%;
  background: var(--blue-100);
  content: "";
}

.card-number,
.step-number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--blue-700);
  background: var(--blue-100);
  font-size: 0.8rem;
  font-weight: 850;
}

.feature-card p,
.sector-card p,
.value-card p,
.path-card p {
  margin-bottom: 0;
  color: var(--slate-600);
  font-size: 0.95rem;
}

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

.sector-card {
  min-height: 195px;
  padding: 28px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.sector-card:hover {
  border-color: rgba(8, 127, 195, 0.55);
  box-shadow: 0 18px 42px rgba(6, 23, 45, 0.12);
  transform: translateY(-4px);
}

.sector-code {
  display: inline-flex;
  min-width: 46px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  padding: 0 10px;
  border-radius: 7px;
  color: var(--blue-700);
  background: var(--blue-100);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.06em;
}

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

.step {
  position: relative;
  padding: 0 28px 0 0;
}

.step:not(:last-child)::after {
  position: absolute;
  height: 1px;
  top: 19px;
  right: 14px;
  left: 55px;
  background: var(--slate-300);
  content: "";
}

.step p {
  color: var(--slate-600);
  font-size: 0.94rem;
}

.about-panel,
.statement-panel {
  position: relative;
  overflow: hidden;
  padding: 46px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--navy-900);
}

.about-panel h2,
.statement-panel h2,
.about-panel h3,
.statement-panel h3 {
  color: var(--white);
}

.about-panel p,
.statement-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.about-panel::after,
.statement-panel::after {
  position: absolute;
  width: 210px;
  height: 210px;
  right: -100px;
  bottom: -105px;
  border: 28px solid rgba(25, 151, 212, 0.15);
  border-radius: 50%;
  content: "";
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 76px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 0%, rgba(25, 151, 212, 0.28), transparent 30%),
    var(--navy-950);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 950px;
  font-size: clamp(2.7rem, 5.6vw, 4.9rem);
}

.page-hero .lead {
  max-width: 820px;
}

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

.value-grid--spaced {
  margin-top: 24px;
}

.value-card {
  padding: 28px;
}

.value-card h3 {
  color: var(--blue-700);
}

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

.model-card {
  position: relative;
  padding: 38px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.model-card__label {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 16px 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
}

.support-list li {
  position: relative;
  padding-left: 28px;
}

.support-list li::before {
  position: absolute;
  width: 11px;
  height: 11px;
  top: 0.55em;
  left: 0;
  border: 3px solid var(--blue-600);
  border-radius: 50%;
  content: "";
}

.boundary {
  padding: 34px;
  border-left: 4px solid var(--blue-600);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--blue-050);
}

.boundary p:last-child {
  margin-bottom: 0;
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(120deg, var(--blue-700), var(--navy-900));
}

.cta-band h2 {
  max-width: 780px;
  color: var(--white);
}

.cta-band p {
  max-width: 730px;
  color: rgba(255, 255, 255, 0.76);
}

/* Contact */
.path-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.path-card {
  padding: 30px;
}

.contact-layout {
  display: grid;
  align-items: start;
  gap: 70px;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
}

.contact-note {
  padding: 28px;
  border-radius: var(--radius-md);
  color: var(--white);
  background: var(--navy-900);
}

.contact-note h3 {
  color: var(--white);
}

.contact-note p,
.contact-note li {
  color: rgba(255, 255, 255, 0.72);
}

.contact-note ol {
  margin: 20px 0 0;
  padding-left: 24px;
}

.contact-form {
  padding: 38px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label,
.form-label {
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 760;
}

.required {
  color: var(--red-500);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--slate-300);
  border-radius: 9px;
  color: var(--slate-900);
  background: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue-600);
  outline: none;
  box-shadow: 0 0 0 4px rgba(25, 151, 212, 0.14);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-row input {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  margin-top: 4px;
  accent-color: var(--blue-700);
}

.checkbox-row label {
  color: var(--slate-600);
  font-size: 0.87rem;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.form-status {
  display: none;
  margin: 22px 0 0;
  padding: 14px 16px;
  border-radius: 9px;
  font-size: 0.92rem;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: #185b34;
  background: #e7f6ed;
}

.form-status.is-error {
  color: #8a241a;
  background: #fdecea;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

/* Footer */
.site-footer {
  color: var(--white);
  background: #041326;
}

.footer-main {
  display: grid;
  padding: 62px 0 46px;
  gap: 60px;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(160px, 0.6fr));
}

.footer-brand img {
  width: 220px;
  margin-bottom: 22px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer-brand p {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.64);
}

.footer-title {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  padding: 22px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}

.footer-bottom p {
  margin: 0;
}

/* 404 */
.not-found {
  display: grid;
  min-height: calc(100vh - var(--header-height));
  place-items: center;
  padding: 70px 0;
  text-align: center;
  background: var(--blue-050);
}

.not-found__code {
  margin-bottom: 16px;
  color: var(--blue-600);
  font-size: clamp(5rem, 18vw, 10rem);
  font-weight: 850;
  letter-spacing: -0.08em;
  line-height: 0.85;
}

.button-row--center {
  justify-content: center;
}

@media (max-width: 980px) {
  :root {
    --header-height: 74px;
  }

  .section {
    padding: 76px 0;
  }

  .brand img {
    width: 185px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    gap: 0;
    border-bottom: 1px solid var(--slate-200);
    background: var(--white);
    opacity: 0;
    visibility: hidden;
    transition: max-height 220ms ease, padding 220ms ease, opacity 160ms ease;
  }

  .site-nav.is-open {
    max-height: calc(100vh - var(--header-height));
    padding: 18px 20px 28px;
    opacity: 1;
    visibility: visible;
  }

  .site-nav a:not(.button) {
    padding: 14px 4px;
    border-bottom: 1px solid var(--slate-100);
    font-size: 1rem;
  }

  .site-nav a:not(.button)::after {
    display: none;
  }

  .site-nav .button {
    margin-top: 18px;
  }

  .hero-grid,
  .split,
  .contact-layout {
    gap: 48px;
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 74px;
  }

  .route-panel {
    width: min(100%, 620px);
    min-height: 400px;
  }

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

  .confidence-list li:last-child {
    grid-column: 1 / -1;
  }

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

  .steps {
    gap: 26px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step:not(:last-child)::after {
    display: none;
  }

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

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .simple-header .header-inner {
    gap: 12px;
  }

  .simple-header .brand img {
    width: 145px;
  }

  .simple-header .button {
    min-height: 44px;
    padding: 10px 13px;
    font-size: 0.78rem;
  }

  .section,
  .section--compact {
    padding: 62px 0;
  }

  .hero,
  .page-hero {
    padding: 58px 0 54px;
  }

  .button-row,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button,
  .form-actions .button {
    width: 100%;
  }

  .route-panel {
    min-height: 340px;
  }

  .route-panel::before {
    width: 300px;
    height: 300px;
    top: 30px;
    left: 20px;
  }

  .route-line {
    width: 170px;
    height: 130px;
    top: 105px;
    left: 78px;
  }

  .route-node {
    width: 118px;
    min-height: 80px;
  }

  .route-node--sg {
    bottom: 38px;
    left: 24px;
  }

  .route-node--mm {
    top: 40px;
    right: 22px;
  }

  .route-caption {
    display: none;
  }

  .confidence-list,
  .feature-grid,
  .sector-grid,
  .steps,
  .value-grid,
  .model-grid,
  .path-grid,
  .support-list,
  .form-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .confidence-list li,
  .confidence-list li:last-child {
    grid-column: auto;
    justify-content: flex-start;
    text-align: left;
  }

  .feature-card,
  .sector-card {
    min-height: 0;
  }

  .about-panel,
  .statement-panel,
  .contact-form,
  .model-card {
    padding: 28px;
  }

  .footer-main {
    padding-top: 50px;
    gap: 34px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
