:root {
  --ink: #091522;
  --muted: #647184;
  --paper: #f5f8fc;
  --white: #ffffff;
  --blue: #2864ff;
  --blue-dark: #1647d8;
  --green: #8df05c;
  --teal: #00bca8;
  --line: #dce4ed;
  --night: #07121d;
  --shadow: 0 24px 70px rgba(9, 21, 34, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, sans-serif;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 88% 10%, rgba(40, 100, 255, 0.14), transparent 29%),
    radial-gradient(circle at 8% 48%, rgba(0, 188, 168, 0.08), transparent 25%);
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 84px;
  padding: 0 clamp(22px, 5vw, 76px);
  display: flex;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid rgba(220, 228, 237, 0.85);
  background: rgba(245, 248, 252, 0.84);
  backdrop-filter: blur(20px);
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; }
.brand span {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 10px 24px rgba(40, 100, 255, 0.24);
}
.brand strong {
  display: block;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.brand small {
  margin-top: 4px;
  display: block;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0;
}
.header-tagline {
  margin: 0 auto 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.header nav { display: flex; gap: 4px; }
.header nav a {
  padding: 11px 15px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: 0.25s ease;
}
.header nav a:hover, .header nav a.active {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(9, 21, 34, 0.08);
}
.menu {
  display: none;
  padding: 11px 16px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-weight: 800;
}

.future-hero {
  position: relative;
  min-height: calc(100vh - 84px);
  padding: clamp(70px, 9vw, 130px) clamp(22px, 6vw, 94px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.72fr);
  gap: 7vw;
  align-items: center;
  overflow: hidden;
}
.future-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(40, 100, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 100, 255, 0.09) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 75% 35%, #000 0 34%, transparent 68%);
}
.future-hero::after {
  content: "";
  position: absolute;
  right: -10vw;
  bottom: -30vw;
  width: 66vw;
  height: 66vw;
  border: 1px solid rgba(40, 100, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 7vw rgba(40, 100, 255, 0.025), 0 0 0 14vw rgba(0, 188, 168, 0.025);
}
.future-copy { position: relative; z-index: 2; }
.eyebrow, .page-hero > p {
  margin: 0;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.future-copy h1 {
  max-width: 980px;
  margin: 20px 0 26px;
  font-size: clamp(56px, 7.6vw, 116px);
  line-height: 0.91;
  letter-spacing: -0.08em;
}
.future-copy > p:not(.eyebrow) {
  max-width: 770px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.7;
}
.actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 34px; }
.btn {
  min-height: 52px;
  padding: 15px 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(9, 21, 34, 0.18); }
.btn.secondary { color: var(--ink); background: transparent; }
.btn.secondary:hover { color: var(--white); background: var(--blue); border-color: var(--blue); }
.future-visual { min-height: 560px; display: grid; place-items: center; position: relative; z-index: 2; }
.future-visual .orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(40, 100, 255, 0.26);
  background: linear-gradient(135deg, rgba(40, 100, 255, 0.16), rgba(0, 188, 168, 0.06));
  animation: breathe 7s ease-in-out infinite alternate;
}
.future-visual .o1 { width: 490px; height: 490px; }
.future-visual .o2 { width: 350px; height: 350px; animation-delay: -2s; }
.future-visual .o3 { width: 210px; height: 210px; animation-delay: -4s; }
.law-emblem {
  position: absolute;
  z-index: 3;
  top: 10px;
  right: 42px;
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(40,100,255,0.2);
  border-radius: 50%;
  background: rgba(255,255,255,0.68);
  box-shadow: 0 22px 55px rgba(9,21,34,0.1);
  backdrop-filter: blur(14px);
  animation: floatSoft 5.5s ease-in-out infinite alternate;
}
.law-emblem svg {
  width: 78px;
  height: 78px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.future-visual article {
  position: relative;
  z-index: 2;
  width: min(420px, 92%);
  padding: 35px;
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 28px;
  background: rgba(255,255,255,0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.future-visual small {
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.future-visual strong {
  margin: 25px 0 18px;
  display: block;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}
.future-visual p { margin: 0; color: var(--muted); line-height: 1.65; }
.hero-proof {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.hero-proof span {
  padding: 9px 11px;
  border: 1px solid rgba(40,100,255,0.12);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(245,248,252,0.88);
  font-size: 12px;
  font-weight: 800;
}
.floating-card {
  position: absolute;
  z-index: 4;
  width: 178px;
  padding: 17px;
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 20px;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 20px 52px rgba(9,21,34,0.12);
  backdrop-filter: blur(16px);
  animation: floatSoft 6s ease-in-out infinite alternate;
}
.floating-card span {
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  display: block;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}
.floating-card strong { display: block; color: var(--ink); font-size: 14px; }
.floating-card small { margin-top: 4px; display: block; color: var(--muted); letter-spacing: 0; text-transform: none; }
.card-pen { left: 0; bottom: 76px; }
.card-shield { right: 0; bottom: 26px; animation-delay: -2.5s; }
.card-pen span {
  clip-path: polygon(50% 0, 64% 16%, 54% 76%, 50% 100%, 46% 76%, 36% 16%);
}
.card-shield span {
  clip-path: polygon(50% 0, 88% 16%, 80% 72%, 50% 100%, 20% 72%, 12% 16%);
}

.row-section { padding: clamp(76px, 9vw, 130px) clamp(22px, 6vw, 94px); background: var(--white); }
.row-section.soft { background: var(--paper); }
.row-section.dark {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(40,100,255,0.12), transparent 42%),
    var(--night);
  overflow: hidden;
}
.row-section.dark::after {
  content: "";
  position: absolute;
  right: -200px;
  top: -220px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(141, 240, 92, 0.18);
  border-radius: 50%;
}
.row-head {
  position: relative;
  z-index: 1;
  margin-bottom: 46px;
  display: grid;
  grid-template-columns: minmax(150px, 0.36fr) 1fr;
  gap: 7vw;
}
.row-head > p {
  margin: 5px 0 0;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.dark .row-head > p { color: var(--green); }
.row-head h2 {
  margin: 0;
  font-size: clamp(40px, 5.2vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}
.row-head div > p {
  max-width: 880px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.graphic-strip {
  position: relative;
  z-index: 1;
  margin: -12px 0 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.graphic-strip div {
  min-height: 128px;
  padding: 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 80% 18%, rgba(0,188,168,0.14), transparent 36%),
    var(--paper);
  overflow: hidden;
}
.graphic-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--blue));
  font-size: 28px;
  font-weight: 900;
}
.graphic-strip strong { max-width: 150px; font-size: 20px; line-height: 1.05; letter-spacing: -0.04em; text-align: right; }
.document-visual {
  position: relative;
  z-index: 1;
  margin: -8px 0 38px auto;
  max-width: 920px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.doc-card {
  min-height: 176px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border: 1px solid rgba(40,100,255,0.12);
  border-radius: 24px;
  background: linear-gradient(150deg, #fff, rgba(255,255,255,0.72));
  box-shadow: 0 16px 40px rgba(9,21,34,0.07);
  transform: rotate(var(--tilt, -1deg));
}
.doc-card:nth-child(2) { --tilt: 1.2deg; }
.doc-card:nth-child(3) { --tilt: -0.4deg; }
.doc-card span {
  height: 8px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: #dde8f4;
}
.doc-card span:nth-child(1) { width: 70%; background: rgba(40,100,255,0.22); }
.doc-card span:nth-child(2) { width: 92%; }
.doc-card span:nth-child(3) { width: 54%; }
.doc-card strong { margin-top: 18px; font-size: 18px; letter-spacing: -0.035em; }
.risk-orbit {
  position: relative;
  z-index: 1;
  min-height: 260px;
  margin: -8px 0 42px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 34px;
  background:
    radial-gradient(circle at center, rgba(141,240,92,0.15), transparent 17%),
    radial-gradient(circle at 20% 20%, rgba(40,100,255,0.22), transparent 22%),
    rgba(255,255,255,0.035);
  overflow: hidden;
}
.risk-orbit::before, .risk-orbit::after {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 50%;
}
.risk-orbit::after { inset: 74px 21%; border-color: rgba(141,240,92,0.14); }
.risk-center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--night);
  background: var(--green);
  font-weight: 900;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 46px rgba(141,240,92,0.24);
}
.risk-orbit span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  color: #e8f1f8;
  background: rgba(7,18,29,0.58);
  font-size: 13px;
  font-weight: 800;
  animation: pulseDot 3.4s ease-in-out infinite alternate;
}
.risk-orbit span:nth-of-type(2) { animation-delay: -0.7s; }
.risk-orbit span:nth-of-type(3) { animation-delay: -1.4s; }
.risk-orbit span:nth-of-type(4) { animation-delay: -2.1s; }
.process-graphic {
  position: relative;
  z-index: 1;
  margin: -4px 0 38px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
}
.process-graphic span {
  min-height: 86px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(9,21,34,0.06);
  font-weight: 900;
}
.process-graphic i {
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}
.verdict-visual {
  position: relative;
  z-index: 1;
  margin: -8px 0 38px auto;
  max-width: 680px;
  padding: 30px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 25px;
  align-items: center;
  border: 1px solid rgba(40,100,255,0.12);
  border-radius: 30px;
  background: linear-gradient(135deg, #fff, rgba(255,255,255,0.68));
  box-shadow: 0 18px 50px rgba(9,21,34,0.07);
}
.gavel {
  position: relative;
  height: 100px;
}
.gavel::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 25px;
  width: 76px;
  height: 28px;
  border-radius: 9px;
  background: var(--ink);
  transform: rotate(-24deg);
}
.gavel::after {
  content: "";
  position: absolute;
  left: 54px;
  top: 48px;
  width: 76px;
  height: 12px;
  border-radius: 999px;
  background: var(--blue);
  transform: rotate(43deg);
}
.gavel span {
  position: absolute;
  left: 3px;
  bottom: 6px;
  width: 86px;
  height: 14px;
  border-radius: 999px;
  background: var(--teal);
}
.verdict-visual p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.05em;
}
.legal-rows { position: relative; z-index: 1; border-top: 1px solid var(--line); }
.dark .legal-rows { border-color: rgba(255,255,255,0.18); }
.legal-rows article {
  position: relative;
  min-height: 128px;
  padding: 30px 0;
  display: grid;
  grid-template-columns: 72px minmax(260px, 0.72fr) 1fr;
  gap: 32px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  transition: padding 0.35s ease, background 0.35s ease;
}
.dark .legal-rows article { border-color: rgba(255,255,255,0.18); }
.legal-rows article::before {
  content: "";
  position: absolute;
  inset: 0 -18px;
  z-index: -1;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(40,100,255,0.07), rgba(0,188,168,0.03));
  opacity: 0;
  transform: scaleX(0.98);
  transition: 0.35s ease;
}
.legal-rows article:hover::before { opacity: 1; transform: scaleX(1); }
.legal-rows article:hover { padding-left: 14px; padding-right: 14px; }
.legal-rows span { color: var(--teal); font-weight: 900; }
.legal-rows h3 { margin: 0; font-size: clamp(23px, 2.4vw, 34px); line-height: 1.05; letter-spacing: -0.045em; }
.legal-rows p { margin: 0; color: var(--muted); line-height: 1.7; }
.dark .legal-rows p { color: #b7c2cf; }
.row-detail ul { margin: 16px 0 0; padding: 0; display: grid; gap: 10px; list-style: none; }
.row-detail li { position: relative; padding-left: 23px; color: var(--muted); line-height: 1.5; }
.dark .row-detail li { color: #d1d9e2; }
.row-detail li::before { content: "↗"; position: absolute; left: 0; color: var(--teal); font-weight: 900; }
.row-detail aside {
  margin-top: 24px;
  padding: 22px;
  border-radius: 18px;
  background: var(--paper);
}
.summary-note {
  max-width: 900px;
  margin: 42px 0 0 auto;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 700;
  line-height: 1.5;
}
blockquote {
  position: relative;
  z-index: 1;
  margin: 48px 0 0;
  padding: clamp(28px, 4vw, 52px);
  border: 0;
  border-left: 5px solid var(--green);
  color: var(--white);
  background: linear-gradient(90deg, rgba(40,100,255,0.22), rgba(255,255,255,0.05));
  font-size: clamp(24px, 3vw, 44px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.035em;
}
.row-section:not(.dark) blockquote { color: var(--ink); background: linear-gradient(90deg, rgba(40,100,255,0.09), rgba(0,188,168,0.05)); }

.page-hero {
  position: relative;
  min-height: 54vh;
  padding: clamp(80px, 10vw, 150px) clamp(22px, 6vw, 94px);
  display: flex;
  flex-direction: column;
  justify-content: end;
  background:
    linear-gradient(110deg, rgba(40,100,255,0.12), transparent 46%),
    radial-gradient(circle at 80% 20%, rgba(0,188,168,0.15), transparent 26%);
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -140px;
  top: -150px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(40,100,255,0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(0,188,168,0.035);
}
.page-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 1150px;
  margin: 18px 0 0;
  font-size: clamp(52px, 7vw, 106px);
  line-height: 0.94;
  letter-spacing: -0.075em;
}
.page-hero > p { position: relative; z-index: 1; }
.page-hero-graphic {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  margin-top: 36px;
}
.service-dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.service-dashboard div {
  min-height: 132px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(40,100,255,0.12);
  border-radius: 24px;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 18px 42px rgba(9,21,34,0.07);
  backdrop-filter: blur(14px);
}
.service-dashboard span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  font-weight: 900;
}
.service-dashboard strong { font-size: 20px; line-height: 1.1; letter-spacing: -0.04em; }
.service-visual-grid, .industry-visual-grid {
  position: relative;
  z-index: 1;
  margin: -14px 0 38px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.service-visual-card, .industry-visual-grid div {
  min-height: 166px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 78% 18%, rgba(40,100,255,0.16), transparent 35%),
    var(--paper);
  box-shadow: 0 16px 38px rgba(9,21,34,0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.service-visual-card:hover, .industry-visual-grid div:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 55px rgba(9,21,34,0.1);
}
.service-visual-card span, .industry-visual-grid span {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  background: var(--ink);
  font-size: 24px;
  font-weight: 900;
}
.service-visual-card strong, .industry-visual-grid strong {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.05;
  letter-spacing: -0.045em;
}
.service-visual-card small { margin-top: 8px; color: var(--muted); line-height: 1.4; }
.sector-radar {
  min-height: 270px;
  border: 1px solid rgba(40,100,255,0.12);
  border-radius: 34px;
  background:
    radial-gradient(circle at center, rgba(0,188,168,0.2), transparent 14%),
    radial-gradient(circle at 30% 30%, rgba(40,100,255,0.18), transparent 25%),
    rgba(255,255,255,0.72);
  box-shadow: 0 20px 55px rgba(9,21,34,0.08);
  overflow: hidden;
}
.sector-radar::before, .sector-radar::after {
  content: "";
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(40,100,255,0.14);
  border-radius: 50%;
}
.sector-radar::after { inset: 74px 22%; border-color: rgba(0,188,168,0.22); }
.sector-radar strong {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 42px rgba(40,100,255,0.26);
}
.sector-radar span {
  position: absolute;
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(9,21,34,0.08);
  animation: pulseDot 3.4s ease-in-out infinite alternate;
}
.sector-radar span:nth-child(1) { left: 12%; top: 22%; }
.sector-radar span:nth-child(2) { right: 13%; top: 24%; animation-delay: -0.8s; }
.sector-radar span:nth-child(3) { left: 16%; bottom: 20%; animation-delay: -1.6s; }
.sector-radar span:nth-child(4) { right: 12%; bottom: 22%; animation-delay: -2.4s; }
.industry-visual-grid { grid-template-columns: repeat(5, 1fr); }
.industry-visual-grid div { min-height: 142px; }
.contact-graphic {
  margin: 0 0 22px;
  padding: 24px;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(40,100,255,0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 18%, rgba(0,188,168,0.14), transparent 38%),
    var(--white);
  box-shadow: 0 16px 40px rgba(9,21,34,0.07);
}
.contact-scale {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--blue));
  font-size: 32px;
  font-weight: 900;
}
.contact-graphic p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
}

.contact-layout {
  min-height: calc(100vh - 84px);
  padding: clamp(68px, 8vw, 120px) clamp(22px, 6vw, 94px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: 7vw;
  align-items: center;
}
.contact-layout form {
  padding: clamp(26px, 4vw, 46px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow);
}
.contact-layout label { display: grid; gap: 9px; color: var(--muted); font-size: 12px; font-weight: 800; }
.contact-layout label:nth-of-type(5), .contact-layout label:nth-of-type(6), .contact-layout .btn, .form-status { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: 0;
  color: var(--ink);
  background: var(--white);
  transition: 0.25s ease;
}
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(40,100,255,0.1); }
textarea { min-height: 130px; resize: vertical; }
.form-status { min-height: 20px; margin: 0; color: var(--teal); font-weight: 700; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.contact-meta h1 {
  margin: 16px 0 42px;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.07em;
}
.contact-meta > div { padding: 20px 0; border-top: 1px solid var(--line); }
.contact-meta small { color: var(--blue); font-weight: 900; text-transform: uppercase; letter-spacing: 0.13em; }
.contact-meta div p, .contact-meta div > a { margin: 8px 0 0; display: block; color: var(--muted); font-size: 18px; }
.contact-meta div > a:hover { color: var(--blue); }
.contact-info-line {
  display: flex !important;
  align-items: center;
  gap: 10px;
}
.contact-info-line .footer-icon {
  color: var(--blue);
  border-color: rgba(40,100,255,0.18);
}
.contact-info-line .phone-blank {
  background: rgba(9,21,34,0.18);
}

.site-footer {
  position: relative;
  padding: 112px clamp(28px, 6vw, 118px) 32px;
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.7fr 1fr;
  column-gap: clamp(35px, 6vw, 110px);
  row-gap: 90px;
  color: #eef3f8;
  background:
    linear-gradient(rgba(7,18,29,0.93), rgba(7,18,29,0.97)),
    radial-gradient(circle at 25% 20%, #1c3448, transparent 40%),
    var(--night);
  border-top: 4px solid var(--blue);
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background-image: linear-gradient(110deg, transparent 48%, rgba(255,255,255,0.025) 50%, transparent 52%);
  background-size: 9px 9px;
}
.site-footer > * { position: relative; z-index: 1; }
.footer-logo { display: flex; align-items: center; gap: 14px; }
.footer-logo > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid #f2f5f8;
  border-radius: 50%;
  font-weight: 900;
}
.footer-logo strong { font-size: 25px; }
.footer-logo small { margin-top: 5px; display: block; font-size: 12px; letter-spacing: 0; }
.footer-brand > p { margin: 46px 0 0; color: #98a5b4; font-size: 17px; line-height: 1.9; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.footer-column h3 {
  margin: 3px 0 26px;
  color: #8f9baa;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.footer-column a { font-size: 16px; font-weight: 600; transition: color 0.2s ease, transform 0.2s ease; }
.footer-column a:hover { color: var(--green); transform: translateX(3px); }
.footer-conversation .footer-cta {
  width: 100%;
  padding-bottom: 14px;
  color: var(--green);
  border-bottom: 1px solid var(--green);
  font-size: 20px;
}
.footer-conversation p { margin: 0; color: #8f9baa; }
.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8f9baa;
}
.footer-icon {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: var(--green);
  font-size: 12px;
  flex: 0 0 24px;
}
.footer-icon svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.phone-blank {
  min-width: 120px;
  height: 1px;
  display: inline-block;
  background: rgba(255,255,255,0.22);
}
.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255,255,255,0.16);
  color: #7f8b99;
  font-size: 12px;
}
.footer-bottom p { margin: 0; }
.footer-bottom p:last-child { text-align: right; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.reveal.visible { opacity: 1; transform: none; }
.delay { transition-delay: 0.16s; }
.legal-rows article.reveal:nth-child(2) { transition-delay: 0.06s; }
.legal-rows article.reveal:nth-child(3) { transition-delay: 0.12s; }
.legal-rows article.reveal:nth-child(4) { transition-delay: 0.18s; }
.legal-rows article.reveal:nth-child(5) { transition-delay: 0.24s; }
.legal-rows article.reveal:nth-child(6) { transition-delay: 0.3s; }
@keyframes breathe {
  to { transform: translate(18px, -14px) scale(1.06); opacity: 0.68; }
}
@keyframes floatSoft {
  to { transform: translateY(-14px) rotate(1.5deg); }
}
@keyframes pulseDot {
  to { transform: translateY(-5px); box-shadow: 0 0 30px rgba(141,240,92,0.18); }
}

@media (max-width: 1080px) {
  .header-tagline { display: none; }
  .future-hero { grid-template-columns: 1fr; }
  .future-visual { min-height: 430px; }
  .card-pen { left: 8%; }
  .card-shield { right: 8%; }
  .graphic-strip, .document-visual { grid-template-columns: 1fr 1fr; }
  .service-dashboard, .service-visual-grid, .industry-visual-grid { grid-template-columns: 1fr 1fr; }
  .process-graphic { grid-template-columns: 1fr; gap: 10px; }
  .process-graphic i { width: 2px; height: 26px; justify-self: center; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-bottom { grid-column: 1 / -1; }
}
@media (max-width: 820px) {
  .header { min-height: 74px; }
  .menu { display: block; margin-left: auto; }
  .header nav {
    position: absolute;
    top: 74px;
    left: 16px;
    right: 16px;
    padding: 12px;
    display: none;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,0.98);
    box-shadow: var(--shadow);
  }
  .header.open nav { display: flex; }
  .future-hero { min-height: auto; }
  .future-copy h1 { font-size: clamp(50px, 13vw, 76px); }
  .row-head, .legal-rows article, .contact-layout { grid-template-columns: 1fr; }
  .graphic-strip, .document-visual { grid-template-columns: 1fr; }
  .service-dashboard, .service-visual-grid, .industry-visual-grid { grid-template-columns: 1fr; }
  .sector-radar { min-height: 330px; }
  .risk-orbit { min-height: 340px; }
  .risk-orbit span { font-size: 12px; }
  .verdict-visual { grid-template-columns: 1fr; }
  .legal-rows article { gap: 13px; }
  .legal-rows article:hover { padding-left: 0; padding-right: 0; }
  .contact-layout { align-items: start; }
  .contact-meta { grid-row: 1; }
}
@media (max-width: 600px) {
  .brand strong { font-size: 14px; }
  .brand small { font-size: 10px; letter-spacing: 0; }
  .future-visual { min-height: 340px; }
  .future-visual .o1 { width: 330px; height: 330px; }
  .future-visual .o2 { width: 240px; height: 240px; }
  .future-visual .o3 { width: 140px; height: 140px; }
  .future-visual article { padding: 26px; }
  .law-emblem { width: 86px; height: 86px; right: 0; top: 0; }
  .law-emblem svg { width: 54px; height: 54px; }
  .floating-card { position: relative; inset: auto; width: min(220px, 48%); padding: 14px; }
  .future-visual { grid-template-columns: 1fr 1fr; gap: 10px; }
  .future-visual article { grid-column: 1 / -1; width: 100%; }
  .future-visual .orb, .law-emblem { grid-column: 1 / -1; }
  .graphic-strip div { min-height: 112px; }
  .risk-center { width: 94px; height: 94px; }
  .risk-orbit span { position: static; display: inline-flex; margin: 10px; }
  .risk-orbit { padding: 130px 12px 20px; text-align: center; }
  .risk-orbit::before, .risk-orbit::after { inset: 30px; }
  .verdict-visual { padding: 24px; }
  .sector-radar span { position: static; display: inline-flex; margin: 10px; }
  .sector-radar { padding: 120px 12px 20px; text-align: center; }
  .sector-radar::before, .sector-radar::after { inset: 30px; }
  .contact-graphic { grid-template-columns: 1fr; }
  .actions { flex-direction: column; }
  .actions .btn { width: 100%; }
  .contact-layout form { grid-template-columns: 1fr; }
  .contact-layout label { grid-column: 1 / -1; }
  .site-footer { grid-template-columns: 1fr; row-gap: 55px; padding-top: 78px; }
  .footer-bottom { grid-column: 1; flex-direction: column; }
  .footer-bottom p:last-child { text-align: left; }
}

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