:root {
  --ink: #071522;
  --ink-2: #0d2034;
  --ink-3: #17314d;
  --steel: #5c7894;
  --muted: #68788a;
  --paper: #f6f8fb;
  --white: #ffffff;
  --line: #dbe3ec;
  --line-dark: rgba(255, 255, 255, 0.12);
  --accent: #f5b323;
  --accent-2: #ffcb59;
  --accent-dark: #c57d00;
  --success: #1f7a4f;
  --danger: #a63030;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 8px 30px rgba(7, 21, 34, 0.08);
  --shadow: 0 24px 70px rgba(7, 21, 34, 0.14);
  --container: 1180px;
  --header-height: 78px;
  --transition: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, Aptos, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

a:hover {
  text-decoration: none;
}

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

button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(245, 179, 35, 0.34);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 800;
  transition: transform var(--transition);
}

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

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

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

.section {
  padding: 104px 0;
}

.section-sm {
  padding: 72px 0;
}

.section-dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(55, 112, 163, 0.22), transparent 32%),
    radial-gradient(circle at 10% 80%, rgba(245, 179, 35, 0.09), transparent 28%),
    var(--ink);
  color: var(--white);
}

.section-soft {
  background: var(--paper);
}

.section-rule {
  border-top: 1px solid var(--line);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  background: currentColor;
  content: "";
}

.section-dark .eyebrow,
.hero .eyebrow {
  color: var(--accent-2);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: inherit;
  font-weight: 830;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  max-width: 880px;
  font-size: clamp(2.75rem, 6.4vw, 5.85rem);
}

h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.85rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

h4 {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.7;
}

.section-dark .lead,
.hero .lead {
  color: #bfd0e1;
}

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

.text-accent {
  color: var(--accent);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 54px;
}

.section-heading.centered {
  display: block;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading.centered .lead {
  margin-top: 20px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 790;
  line-height: 1;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

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

.btn-primary {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(245, 179, 35, 0.22);
}

.btn-primary:hover {
  background: var(--accent-2);
  box-shadow: 0 16px 40px rgba(245, 179, 35, 0.3);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--ink-3);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(245, 179, 35, 0.08);
}

.btn-light-outline {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.btn-light-outline:hover {
  border-color: var(--steel);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.icon-link svg {
  width: 17px;
  transition: transform var(--transition);
}

.icon-link:hover svg {
  transform: translateX(4px);
}

.topbar {
  position: relative;
  z-index: 1100;
  background: #03101c;
  color: #d8e4ef;
  font-size: 0.82rem;
}

.topbar-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar a {
  transition: color var(--transition);
}

.topbar a:hover {
  color: var(--accent-2);
}

.licence-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 760;
}

.licence-chip::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(245, 179, 35, 0.14);
  content: "";
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.site-header.scrolled {
  border-color: rgba(7, 21, 34, 0.08);
  box-shadow: 0 12px 30px rgba(7, 21, 34, 0.08);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand img {
  width: 43px;
  height: 43px;
}

.brand-copy {
  display: grid;
  gap: 0;
  line-height: 1;
}

.brand-copy strong {
  font-size: 1.03rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--steel);
  font-size: 0.65rem;
  font-weight: 780;
  letter-spacing: 0.16em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link,
.nav-dropdown-toggle {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 5px;
  padding: 9px 13px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #24394d;
  font-size: 0.94rem;
  font-weight: 740;
  transition: background var(--transition), color var(--transition);
}

.nav-link:hover,
.nav-link[aria-current="page"],
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active,
.nav-dropdown.open .nav-dropdown-toggle {
  background: #edf3f8;
  color: var(--ink);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.nav-dropdown.open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  display: grid;
  width: 310px;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -7px);
  transition: opacity var(--transition), transform var(--transition);
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 11px;
  padding: 10px;
  border-radius: 11px;
  color: #253c52;
  font-size: 0.88rem;
  font-weight: 760;
  transition: background var(--transition), color var(--transition);
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a[aria-current="page"] {
  background: var(--paper);
  color: var(--ink);
}

.nav-mini-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 9px;
  background: var(--ink);
  color: var(--accent);
}

.nav-mini-icon svg {
  width: 18px;
  height: 18px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #263d53;
  font-size: 0.9rem;
  font-weight: 820;
}

.header-phone svg {
  width: 17px;
  color: var(--accent-dark);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-toggle-lines::before {
  top: -6px;
}

.menu-toggle-lines::after {
  top: 6px;
}

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

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

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

.mobile-menu {
  position: fixed;
  inset: calc(38px + var(--header-height)) 0 0;
  z-index: 990;
  display: none;
  overflow-y: auto;
  padding: 22px 20px 120px;
  background: var(--white);
}

.mobile-menu.open {
  display: block;
}

.mobile-nav {
  display: grid;
  gap: 4px;
}

.mobile-nav > a,
.mobile-services summary {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border-radius: 11px;
  color: var(--ink);
  font-weight: 790;
  list-style: none;
}

.mobile-nav > a:hover,
.mobile-nav > a[aria-current="page"],
.mobile-services summary:hover {
  background: var(--paper);
}

.mobile-services summary::-webkit-details-marker {
  display: none;
}

.mobile-services summary::after {
  content: "+";
  font-size: 1.35rem;
  font-weight: 500;
}

.mobile-services[open] summary::after {
  content: "−";
}

.mobile-subnav {
  display: grid;
  gap: 4px;
  margin: 2px 0 10px 18px;
  padding-left: 14px;
  border-left: 2px solid var(--line);
}

.mobile-subnav a {
  padding: 9px 12px;
  border-radius: 9px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 720;
}

.mobile-subnav a:hover,
.mobile-subnav a[aria-current="page"] {
  background: var(--paper);
  color: var(--ink);
}

.mobile-menu-contact {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  padding: 104px 0 92px;
  background:
    linear-gradient(90deg, rgba(5, 17, 29, 0.98) 0%, rgba(7, 25, 42, 0.96) 52%, rgba(9, 30, 50, 0.91) 100%),
    var(--ink);
  color: var(--white);
}

.hero::before,
.hero::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  filter: blur(4px);
  pointer-events: none;
}

.hero::before {
  top: -200px;
  right: -100px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(48, 112, 167, 0.3), transparent 67%);
}

.hero::after {
  bottom: -300px;
  left: 20%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(245, 179, 35, 0.12), transparent 70%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.09;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent, #000 45%, #000);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(390px, 0.82fr);
  align-items: center;
  gap: 70px;
}

.hero-copy h1 {
  max-width: 760px;
}

.hero-copy .lead {
  max-width: 700px;
  margin-top: 28px;
}

.hero-copy .btn-row {
  margin-top: 34px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin: 28px 0 0;
  padding: 0;
  color: #d5e0eb;
  font-size: 0.9rem;
  font-weight: 680;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-points li::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.system-visual {
  position: relative;
  min-height: 490px;
}

.system-panel {
  position: absolute;
  inset: 28px 0 0 36px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.system-panel::before {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.17) 1px, transparent 0);
  background-size: 26px 26px;
  content: "";
  opacity: 0.38;
}

.system-top {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #dce8f2;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #b9e7cf;
}

.status-live::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5be29b;
  box-shadow: 0 0 0 6px rgba(91, 226, 155, 0.12);
  content: "";
}

.system-map {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 358px;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 34px 25px 28px;
}

.system-map::before,
.system-map::after {
  position: absolute;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(245, 179, 35, 0.42), transparent);
  content: "";
}

.system-map::before {
  top: 50%;
  left: 12%;
  width: 76%;
  height: 1px;
}

.system-map::after {
  top: 12%;
  left: 50%;
  width: 1px;
  height: 76%;
  background: linear-gradient(transparent, rgba(79, 140, 191, 0.45), transparent);
}

.system-node {
  position: relative;
  display: grid;
  min-height: 132px;
  place-content: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 19px;
  background: rgba(5, 20, 34, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  text-align: center;
}

.system-node::after {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
  box-shadow: 0 0 15px rgba(245, 179, 35, 0.9);
}

.system-node svg {
  width: 31px;
  height: 31px;
  margin: 0 auto 12px;
  color: var(--accent);
}

.system-node strong {
  display: block;
  color: var(--white);
  font-size: 0.93rem;
  letter-spacing: -0.01em;
}

.system-node span {
  margin-top: 4px;
  color: #8fa8bf;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system-badge {
  position: absolute;
  top: 0;
  right: -14px;
  z-index: 3;
  display: grid;
  width: 126px;
  min-height: 126px;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.23);
  text-align: center;
  transform: rotate(7deg);
}

.system-badge strong {
  font-size: 1.65rem;
  line-height: 1;
}

.system-badge span {
  max-width: 80px;
  margin: 7px auto 0;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  line-height: 1.25;
  text-transform: uppercase;
}

.trust-strip {
  position: relative;
  z-index: 5;
  margin-top: -38px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.trust-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 106px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: #fff5db;
  color: var(--accent-dark);
}

.trust-icon svg {
  width: 22px;
  height: 22px;
}

.trust-item strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.25;
}

.trust-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 338px;
  flex-direction: column;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 25px rgba(7, 21, 34, 0.035);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  border-color: #bdcad7;
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.service-card::after {
  position: absolute;
  right: -45px;
  bottom: -65px;
  width: 160px;
  height: 160px;
  border: 24px solid rgba(245, 179, 35, 0.07);
  border-radius: 50%;
  content: "";
}

.card-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: 15px;
  background: var(--ink);
  color: var(--accent);
}

.card-icon svg {
  width: 27px;
  height: 27px;
}

.service-card h3 {
  max-width: 260px;
}

.service-card p {
  margin-top: 15px;
  color: var(--muted);
}

.service-card .icon-link {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 24px;
}

.value-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 78px;
}

.value-copy .lead {
  margin-top: 24px;
}

.value-copy .btn-row {
  margin-top: 30px;
}

.value-panel {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(150deg, rgba(13, 38, 62, 0.98), rgba(4, 18, 31, 0.98));
  box-shadow: var(--shadow);
}

.value-panel::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  content: "";
}

.value-panel-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(245, 179, 35, 0.42);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.value-panel-ring::before,
.value-panel-ring::after {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.value-panel-ring::after {
  inset: 62px;
  border-color: rgba(78, 145, 197, 0.42);
}

.value-panel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 140px;
  height: 140px;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(4, 16, 28, 0.9);
  color: var(--white);
  text-align: center;
  transform: translate(-50%, -50%) rotate(45deg);
}

.value-panel-center div {
  transform: rotate(-45deg);
}

.value-panel-center img {
  width: 38px;
  height: 38px;
  margin: 0 auto 8px;
}

.value-panel-center strong {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.floating-system {
  position: absolute;
  z-index: 3;
  width: 164px;
  min-height: 98px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(8, 28, 47, 0.92);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.floating-system strong {
  display: block;
  font-size: 0.86rem;
}

.floating-system span {
  display: block;
  margin-top: 4px;
  color: #91a9bf;
  font-size: 0.72rem;
}

.floating-system::before {
  display: block;
  width: 9px;
  height: 9px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(245, 179, 35, 0.1);
  content: "";
}

.fs-1 { top: 45px; left: 34px; }
.fs-2 { top: 58px; right: 30px; }
.fs-3 { bottom: 48px; left: 38px; }
.fs-4 { right: 35px; bottom: 38px; }

.check-list {
  display: grid;
  gap: 15px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: start;
  gap: 12px;
  color: #263c50;
  font-weight: 690;
}

.check-list li::before {
  display: grid;
  width: 26px;
  height: 26px;
  place-content: center;
  border-radius: 50%;
  background: #fff1c9;
  color: var(--accent-dark);
  content: "✓";
  font-size: 0.8rem;
  font-weight: 900;
}

.section-dark .check-list li {
  color: #dfe9f2;
}

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

.project-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.project-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(57, 126, 181, 0.4), transparent 33%),
    linear-gradient(150deg, #112c47, #051423 70%);
}

.project-visual::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  content: "";
  opacity: 0.5;
}

.project-visual::after {
  position: absolute;
  top: 64px;
  right: 58px;
  width: 180px;
  height: 180px;
  border: 2px solid rgba(245, 179, 35, 0.68);
  border-radius: 28px;
  content: "";
  transform: rotate(16deg);
}

.project-card:nth-child(2) .project-visual::after {
  border-radius: 50%;
  transform: none;
}

.project-card:nth-child(3) .project-visual::after {
  width: 250px;
  height: 110px;
  border-radius: 60px;
  transform: rotate(-7deg);
}

.project-card:nth-child(4) .project-visual::after {
  width: 160px;
  height: 230px;
  border-radius: 18px;
  transform: rotate(7deg);
}

.project-lines {
  position: absolute;
  top: 75px;
  right: 60px;
  z-index: 2;
  width: 235px;
  height: 190px;
  opacity: 0.9;
}

.project-lines span {
  position: absolute;
  display: block;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, var(--accent));
  transform-origin: right center;
}

.project-lines span:nth-child(1) { top: 15px; right: 10px; width: 190px; transform: rotate(22deg); }
.project-lines span:nth-child(2) { top: 79px; right: 0; width: 220px; transform: rotate(-9deg); }
.project-lines span:nth-child(3) { top: 138px; right: 25px; width: 180px; transform: rotate(16deg); }

.project-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 4;
  padding: 95px 30px 30px;
  background: linear-gradient(transparent, rgba(4, 16, 28, 0.96) 58%);
}

.project-tag {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--accent-2);
  font-size: 0.7rem;
  font-weight: 840;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-content h3 {
  margin-top: 14px;
  font-size: 1.72rem;
}

.project-content p {
  max-width: 470px;
  margin-top: 10px;
  color: #aec0d1;
}

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

.process-card {
  position: relative;
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  counter-increment: process;
}

.process-card::before {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 35px;
  place-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--accent);
  content: counter(process, decimal-leading-zero);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.process-card::after {
  position: absolute;
  top: 46px;
  right: -19px;
  z-index: 2;
  width: 38px;
  height: 1px;
  background: var(--line);
  content: "";
}

.process-card:last-child::after {
  display: none;
}

.process-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.94rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.audience-card {
  display: grid;
  min-height: 170px;
  align-content: end;
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.audience-card svg {
  width: 32px;
  height: 32px;
  margin-bottom: 31px;
  color: var(--accent);
}

.audience-card span {
  color: #9cb2c6;
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audience-card strong {
  margin-top: 4px;
  font-size: 1.03rem;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 790;
}

.faq-question::after {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-content: center;
  border-radius: 50%;
  background: var(--paper);
  content: "+";
  font-size: 1.25rem;
  font-weight: 500;
  transition: transform var(--transition), background var(--transition);
}

.faq-question[aria-expanded="true"]::after {
  background: #fff1c9;
  content: "−";
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 230ms ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  padding: 0 20px 22px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 68px 0;
  background: var(--accent);
  color: var(--ink);
}

.cta-band::before {
  position: absolute;
  top: -90px;
  right: -50px;
  width: 330px;
  height: 330px;
  border: 55px solid rgba(7, 21, 34, 0.08);
  border-radius: 50%;
  content: "";
}

.cta-band-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.cta-band h2 {
  max-width: 780px;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.cta-band p {
  max-width: 720px;
  margin-top: 14px;
  color: #60420b;
  font-weight: 650;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 62px;
}

.contact-copy .lead {
  margin-top: 22px;
}

.contact-methods {
  display: grid;
  gap: 13px;
  margin-top: 32px;
}

.contact-method {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 14px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.contact-method-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-content: center;
  border-radius: 12px;
  background: var(--ink);
  color: var(--accent);
}

.contact-method-icon svg {
  width: 21px;
  height: 21px;
}

.contact-method small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-method strong {
  display: block;
  margin-top: 2px;
  font-size: 0.94rem;
}

.quote-form-wrap {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.form-heading {
  margin-bottom: 24px;
}

.form-heading p {
  margin-top: 8px;
  color: var(--muted);
}

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

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

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

.form-field label {
  color: #263d53;
  font-size: 0.84rem;
  font-weight: 780;
}

.form-field label span {
  color: var(--danger);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #cdd8e3;
  border-radius: 11px;
  background: #fbfcfe;
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-field input,
.form-field select {
  min-height: 49px;
  padding: 11px 13px;
}

.form-field textarea {
  min-height: 145px;
  padding: 12px 13px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #7a94ad;
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(73, 118, 158, 0.1);
  outline: none;
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: var(--danger);
}

.form-note {
  color: var(--muted);
  font-size: 0.78rem;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 9px;
  color: var(--muted);
  font-size: 0.8rem;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--accent-dark);
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 21px;
}

.form-status {
  min-height: 24px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.form-status.success { color: var(--success); }
.form-status.error { color: var(--danger); }

.form-submit[disabled] {
  cursor: wait;
  opacity: 0.7;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 82px;
  background:
    radial-gradient(circle at 82% 14%, rgba(59, 127, 182, 0.27), transparent 31%),
    var(--ink);
  color: var(--white);
}

.page-hero::after {
  position: absolute;
  right: -90px;
  bottom: -170px;
  width: 400px;
  height: 400px;
  border: 62px solid rgba(245, 179, 35, 0.08);
  border-radius: 50%;
  content: "";
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 70px;
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(2.65rem, 6vw, 5.35rem);
}

.page-hero .lead {
  max-width: 760px;
  margin-top: 24px;
}

.page-hero-card {
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
}

.page-hero-card strong {
  display: block;
  color: var(--accent-2);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero-card ul {
  display: grid;
  gap: 11px;
  margin: 17px 0 0;
  padding: 0;
  color: #d5e1ec;
  font-size: 0.9rem;
  list-style: none;
}

.page-hero-card li {
  display: grid;
  grid-template-columns: 9px 1fr;
  gap: 9px;
}

.page-hero-card li::before {
  width: 7px;
  height: 7px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: #9db1c4;
  font-size: 0.8rem;
  font-weight: 700;
}

.breadcrumbs a:hover {
  color: var(--accent-2);
}

.breadcrumbs span[aria-current="page"] {
  color: #e8eff6;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  gap: 66px;
}

.prose h2 {
  margin-top: 58px;
  font-size: clamp(1.85rem, 3.2vw, 2.8rem);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin-top: 34px;
}

.prose p {
  margin-top: 18px;
  color: #536679;
}

.prose ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding-left: 20px;
  color: #40566b;
}

.prose li::marker {
  color: var(--accent-dark);
}

.sidebar-card {
  position: sticky;
  top: 118px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
}

.sidebar-card h3 {
  font-size: 1.35rem;
}

.sidebar-card p {
  margin-top: 13px;
  color: var(--muted);
}

.sidebar-card .btn {
  width: 100%;
  margin-top: 20px;
}

.sidebar-list {
  display: grid;
  gap: 0;
  margin: 22px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.sidebar-list li {
  border-bottom: 1px solid var(--line);
}

.sidebar-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 13px 0;
  color: #344b60;
  font-size: 0.88rem;
  font-weight: 730;
}

.sidebar-list a::after {
  color: var(--accent-dark);
  content: "→";
}

.sidebar-list a:hover {
  color: var(--ink);
}

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

.feature-list-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
}

.feature-list-card svg {
  width: 26px;
  height: 26px;
  margin-bottom: 20px;
  color: var(--accent-dark);
}

.feature-list-card p {
  margin-top: 9px;
  font-size: 0.9rem;
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.service-tabs a {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: #40566a;
  font-size: 0.78rem;
  font-weight: 760;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.service-tabs a:hover,
.service-tabs a[aria-current="page"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.legal-prose {
  color: #40566b;
}

.legal-prose h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.legal-prose h2 {
  margin-top: 45px;
  font-size: 1.7rem;
}

.legal-prose p,
.legal-prose ul {
  margin-top: 16px;
}

.legal-prose ul {
  padding-left: 20px;
}

.notice-card {
  padding: 24px;
  border-left: 4px solid var(--accent);
  border-radius: 0 13px 13px 0;
  background: #fff8e8;
  color: #4a3a17;
}

.success-page {
  display: grid;
  min-height: 64vh;
  place-items: center;
  padding: 90px 0;
  text-align: center;
}

.success-icon {
  display: grid;
  width: 84px;
  height: 84px;
  margin: 0 auto 25px;
  place-content: center;
  border-radius: 50%;
  background: #e7f6ef;
  color: var(--success);
  font-size: 2.3rem;
  font-weight: 900;
}

.success-page h1 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
}

.success-page p {
  max-width: 650px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.success-page .btn-row {
  justify-content: center;
  margin-top: 30px;
}

.site-footer {
  background: #03101c;
  color: #c4d2df;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.85fr 1fr;
  gap: 55px;
  padding: 78px 0 58px;
}

.footer-brand p {
  max-width: 380px;
  margin-top: 20px;
  color: #91a7ba;
  font-size: 0.92rem;
}

.footer-brand .brand-copy strong {
  color: var(--white);
}

.footer-brand .brand-copy small {
  color: #8da4b8;
}

.footer-licence {
  display: inline-flex;
  margin-top: 22px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: var(--accent-2);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.footer-col h3 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.footer-links a {
  color: #9db0c1;
  font-size: 0.88rem;
  transition: color var(--transition);
}

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

.footer-contact {
  display: grid;
  gap: 13px;
}

.footer-contact > a,
.footer-contact > span {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 9px;
  align-items: start;
  color: #a7b9c8;
  font-size: 0.88rem;
}

.footer-contact svg {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #7f95a8;
  font-size: 0.78rem;
}

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

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

.mobile-action-bar {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 980;
  display: none;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 6px;
  padding: 7px;
  border: 1px solid rgba(7, 21, 34, 0.13);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 50px rgba(7, 21, 34, 0.22);
  backdrop-filter: blur(14px);
}

.mobile-action-bar a {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 11px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 820;
}

.mobile-action-bar a:last-child {
  background: var(--accent);
}

.mobile-action-bar svg {
  width: 17px;
  height: 17px;
}

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

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

@media (max-width: 1080px) {
  .desktop-nav,
  .header-phone,
  .header-actions .btn {
    display: none;
  }

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

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: 40px;
  }

  .system-badge {
    right: 0;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

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

  .process-card:nth-child(2)::after,
  .process-card:last-child::after {
    display: none;
  }

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

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

  .footer-col:last-child {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .section {
    padding: 82px 0;
  }

  .section-heading,
  .hero-inner,
  .value-layout,
  .page-hero-inner,
  .content-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    gap: 22px;
  }

  .hero {
    min-height: auto;
    padding: 84px 0 105px;
  }

  .hero-inner {
    gap: 55px;
  }

  .hero-copy h1 {
    max-width: 840px;
  }

  .system-visual {
    width: min(100%, 570px);
    min-height: 470px;
    margin-inline: auto;
  }

  .system-panel {
    inset: 20px 20px 0;
  }

  .system-badge {
    top: -6px;
    right: 0;
  }

  .value-layout {
    gap: 50px;
  }

  .value-panel {
    min-height: 500px;
  }

  .page-hero-inner {
    gap: 38px;
  }

  .page-hero-card {
    max-width: 620px;
  }

  .sidebar-card {
    position: static;
  }

  .contact-layout {
    gap: 38px;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 69px;
  }

  body {
    padding-bottom: 72px;
  }

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

  .section {
    padding: 72px 0;
  }

  .section-sm {
    padding: 56px 0;
  }

  .topbar-left > span:not(.licence-chip),
  .topbar-right a:first-child {
    display: none;
  }

  .topbar-inner {
    min-height: 36px;
  }

  .topbar-right {
    margin-left: auto;
  }

  .mobile-menu {
    inset: var(--header-height) 0 0;
  }

  .topbar-right {
    display: none;
  }

  .topbar-left {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .brand img {
    width: 39px;
    height: 39px;
  }

  .brand-copy strong {
    font-size: 0.92rem;
  }

  .brand-copy small {
    font-size: 0.58rem;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-grid-lines {
    mask-image: none;
  }

  .hero-copy .lead {
    margin-top: 22px;
  }

  .hero-copy .btn-row {
    margin-top: 27px;
  }

  .btn-row .btn {
    flex: 1 1 210px;
  }

  .system-visual {
    min-height: 430px;
  }

  .system-panel {
    inset: 20px 0 0;
  }

  .system-map {
    gap: 10px;
    padding: 28px 14px 18px;
  }

  .system-node {
    min-height: 120px;
    padding: 12px;
  }

  .system-badge {
    width: 102px;
    min-height: 102px;
  }

  .system-badge strong {
    font-size: 1.35rem;
  }

  .system-badge span {
    font-size: 0.57rem;
  }

  .trust-strip {
    margin-top: -32px;
  }

  .trust-grid,
  .card-grid,
  .project-grid,
  .process-grid,
  .audience-grid,
  .feature-list-grid,
  .form-grid,
  .footer-main,
  .footer-contact {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .service-card {
    min-height: 300px;
  }

  .value-panel {
    min-height: 440px;
  }

  .value-panel-ring {
    width: 220px;
    height: 220px;
  }

  .value-panel-center {
    width: 118px;
    height: 118px;
  }

  .floating-system {
    width: 135px;
    min-height: 84px;
    padding: 13px;
  }

  .fs-1 { top: 28px; left: 18px; }
  .fs-2 { top: 44px; right: 15px; }
  .fs-3 { bottom: 35px; left: 16px; }
  .fs-4 { right: 17px; bottom: 25px; }

  .project-card {
    min-height: 390px;
  }

  .process-card::after {
    display: none;
  }

  .cta-band-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .cta-band .btn {
    width: 100%;
  }

  .quote-form-wrap {
    padding: 22px 17px;
  }

  .form-field.full {
    grid-column: auto;
  }

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

  .form-actions .btn {
    width: 100%;
  }

  .page-hero {
    padding: 72px 0 64px;
  }

  .footer-main {
    gap: 38px;
    padding-top: 60px;
  }

  .footer-col:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0 92px;
  }

  .mobile-action-bar {
    display: grid;
  }
}

@media (max-width: 420px) {
  .topbar-right a:last-child {
    font-size: 0.76rem;
  }

  .system-node span {
    display: none;
  }

  .system-visual {
    min-height: 400px;
  }

  .system-map {
    min-height: 318px;
  }

  .value-panel {
    min-height: 420px;
  }

  .floating-system {
    width: 122px;
  }

  .floating-system span {
    display: none;
  }

  .project-content {
    padding-inline: 22px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
.mt-28 { margin-top: 28px; }
.mt-30 { margin-top: 30px; }
.mt-55 { margin-top: 55px; }
