:root {
  --bg: #f7fbff;
  --ink: #07111f;
  --muted: #5d6a7c;
  --muted-2: #8d98a8;
  --brand: #1265da;
  --brand-2: #0b4fb4;
  --deep: #031833;
  --line: rgba(12, 38, 73, 0.1);
  --card: rgba(255, 255, 255, 0.78);
  --shadow: 0 24px 90px rgba(9, 48, 96, 0.14);
  --soft-shadow: 0 14px 50px rgba(9, 48, 96, 0.1);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 20px;
  font-synthesis: none;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 0%, rgba(18, 101, 218, 0.12), transparent 34%),
    radial-gradient(circle at 88% 6%, rgba(54, 154, 255, 0.14), transparent 32%),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

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

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: rgba(18, 101, 218, 0.18);
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.35;
  background-image: radial-gradient(rgba(7, 17, 31, 0.12) 0.7px, transparent 0.7px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.section-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 110px 0;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1240px, calc(100% - 32px));
  min-height: 72px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 16px 54px rgba(9, 48, 96, 0.16);
}

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

.logo img {
  display: block;
  width: 228px;
  height: auto;
  max-height: 48px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #556276;
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a {
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--brand);
}

.header-button,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 750;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.header-button {
  padding: 0 21px;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 14px 34px rgba(7, 17, 31, 0.13);
  font-size: 14px;
}

.header-button:hover {
  transform: translateY(-2px);
  background: var(--brand);
}

.primary-button {
  padding: 0 28px;
  color: #fff;
  background: var(--brand);
  box-shadow: 0 22px 60px rgba(18, 101, 218, 0.28);
}

.primary-button:hover {
  transform: translateY(-3px);
  background: var(--brand-2);
  box-shadow: 0 24px 74px rgba(18, 101, 218, 0.34);
}

.secondary-button {
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid rgba(12, 38, 73, 0.13);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 42px rgba(9, 48, 96, 0.08);
}

.secondary-button:hover {
  transform: translateY(-3px);
  border-color: rgba(18, 101, 218, 0.34);
  color: var(--brand);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(12, 38, 73, 0.1);
  border-radius: 50%;
  background: #fff;
}

.menu-toggle span {
  position: absolute;
  left: 13px;
  width: 18px;
  height: 2px;
  border-radius: 8px;
  background: var(--ink);
  transition: transform 220ms ease, top 220ms ease;
}

.menu-toggle span:first-child {
  top: 17px;
}

.menu-toggle span:last-child {
  top: 27px;
}

.menu-toggle.is-open span:first-child {
  top: 22px;
  transform: rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  top: 22px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 104px;
  left: 50%;
  z-index: 45;
  display: none;
  width: min(520px, calc(100% - 32px));
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
}

.mobile-menu.is-open {
  display: grid;
}

.mobile-menu a {
  padding: 16px 18px;
  border-radius: 18px;
  color: var(--ink);
  font-weight: 720;
}

.mobile-menu a:hover {
  background: rgba(18, 101, 218, 0.08);
  color: var(--brand);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  min-height: 100vh;
  gap: 56px;
  padding-top: 154px;
  padding-bottom: 90px;
}

.hero-bg {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background-image:
    linear-gradient(rgba(18, 101, 218, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 101, 218, 0.09) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.7;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.hero-content {
  max-width: 720px;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 820;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 10px 14px;
  border: 1px solid rgba(18, 101, 218, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 40px rgba(9, 48, 96, 0.08);
  backdrop-filter: blur(18px);
  text-transform: none;
  letter-spacing: 0;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 7px rgba(18, 101, 218, 0.14);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.92;
  font-weight: 780;
  letter-spacing: -0.065em;
}

h2 {
  max-width: 850px;
  color: var(--ink);
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 0.98;
  font-weight: 760;
  letter-spacing: -0.055em;
}

h3 {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.08;
  font-weight: 760;
  letter-spacing: -0.034em;
}

.lead {
  max-width: 700px;
  margin-top: 30px;
  color: #566579;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.55;
}

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

.hero-tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
}

.hero-tags div {
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
}

.hero-tags b,
.hero-tags span {
  display: block;
}

.hero-tags b {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 19px;
  letter-spacing: -0.025em;
}

.hero-tags span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.visual-shell {
  position: sticky;
  top: 120px;
  overflow: hidden;
  min-height: 640px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 46px;
  background:
    radial-gradient(circle at 75% 15%, rgba(56, 153, 255, 0.46), transparent 30%),
    linear-gradient(135deg, #051f42 0%, #082c5b 46%, #0b5dd0 100%);
  box-shadow: 0 34px 110px rgba(4, 35, 83, 0.26);
}

.visual-topbar {
  position: absolute;
  top: 22px;
  left: 24px;
  right: 24px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  font-size: 14px;
  font-weight: 760;
}

.visual-topbar div {
  display: flex;
  gap: 7px;
}

.visual-topbar i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
}

.map-scene {
  position: absolute;
  left: 50%;
  bottom: 112px;
  width: 700px;
  height: 540px;
  border-radius: 48px;
  background: linear-gradient(140deg, #eaf4ff, #ffffff 38%, #d5ebff 72%, #c9e8ce);
  box-shadow: 0 36px 88px rgba(0, 19, 52, 0.33);
  transform: translateX(-50%) perspective(1100px) rotateX(58deg) rotateZ(-37deg);
  transform-style: preserve-3d;
}

.map-grid {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image:
    linear-gradient(rgba(18, 101, 218, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 101, 218, 0.12) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.6;
}

.river {
  position: absolute;
  left: -12%;
  top: 54%;
  width: 126%;
  height: 70px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(25, 121, 235, 0.12), rgba(25, 121, 235, 0.5), rgba(25, 121, 235, 0.16));
  transform: rotate(18deg);
}

.road {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 0 0 2px rgba(18, 101, 218, 0.08);
}

.road::after {
  content: "";
  position: absolute;
  inset: 45% 0 auto 0;
  height: 4px;
  background: repeating-linear-gradient(90deg, rgba(18, 101, 218, 0.32) 0 20px, transparent 20px 38px);
}

.road-a {
  top: 240px;
  left: 56px;
  width: 600px;
  height: 36px;
  transform: rotate(-3deg);
}

.road-b {
  top: 130px;
  left: 325px;
  width: 42px;
  height: 360px;
  transform: rotate(7deg);
}

.road-c {
  top: 324px;
  left: 95px;
  width: 460px;
  height: 26px;
  transform: rotate(25deg);
}

.building {
  position: absolute;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(18, 101, 218, 0.78), rgba(7, 35, 72, 0.9));
  transform-style: preserve-3d;
}

.building::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.06));
  box-shadow: 0 24px 48px rgba(0, 20, 54, 0.18);
  transform: translateZ(36px);
}

.b1 { left: 90px; top: 90px; width: 104px; height: 74px; }
.b2 { left: 220px; top: 94px; width: 78px; height: 124px; }
.b3 { left: 432px; top: 98px; width: 120px; height: 88px; }
.b4 { left: 118px; top: 344px; width: 146px; height: 82px; }
.b5 { left: 458px; top: 326px; width: 104px; height: 128px; }

.point-cloud {
  position: absolute;
  inset: 38px 22px auto auto;
  width: 260px;
  height: 240px;
  border-radius: 40px;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.92) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(65, 160, 255, 0.82) 0 1px, transparent 1.3px);
  background-position: 0 0, 12px 16px;
  background-size: 28px 28px, 34px 34px;
  opacity: 0.72;
  mix-blend-mode: screen;
}

.marker {
  position: absolute;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 5px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--brand);
  box-shadow: 0 18px 34px rgba(18, 101, 218, 0.34);
  font-size: 13px;
  font-weight: 850;
  transform: translateZ(54px) rotateZ(37deg) rotateX(-58deg);
}

.m1 { left: 385px; top: 225px; }
.m2 { left: 250px; top: 310px; background: #041f43; }
.m3 { left: 542px; top: 248px; background: #ffd23d; color: #07111f; }

.metric-card,
.recommendation-card {
  position: absolute;
  z-index: 15;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 60px rgba(0, 20, 54, 0.22);
  backdrop-filter: blur(20px);
}

.metric-card {
  min-width: 170px;
  padding: 16px 18px;
}

.metric-card span {
  display: block;
  margin-bottom: 8px;
  color: #7a8799;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-card strong {
  color: var(--ink);
  font-size: 35px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.metric-a { top: 126px; left: 36px; }
.metric-b { top: 128px; right: 42px; }
.metric-c { bottom: 186px; right: 54px; }

.recommendation-card {
  left: 42px;
  bottom: 42px;
  width: min(390px, calc(100% - 84px));
  padding: 22px;
}

.recommendation-card b {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 22px;
  letter-spacing: -0.035em;
}

.recommendation-card p {
  color: #607086;
  line-height: 1.45;
}

.about {
  padding-top: 88px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.about-text {
  display: grid;
  gap: 22px;
  color: #536275;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.62;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  gap: 54px;
  align-items: end;
  margin-bottom: 42px;
}

.section-head p {
  color: #647084;
  font-size: 18px;
  line-height: 1.55;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.solution-card,
.project-card,
.why-item {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: var(--card);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.solution-card:hover,
.project-card:hover,
.why-item:hover {
  transform: translateY(-6px);
  border-color: rgba(18, 101, 218, 0.34);
  box-shadow: var(--shadow);
}

.solution-card {
  min-height: 320px;
  padding: 28px;
  border-radius: 32px;
}

.card-icon {
  position: relative;
  width: 72px;
  height: 72px;
  margin-bottom: 42px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(18, 101, 218, 0.12), rgba(18, 101, 218, 0.02));
  box-shadow: inset 0 0 0 1px rgba(18, 101, 218, 0.12);
}

.card-icon::before,
.card-icon::after {
  content: "";
  position: absolute;
}

.twin-icon::before {
  inset: 18px;
  border: 3px solid var(--brand);
  border-top-color: transparent;
  border-radius: 50%;
}

.twin-icon::after {
  left: 22px;
  bottom: 18px;
  width: 30px;
  height: 22px;
  border-radius: 5px 5px 3px 3px;
  background: var(--brand);
}

.platform-icon::before {
  left: 16px;
  right: 16px;
  top: 17px;
  height: 34px;
  border: 3px solid var(--brand);
  border-radius: 9px;
}

.platform-icon::after {
  left: 25px;
  right: 25px;
  bottom: 15px;
  height: 4px;
  border-radius: 999px;
  background: var(--brand);
}

.ai-icon::before {
  inset: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffffff, #2be4a8 22%, #1265da 72%);
  box-shadow: 0 0 34px rgba(18, 101, 218, 0.38);
}

.ai-icon::after {
  right: 11px;
  top: 12px;
  content: "AI";
  color: var(--ink);
  font-size: 12px;
  font-weight: 840;
}

.navigation-icon::before {
  left: 18px;
  top: 23px;
  width: 36px;
  height: 24px;
  border-radius: 50% 50% 50% 6px;
  background: var(--brand);
  transform: rotate(-45deg);
}

.navigation-icon::after {
  left: 31px;
  top: 30px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
}

.embedded-icon::before {
  left: 15px;
  top: 18px;
  width: 42px;
  height: 36px;
  border: 3px solid var(--brand);
  border-radius: 10px;
}

.embedded-icon::after {
  left: 12px;
  right: 12px;
  top: 12px;
  bottom: 12px;
  background: repeating-linear-gradient(90deg, transparent 0 8px, rgba(18, 101, 218, 0.45) 8px 11px);
}

.city-icon::before {
  left: 16px;
  bottom: 16px;
  width: 12px;
  height: 24px;
  border-radius: 3px;
  background: var(--brand);
  box-shadow: 18px -12px 0 var(--brand), 36px -24px 0 var(--brand);
}

.city-icon::after {
  left: 14px;
  right: 14px;
  top: 16px;
  height: 4px;
  border-radius: 999px;
  background: rgba(18, 101, 218, 0.35);
  box-shadow: 0 11px 0 rgba(18, 101, 218, 0.26), 0 22px 0 rgba(18, 101, 218, 0.18);
}

.solution-card h3 {
  margin-bottom: 14px;
}

.solution-card p,
.project-card p,
.why-item p {
  color: #647084;
  line-height: 1.55;
}

.projects-section {
  padding-top: 90px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.project-card {
  overflow: hidden;
  min-height: 480px;
  padding: 18px 18px 28px;
  border-radius: 34px;
}

.project-card.large {
  grid-column: span 1;
}

.project-visual {
  position: relative;
  overflow: hidden;
  height: 230px;
  margin-bottom: 26px;
  border-radius: 26px;
  background: linear-gradient(135deg, #dff0ff, #fff);
}

.project-visual::before,
.project-visual::after,
.project-visual span::before,
.project-visual span::after {
  content: "";
  position: absolute;
}

.city-visual {
  background:
    linear-gradient(135deg, rgba(3, 24, 51, 0.05), rgba(18, 101, 218, 0.06)),
    linear-gradient(150deg, #e9f4ff, #fff 46%, #d6eccf);
}

.city-visual::before {
  left: -18%;
  top: 52%;
  width: 136%;
  height: 44px;
  border-radius: 999px;
  background: rgba(18, 101, 218, 0.34);
  transform: rotate(18deg);
}

.city-visual::after {
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 101, 218, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 101, 218, 0.13) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.65;
}

.city-visual span::before {
  left: 48px;
  top: 44px;
  width: 58px;
  height: 92px;
  border-radius: 12px;
  background: #0c58bd;
  box-shadow: 88px 34px 0 #083467, 168px -4px 0 #1265da, 254px 48px 0 #082c5b;
  transform: skewY(-12deg);
}

.gauss-visual {
  background: linear-gradient(135deg, #07111f, #0a3977 50%, #1265da);
}

.gauss-visual::before {
  inset: 30px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.gauss-visual::after {
  left: 42px;
  top: 50px;
  width: 170px;
  height: 118px;
  border-radius: 22px;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.88) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(50, 180, 255, 0.88) 0 1px, transparent 1.4px);
  background-position: 0 0, 8px 12px;
  background-size: 18px 18px, 24px 24px;
  opacity: 0.8;
}

.gauss-visual span::before {
  right: 36px;
  bottom: 40px;
  width: 88px;
  height: 88px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  transform: rotate(-12deg);
}

.photo-visual {
  background: linear-gradient(135deg, #0a1018, #2d3643);
}

.photo-visual::before {
  left: 42px;
  top: 46px;
  width: 94px;
  height: 94px;
  border-radius: 28px;
  background: #151c26;
  box-shadow: 118px 0 0 #101720;
}

.photo-visual::after {
  left: 72px;
  top: 76px;
  width: 34px;
  height: 34px;
  border: 7px solid #3a4757;
  border-radius: 50%;
  background: #05080d;
  box-shadow: 118px 0 0 -7px #05080d, 118px 0 0 0 #3a4757;
}

.module-visual {
  background: linear-gradient(135deg, #eef4fb, #d7e5f2);
}

.module-visual::before {
  left: 48px;
  top: 62px;
  width: 220px;
  height: 74px;
  border: 6px solid #07111f;
  border-radius: 12px;
}

.module-visual::after {
  left: 76px;
  top: 37px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #07111f;
  box-shadow: 68px 0 0 #07111f, 136px 0 0 #07111f, 204px 0 0 #07111f;
}

.aero-visual {
  background: linear-gradient(135deg, #eef6ff, #ffffff 55%, #d8ecff);
}

.aero-visual::before {
  left: 40px;
  top: 86px;
  width: 240px;
  height: 44px;
  border-radius: 80% 40% 40% 70%;
  background: #d71920;
  box-shadow: 0 28px 0 -18px rgba(7, 17, 31, 0.2);
}

.aero-visual::after {
  left: 150px;
  top: 65px;
  width: 210px;
  height: 8px;
  border-radius: 999px;
  background: #07111f;
  box-shadow: -100px 62px 0 -1px #07111f;
}

.flow-visual {
  background: linear-gradient(135deg, #eff8ff, #f8fffb);
}

.flow-visual::before {
  left: -20px;
  top: 78px;
  width: 340px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(90deg, #84d468 0 34%, #ffd23d 34% 44%, #f14343 44% 67%, #84d468 67%);
  transform: rotate(-18deg);
}

.flow-visual::after {
  right: 36px;
  top: 36px;
  width: 100px;
  height: 138px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 42px rgba(9, 48, 96, 0.15);
}

.project-category {
  display: inline-block;
  margin: 0 10px 14px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card h3,
.project-card p {
  margin-left: 10px;
  margin-right: 10px;
}

.project-card h3 {
  margin-bottom: 12px;
}

.why-list {
  display: grid;
  gap: 14px;
}

.why-item {
  display: grid;
  grid-template-columns: 90px 1fr 0.95fr;
  gap: 34px;
  align-items: center;
  min-height: 118px;
  padding: 24px;
  border-radius: 30px;
}

.why-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  color: #fff;
  background: var(--brand);
  box-shadow: 0 16px 32px rgba(18, 101, 218, 0.26);
  font-weight: 850;
}

.why-item h3 {
  font-size: clamp(24px, 2.6vw, 36px);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
}

.partners-grid div {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #677489;
  background: #fff;
  box-shadow: 0 16px 42px rgba(9, 48, 96, 0.08);
  font-size: 14px;
  font-weight: 760;
  text-align: center;
}

.contacts {
  padding-bottom: 80px;
}

.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 46px;
  background:
    radial-gradient(circle at 10% 10%, rgba(18, 101, 218, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.contact-info {
  min-height: 560px;
  padding: 36px;
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 18%, rgba(79, 164, 255, 0.55), transparent 30%),
    linear-gradient(135deg, #031833, #063a7b 56%, #1265da);
}

.contact-info .section-label,
.contact-info h2,
.contact-info p {
  color: #fff;
}

.contact-info p {
  max-width: 550px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.58;
}

.contact-links {
  display: grid;
  gap: 14px;
  margin-top: 52px;
}

.contact-links a {
  display: block;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  color: #fff;
  font-size: 24px;
  font-weight: 780;
  letter-spacing: -0.035em;
  transition: background 180ms ease, transform 180ms ease;
}

.contact-links a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.13);
}

.contact-links span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 18px 8px;
}

.contact-form label {
  display: grid;
  gap: 9px;
  color: #39485d;
  font-size: 14px;
  font-weight: 760;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(12, 38, 73, 0.1);
  border-radius: 20px;
  outline: none;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(9, 48, 96, 0.06);
}

.contact-form input {
  height: 58px;
  padding: 0 18px;
}

.contact-form textarea {
  min-height: 140px;
  padding: 18px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(18, 101, 218, 0.48);
  box-shadow: 0 0 0 5px rgba(18, 101, 218, 0.09);
}

.contact-form small {
  color: #7a8798;
  font-size: 13px;
  line-height: 1.45;
}

.site-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 40px;
  color: #667488;
}

.site-footer img {
  width: 224px;
  height: auto;
  margin-bottom: 14px;
}

.site-footer p {
  max-width: 480px;
  line-height: 1.5;
}

.site-footer span {
  white-space: nowrap;
}

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

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

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    max-width: 900px;
  }

  .hero-visual {
    min-height: 580px;
  }

  .visual-shell {
    min-height: 580px;
  }

  .about-grid,
  .section-head,
  .contact-card {
    grid-template-columns: 1fr;
  }

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

  .why-item {
    grid-template-columns: 72px 1fr;
  }

  .why-item p {
    grid-column: 2;
  }

  .contact-info {
    min-height: auto;
  }
}

@media (max-width: 780px) {
  .section-shell {
    width: min(100% - 22px, 1240px);
    padding: 72px 0;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 10px 12px;
  }

  .logo img {
    width: 176px;
  }

  .header-button {
    display: none;
  }

  .mobile-menu {
    top: 88px;
    width: calc(100% - 20px);
  }

  .hero {
    padding-top: 126px;
    padding-bottom: 52px;
    gap: 30px;
  }

  h1 {
    font-size: clamp(40px, 12vw, 58px);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .lead {
    margin-top: 22px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-tags {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .visual-shell {
    min-height: 520px;
    border-radius: 32px;
  }

  .map-scene {
    bottom: 116px;
    width: 560px;
    height: 440px;
  }

  .metric-card {
    min-width: 138px;
    padding: 14px;
  }

  .metric-card strong {
    font-size: 28px;
  }

  .metric-a { top: 96px; left: 18px; }
  .metric-b { top: 96px; right: 18px; }
  .metric-c { display: none; }

  .recommendation-card {
    left: 18px;
    right: 18px;
    bottom: 20px;
    width: auto;
  }

  .about-grid {
    gap: 28px;
  }

  .section-head {
    gap: 20px;
    margin-bottom: 28px;
  }

  .solutions-grid,
  .projects-grid,
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: auto;
    padding: 24px;
  }

  .card-icon {
    margin-bottom: 30px;
  }

  .project-card {
    min-height: auto;
  }

  .project-visual {
    height: 205px;
  }

  .why-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-item p {
    grid-column: auto;
  }

  .partners-grid {
    padding: 18px;
  }

  .partners-grid div {
    aspect-ratio: auto;
    min-height: 76px;
    border-radius: 24px;
  }

  .contact-card {
    padding: 12px;
    border-radius: 34px;
  }

  .contact-info {
    padding: 26px;
    border-radius: 26px;
  }

  .contact-links a {
    font-size: 20px;
  }

  .contact-form {
    padding: 14px;
  }

  .site-footer {
    display: grid;
    padding-bottom: 28px;
  }

  .site-footer span {
    white-space: normal;
  }
}

@media (max-width: 460px) {
  .logo img {
    width: 152px;
  }

  .eyebrow {
    align-items: flex-start;
    line-height: 1.35;
  }

  .visual-topbar {
    left: 14px;
    right: 14px;
  }

  .metric-b {
    top: 170px;
  }
}

@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;
  }
}

/* v2: compact landing overrides */
.hero {
  grid-template-columns: 1fr;
  min-height: 92vh;
  gap: 0;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
}

.hero h1 {
  max-width: 1120px;
  font-size: clamp(52px, 8.3vw, 116px);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.hero .lead {
  max-width: 790px;
  margin-top: 32px;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.42;
}

.hero-orb {
  position: absolute;
  right: max(-140px, calc(50% - 680px));
  top: 150px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 28%, rgba(255, 255, 255, 0.92), rgba(75, 161, 255, 0.42) 24%, rgba(18, 101, 218, 0.18) 50%, transparent 72%);
  filter: blur(1px);
  opacity: 0.82;
  animation: floatOrb 9s ease-in-out infinite;
}

.hero-orb::before,
.hero-orb::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.hero-orb::before {
  inset: 58px;
  border: 1px solid rgba(18, 101, 218, 0.18);
  box-shadow: 0 0 0 46px rgba(18, 101, 218, 0.05);
}

.hero-orb::after {
  left: 48px;
  right: 72px;
  top: 210px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(18, 101, 218, 0.5), transparent);
  transform: rotate(-18deg);
}

@keyframes floatOrb {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-18px, 22px, 0) scale(1.04); }
}

.hero-tags {
  max-width: 780px;
  gap: 14px;
}

.hero-tags div {
  min-height: 76px;
  display: flex;
  align-items: center;
}

.hero-tags b {
  margin: 0;
  font-size: 18px;
}

.about.compact,
.about-grid.compact {
  align-items: center;
}

.about-text {
  gap: 0;
}

.section-head.compact-head,
.section-head.projects-head {
  grid-template-columns: 1fr;
  margin-bottom: 32px;
}

.section-head.compact-head p,
.section-head.projects-head p {
  display: none;
}

.solutions-grid.compact-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.solutions-grid.compact-grid .solution-card {
  min-height: 270px;
}

.solution-card p,
.project-card p,
.why-item p {
  font-size: 17px;
}

.projects-section {
  padding-top: 80px;
}

.projects-grid.photo-projects {
  grid-template-columns: repeat(6, 1fr);
}

.projects-grid.photo-projects .project-card {
  grid-column: span 2;
  min-height: 0;
  padding: 18px 18px 30px;
  background: rgba(255, 255, 255, 0.84);
}

.projects-grid.photo-projects .project-card.large {
  grid-column: span 3;
}

.project-photo {
  display: block;
  width: 100%;
  height: 300px;
  margin-bottom: 24px;
  border-radius: 26px;
  object-fit: cover;
  object-position: center;
  background: #edf5ff;
  box-shadow: inset 0 0 0 1px rgba(12, 38, 73, 0.08);
}

.project-card.large .project-photo {
  height: 360px;
}

.project-category {
  margin-top: 0;
}

.why-list.compact-why .why-item {
  grid-template-columns: 82px 0.9fr 1fr;
}

.contacts {
  padding-top: 76px;
}

.contact-info p {
  max-width: 440px;
}

@media (max-width: 1180px) {
  .solutions-grid.compact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .projects-grid.photo-projects .project-card,
  .projects-grid.photo-projects .project-card.large {
    grid-column: span 1;
  }

  .project-photo,
  .project-card.large .project-photo {
    height: 300px;
  }
}

@media (max-width: 780px) {
  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 64px);
    line-height: 0.96;
  }

  .hero .lead {
    font-size: 19px;
    line-height: 1.45;
  }

  .hero-orb {
    right: -210px;
    top: 150px;
    width: 330px;
    height: 330px;
    opacity: 0.5;
  }

  .hero-tags {
    grid-template-columns: 1fr;
  }

  .solutions-grid.compact-grid,
  .projects-grid.photo-projects {
    grid-template-columns: 1fr;
  }

  .project-photo,
  .project-card.large .project-photo {
    height: 250px;
  }

  .why-list.compact-why .why-item {
    grid-template-columns: 1fr;
  }
}


/* v4: финальная чистка, меньшая типографика и мягкие анимации */
:root {
  --radius-xl: 34px;
  --radius-lg: 26px;
}

.section-shell {
  padding: 88px 0;
}

.hero {
  min-height: 84vh;
  padding-top: 138px;
  padding-bottom: 70px;
}

.hero h1 {
  max-width: 940px;
  font-size: clamp(40px, 5.7vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero .lead {
  max-width: 680px;
  margin-top: 24px;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.5;
}

h2 {
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

h3 {
  font-size: 22px;
  line-height: 1.12;
}

.eyebrow,
.section-label {
  font-size: 12px;
}

.solutions-grid.compact-grid .solution-card {
  min-height: 230px;
}

.solution-card {
  padding: 24px;
  border-radius: 28px;
}

.solution-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.solution-card p,
.project-card p,
.why-item p {
  font-size: 15.5px;
  line-height: 1.48;
}

.card-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 28px;
  border-radius: 19px;
}

.projects-section {
  padding-top: 70px;
}

.project-card {
  border-radius: 30px;
}

.projects-grid.photo-projects .project-card {
  padding: 16px 16px 26px;
}

.project-photo {
  height: 250px;
  margin-bottom: 20px;
  border-radius: 22px;
  transition: transform 580ms ease, filter 580ms ease;
}

.project-card.large .project-photo {
  height: 310px;
}

.project-card:hover .project-photo {
  transform: scale(1.035);
  filter: saturate(1.06) contrast(1.03);
}

.project-card h3 {
  font-size: 24px;
  line-height: 1.08;
}

.project-category {
  font-size: 11px;
  margin-bottom: 10px;
}

.why-section .section-head {
  margin-bottom: 24px;
}

.why-list.compact-why .why-item,
.why-item {
  grid-template-columns: 70px 0.9fr 1fr;
  min-height: 96px;
  gap: 28px;
  padding: 18px 22px;
  border-radius: 26px;
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  font-size: 14px;
}

.why-item h3 {
  font-size: clamp(20px, 1.9vw, 28px);
  line-height: 1.08;
}

.solution-card,
.project-card,
.why-item,
.contact-card {
  will-change: transform;
}

.solution-card:nth-child(odd) .card-icon,
.why-item:nth-child(odd) .why-icon {
  animation: softFloatSmall 6.5s ease-in-out infinite;
}

.solution-card:nth-child(even) .card-icon,
.why-item:nth-child(even) .why-icon {
  animation: softFloatSmall 7.2s ease-in-out infinite reverse;
}

@keyframes softFloatSmall {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.reveal {
  transform: translateY(18px) scale(0.985);
  transition: opacity 720ms ease, transform 720ms ease;
}

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

@media (max-width: 1180px) {
  .hero h1 {
    font-size: clamp(38px, 7vw, 68px);
  }

  .project-photo,
  .project-card.large .project-photo {
    height: 260px;
  }
}

@media (max-width: 780px) {
  .section-shell {
    padding: 62px 0;
  }

  .hero {
    padding-top: 118px;
    padding-bottom: 46px;
  }

  .hero h1 {
    font-size: clamp(34px, 10.6vw, 52px);
    line-height: 1.02;
    letter-spacing: -0.05em;
  }

  .hero .lead {
    font-size: 17px;
  }

  h2 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .solutions-grid.compact-grid .solution-card {
    min-height: 0;
  }

  .project-photo,
  .project-card.large .project-photo {
    height: 225px;
  }

  .why-list.compact-why .why-item,
  .why-item {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
  }
}


/* v5: правки композиции, меньшая типографика, визуал на первом экране */
.section-shell {
  padding: 76px 0;
}

.hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  min-height: 82vh;
  gap: clamp(30px, 5vw, 76px);
  padding-top: 136px;
  padding-bottom: 64px;
}

.hero-content {
  max-width: 760px;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(36px, 4.85vw, 66px);
  line-height: 1.01;
  letter-spacing: -0.048em;
}

.hero .lead {
  max-width: 600px;
  margin-top: 22px;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.56;
}

.hero-actions {
  margin-top: 32px;
}

.hero-orb {
  right: max(-96px, calc(50% - 690px));
  top: 108px;
  width: 360px;
  height: 360px;
  opacity: 0.62;
}

.hero-preview {
  position: relative;
  overflow: hidden;
  align-self: center;
  width: min(100%, 520px);
  margin-left: auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 34px;
  background:
    radial-gradient(circle at 86% 12%, rgba(18, 101, 218, 0.24), transparent 32%),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 30px 90px rgba(9, 48, 96, 0.14);
  backdrop-filter: blur(18px);
}

.hero-preview::before {
  content: "";
  position: absolute;
  inset: auto 22px 20px 22px;
  height: 44%;
  border-radius: 28px;
  background: linear-gradient(180deg, transparent, rgba(18, 101, 218, 0.08));
  pointer-events: none;
}

.hero-preview-top {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 4px 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.hero-preview-top span {
  margin-right: auto;
}

.hero-preview-top i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(18, 101, 218, 0.32);
}

.hero-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 1.64 / 1;
  border-radius: 26px;
  object-fit: cover;
  object-position: center;
  box-shadow: inset 0 0 0 1px rgba(12, 38, 73, 0.08);
}

.hero-preview-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 40px rgba(9, 48, 96, 0.12);
  backdrop-filter: blur(16px);
  font-size: 13px;
  font-weight: 800;
}

.hero-preview-badge.primary {
  left: 32px;
  bottom: 34px;
}

.hero-preview-badge.secondary {
  right: 32px;
  top: 86px;
}

h2 {
  font-size: clamp(28px, 3vw, 42px);
}

h3 {
  font-size: 21px;
}

.section-head.compact-head,
.section-head.projects-head {
  margin-bottom: 26px;
}

.solutions-grid.compact-grid {
  gap: 18px;
}

.solutions-grid.compact-grid .solution-card {
  min-height: 216px;
}

.solution-card {
  padding: 22px;
  border-radius: 26px;
}

.solution-card h3 {
  font-size: 19px;
  line-height: 1.14;
}

.solution-card p,
.project-card p,
.why-item p {
  font-size: 15px;
  line-height: 1.52;
}

.card-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  border-radius: 18px;
}

.project-photo {
  height: 240px;
}

.project-card.large .project-photo {
  height: 290px;
}

.project-photo-contain {
  object-fit: contain;
  object-position: center;
  background: linear-gradient(135deg, #f7fbff, #edf5ff);
}

.project-card h3 {
  font-size: 22px;
}

.why-section .section-head {
  margin-bottom: 24px;
}

.why-list.compact-why .why-item,
.why-item {
  grid-template-columns: 62px minmax(260px, 0.9fr) minmax(280px, 1fr);
  gap: 24px;
  min-height: 108px;
  padding: 20px 22px;
  border-radius: 26px;
}

.why-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
}

.why-item h3 {
  font-size: clamp(19px, 1.55vw, 24px);
  line-height: 1.12;
}

.why-item p {
  max-width: 620px;
  color: #657184;
}

.solution-card,
.project-card,
.why-item,
.hero-preview {
  transition:
    opacity 720ms ease,
    transform 720ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.hero-preview:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 110px rgba(9, 48, 96, 0.18);
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-preview {
    width: min(100%, 680px);
    margin: 10px 0 0;
  }
}

@media (max-width: 1180px) {
  .project-photo,
  .project-card.large .project-photo {
    height: 250px;
  }
}

@media (max-width: 780px) {
  .section-shell {
    padding: 58px 0;
  }

  .hero {
    padding-top: 116px;
    padding-bottom: 44px;
  }

  .hero h1 {
    font-size: clamp(32px, 9.7vw, 48px);
    line-height: 1.04;
  }

  .hero .lead {
    font-size: 16px;
  }

  .hero-preview {
    padding: 12px;
    border-radius: 28px;
  }

  .hero-preview img {
    border-radius: 22px;
  }

  .hero-preview-badge {
    display: none;
  }

  .solutions-grid.compact-grid .solution-card {
    min-height: 0;
  }

  .project-photo,
  .project-card.large .project-photo {
    height: 220px;
  }

  .why-list.compact-why .why-item,
  .why-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* v6: spacing and copy fixes */
.hero {
  grid-template-columns: minmax(0, 0.88fr) minmax(410px, 0.72fr);
  align-items: center;
  min-height: 88vh;
  gap: clamp(56px, 6vw, 96px);
  padding-top: 148px;
  padding-bottom: 82px;
}

.hero-content {
  max-width: 760px;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(36px, 4.55vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.hero .lead {
  max-width: 610px;
  margin-top: 28px;
  font-size: clamp(17px, 1.28vw, 20px);
  line-height: 1.62;
}

.hero-actions {
  gap: 18px;
  margin-top: 42px;
}

.hero-orb {
  right: max(-160px, calc(50% - 780px));
  top: 96px;
  width: 420px;
  height: 420px;
  opacity: 0.38;
}

.hero-preview {
  width: min(100%, 560px);
  transform: translateY(8px);
}

.hero-preview:hover {
  transform: translateY(0) scale(1.012);
}

.section-shell {
  padding: 86px 0;
}

.section-head.compact-head,
.section-head.projects-head {
  margin-bottom: 34px;
}

.solutions-grid.compact-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.solutions-grid.compact-grid .solution-card {
  min-height: 252px;
}

.solution-card {
  padding: 24px;
}

.solution-card h3 {
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.18;
}

.solution-card p {
  font-size: 15px;
  line-height: 1.58;
}

.card-icon {
  margin-bottom: 30px;
}

.project-photo.module-photo {
  object-fit: contain;
  object-position: center;
  background: linear-gradient(135deg, #f7fbff, #edf5ff);
  padding: 10px;
}

.why-section .section-head {
  margin-bottom: 30px;
}

.why-list.compact-why .why-item,
.why-item {
  grid-template-columns: 64px minmax(310px, 0.88fr) minmax(360px, 1fr);
  gap: 28px;
  min-height: 122px;
  padding: 24px 26px;
}

.why-item h3 {
  font-size: clamp(20px, 1.65vw, 26px);
}

.why-item p {
  font-size: 16px;
  line-height: 1.58;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    max-width: 920px;
  }

  .hero h1 {
    max-width: 900px;
  }

  .hero-preview {
    width: min(100%, 720px);
    margin: 8px 0 0;
  }

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

  .why-list.compact-why .why-item,
  .why-item {
    grid-template-columns: 64px 1fr;
  }

  .why-item p {
    grid-column: 2;
  }
}

@media (max-width: 780px) {
  .hero {
    gap: 34px;
    padding-top: 122px;
    padding-bottom: 54px;
  }

  .hero h1 {
    font-size: clamp(32px, 9.3vw, 46px);
    line-height: 1.08;
  }

  .hero-actions {
    margin-top: 30px;
  }

  .solutions-grid.compact-grid {
    grid-template-columns: 1fr;
  }

  .solutions-grid.compact-grid .solution-card {
    min-height: 0;
  }

  .why-list.compact-why .why-item,
  .why-item {
    grid-template-columns: 1fr;
  }

  .why-item p {
    grid-column: auto;
  }
}

/* clearer service icons */
.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon-graphic {
  width: 64px;
  height: 64px;
  display: block;
}

.platform-icon::before,
.platform-icon::after,
.twin-icon::before,
.twin-icon::after,
.ai-icon::before,
.ai-icon::after,
.navigation-icon::before,
.navigation-icon::after,
.embedded-icon::before,
.embedded-icon::after {
  content: none !important;
}

.project-photo.module-photo {
  object-fit: contain;
  object-position: center;
  background: linear-gradient(135deg, #f7fbff, #edf5ff);
  padding: 0;
}

/* v11 cleaner icons and better photo fills */
.card-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 26px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(18, 101, 218, 0.08), rgba(18, 101, 218, 0.03));
  box-shadow: inset 0 0 0 1px rgba(18, 101, 218, 0.10);
}

.card-icon-graphic {
  width: 46px;
  height: 46px;
}

.fill-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
}

.project-card.large .fill-photo {
  height: 360px;
}

.project-photo.module-photo.fill-photo {
  object-fit: cover;
  object-position: center 40%;
  background: #eef4fb;
  padding: 0;
}

.project-photo.aero-photo.fill-photo {
  object-fit: cover;
  object-position: center;
}


.form-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}


.status-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    radial-gradient(circle at 80% 20%, rgba(18, 101, 218, 0.22), transparent 34%),
    linear-gradient(135deg, #eef6ff, #ffffff);
}

.status-card {
  width: min(720px, 100%);
  padding: 48px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 32px 90px rgba(7, 32, 70, 0.16);
}

.status-card img {
  width: 260px;
  max-width: 100%;
  margin-bottom: 36px;
}

.status-card h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 5vw, 64px);
}

.status-card p {
  max-width: 520px;
  margin: 0 0 28px;
  color: #647084;
  font-size: 20px;
  line-height: 1.55;
}
