:root {
  color-scheme: dark;
  --bg: #05070a;
  --bg-soft: #081019;
  --panel: rgba(10, 18, 29, 0.74);
  --panel-strong: rgba(14, 24, 39, 0.92);
  --line: rgba(138, 148, 166, 0.22);
  --line-strong: rgba(0, 245, 212, 0.34);
  --text: #f4f7fb;
  --muted: #aab4c5;
  --steel: #8a94a6;
  --blue: #00a3ff;
  --cyan: #00f5d4;
  --green: #39ff88;
  --amber: #ffcf66;
  --danger: #ff5f73;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --shadow-tight: 0 18px 48px rgba(0, 0, 0, 0.32);
  --glass: linear-gradient(180deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.028));
  --radius: 8px;
  --radius-lg: 14px;
  --container: min(1160px, calc(100vw - 40px));
  --header-h: 76px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(0, 163, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 86% 18%, rgba(0, 245, 212, 0.13), transparent 24rem),
    linear-gradient(180deg, #05070a 0%, #07111a 44%, #05070a 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection {
  background: rgba(0, 245, 212, 0.34);
  color: var(--text);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image: url("../assets/background-grid.svg");
  background-size: 720px 720px;
  opacity: 0.22;
  pointer-events: none;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgba(5, 7, 10, 0.2), rgba(5, 7, 10, 0.88));
  pointer-events: none;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(0, 245, 212, 0.72);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--cyan);
  color: #001016;
  border-radius: var(--radius);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

.section-wrap {
  position: relative;
  padding: 112px 0;
}

.section-wrap::before {
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(0, 245, 212, 0.16), transparent);
  pointer-events: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(5, 7, 10, 0.64);
  backdrop-filter: blur(22px) saturate(1.22);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 7, 10, 0.86);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
}

.nav-shell {
  width: var(--container);
  min-height: var(--header-h);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

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

.brand img {
  width: 178px;
  height: auto;
  filter: drop-shadow(0 0 16px rgba(0, 245, 212, 0.12));
}

.nav-panel {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(138, 148, 166, 0.14);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.022)),
    rgba(5, 9, 14, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-panel a {
  min-height: 36px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
  transition: color 180ms ease, background 180ms ease;
}

.nav-panel a:hover,
.nav-panel a:focus-visible {
  color: var(--text);
  background: rgba(0, 163, 255, 0.14);
}

.nav-panel .nav-mobile-cta {
  display: none;
}

.nav-cta {
  min-height: 42px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 245, 212, 0.38);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 163, 255, 0.22), rgba(0, 245, 212, 0.16));
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 0 24px rgba(0, 163, 255, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 245, 212, 0.78);
  box-shadow: 0 0 34px rgba(0, 245, 212, 0.18);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(138, 148, 166, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  margin: 4px auto;
  display: block;
  border-radius: 999px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.hero {
  min-height: 100svh;
  padding-top: calc(var(--header-h) + 52px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(5, 7, 10, 0.98) 0%, rgba(5, 7, 10, 0.72) 48%, rgba(5, 7, 10, 0.92) 100%),
    linear-gradient(180deg, rgba(0, 163, 255, 0.09), transparent 46%),
    repeating-linear-gradient(90deg, rgba(0, 245, 212, 0.04) 0 1px, transparent 1px 96px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: 56px;
}

.hero-copy {
  position: relative;
}

.hero-copy::before {
  position: absolute;
  top: 4px;
  bottom: 6px;
  left: -26px;
  width: 2px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cyan), rgba(0, 163, 255, 0.15), transparent);
  box-shadow: 0 0 24px rgba(0, 245, 212, 0.34);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: normal;
  text-wrap: balance;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.45rem, 4.35vw, 4.25rem);
  line-height: 0.99;
  text-shadow: 0 0 42px rgba(0, 163, 255, 0.12);
}

h2 {
  font-size: clamp(2rem, 3.25vw, 3.05rem);
}

h3 {
  font-size: 1.15rem;
}

.hero-lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: #d3deed;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

.hero-actions,
.cta-layout {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

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

.btn {
  min-height: 50px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 850;
  line-height: 1.15;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #001018;
  box-shadow: 0 16px 42px rgba(0, 163, 255, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 54px rgba(0, 245, 212, 0.24);
}

.btn-secondary {
  border-color: rgba(244, 247, 251, 0.16);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 245, 212, 0.48);
  background: rgba(0, 245, 212, 0.08);
}

.hero-indicators {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero-indicators span {
  min-height: 44px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(138, 148, 166, 0.17);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.064), rgba(255, 255, 255, 0.026)),
    rgba(5, 11, 18, 0.62);
  color: #dce6f5;
  font-size: 0.92rem;
  font-weight: 650;
}

.hero-indicators span::before {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  content: "";
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 16px rgba(57, 255, 136, 0.54);
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  position: absolute;
  inset: 11% 7%;
  z-index: -1;
  content: "";
  border-radius: 50%;
  background: rgba(0, 163, 255, 0.14);
  filter: blur(44px);
}

.hero-visual img {
  width: min(100%, 760px);
  margin-inline: auto;
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.44));
  animation: heroFloat 7s ease-in-out infinite;
}

.trust-strip {
  border-block: 1px solid rgba(138, 148, 166, 0.18);
  background:
    linear-gradient(90deg, rgba(0, 163, 255, 0.06), transparent 30%, rgba(0, 245, 212, 0.06)),
    rgba(5, 10, 16, 0.86);
}

.trust-grid {
  min-height: 94px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 1px;
}

.trust-grid p {
  position: relative;
  min-height: 94px;
  margin: 0;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-inline: 1px solid rgba(138, 148, 166, 0.09);
  color: #d6deeb;
  font-size: 0.94rem;
  font-weight: 750;
  text-align: center;
}

.trust-grid p::before {
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(0, 245, 212, 0.86), transparent);
  opacity: 0.72;
}

.section-heading {
  max-width: 670px;
}

.section-heading-centered {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading h2 {
  color: #f7faff;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1.16fr);
  gap: 48px;
  align-items: start;
}

.risk-grid {
  display: grid;
  gap: 18px;
}

.risk-card,
.service-card,
.timeline-step,
.sector-card,
.risk-dashboard,
.contact-form,
.contact-card,
.difference-list,
.modal-panel {
  border: 1px solid var(--line);
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.risk-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.risk-card::after,
.service-card::after,
.timeline-step::after,
.sector-card::after {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0, 245, 212, 0.11), transparent 36%);
  opacity: 0;
  transition: opacity 200ms ease;
  pointer-events: none;
}

.risk-card:hover::after,
.service-card:hover::after,
.timeline-step:hover::after,
.sector-card:hover::after {
  opacity: 1;
}

.risk-card h3,
.service-card h3,
.timeline-step h3,
.sector-card h3 {
  margin-top: 14px;
}

.risk-card p,
.service-card p,
.timeline-step p,
.sector-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.risk-marker {
  width: 42px;
  height: 42px;
  display: block;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.08), 0 0 22px currentColor;
}

.risk-marker-economy {
  color: rgba(255, 207, 102, 0.24);
  background: radial-gradient(circle, var(--amber), transparent 62%);
}

.risk-marker-reputation {
  color: rgba(0, 163, 255, 0.24);
  background: radial-gradient(circle, var(--blue), transparent 62%);
}

.risk-marker-operations {
  color: rgba(57, 255, 136, 0.22);
  background: radial-gradient(circle, var(--green), transparent 62%);
}

.services-section {
  background: linear-gradient(180deg, rgba(0, 163, 255, 0.04), rgba(0, 245, 212, 0.025));
}

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

.service-card {
  position: relative;
  min-height: 100%;
  padding: 26px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.service-card::before,
.timeline-step::before,
.sector-card::before,
.contact-form::before,
.risk-dashboard::before {
  position: absolute;
  top: 0;
  right: 18px;
  left: 18px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(0, 245, 212, 0.68), transparent);
  opacity: 0.72;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 245, 212, 0.4);
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.42), 0 0 34px rgba(0, 245, 212, 0.08);
}

.service-card img {
  width: 56px;
  height: 56px;
  padding: 10px;
  border: 1px solid rgba(0, 245, 212, 0.22);
  border-radius: 14px;
  background: rgba(0, 245, 212, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.service-card:hover img {
  transform: translateY(-2px);
  border-color: rgba(0, 245, 212, 0.48);
  background: rgba(0, 245, 212, 0.09);
}

.service-card ul {
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
  color: #d9e1ef;
  font-size: 0.93rem;
}

.service-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 245, 212, 0.42);
  transform: translateY(-50%);
}

.methodology-section {
  overflow: hidden;
}

.timeline {
  position: relative;
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.timeline::before {
  position: absolute;
  top: 32px;
  right: 10%;
  left: 10%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(0, 245, 212, 0.6), transparent);
}

.timeline-step {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.timeline-step span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 245, 212, 0.36);
  border-radius: 50%;
  background: rgba(0, 245, 212, 0.08);
  color: var(--cyan);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-weight: 850;
}

.report-section {
  background:
    linear-gradient(120deg, rgba(0, 163, 255, 0.08), transparent 45%, rgba(0, 245, 212, 0.055)),
    rgba(255, 255, 255, 0.015);
}

.report-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  gap: 54px;
  align-items: center;
}

.deliverables-list {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.deliverables-list span {
  padding: 8px 11px;
  border: 1px solid rgba(138, 148, 166, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #dce5f2;
  font-size: 0.92rem;
  font-weight: 700;
}

.risk-dashboard {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(10, 18, 29, 0.96), rgba(8, 14, 23, 0.78)),
    linear-gradient(135deg, rgba(0, 245, 212, 0.12), transparent 42%);
}

.risk-dashboard::after {
  position: absolute;
  right: -20%;
  bottom: -28%;
  width: 74%;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(0, 245, 212, 0.16);
  border-radius: 50%;
  opacity: 0.7;
  pointer-events: none;
}

.dashboard-top,
.finding-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.dashboard-top p,
.dashboard-top strong {
  margin: 0;
}

.dashboard-top p,
.dashboard-grid small {
  color: var(--steel);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
}

.dashboard-top strong {
  display: block;
  margin-top: 4px;
  font-size: 1.35rem;
}

.status-pill {
  padding: 7px 10px;
  border: 1px solid rgba(255, 207, 102, 0.4);
  border-radius: 999px;
  background: rgba(255, 207, 102, 0.1);
  color: #ffe1a0;
  font-size: 0.8rem;
  font-weight: 800;
}

.risk-meter {
  height: 14px;
  margin: 28px 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.risk-meter span {
  width: 72%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--amber), var(--danger));
  box-shadow: 0 0 22px rgba(255, 207, 102, 0.26);
}

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

.dashboard-grid div {
  padding: 16px;
  border: 1px solid rgba(138, 148, 166, 0.15);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.064), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.02);
}

.dashboard-grid strong {
  display: block;
  margin-top: 4px;
  font-size: 1.42rem;
}

.finding-list {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.finding-list div {
  padding: 14px;
  border: 1px solid rgba(138, 148, 166, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.finding-list p {
  flex: 1;
  margin: 0;
  color: #dfe7f2;
}

.finding-list strong {
  color: var(--muted);
  font-size: 0.84rem;
  white-space: nowrap;
}

.severity-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.severity-high {
  background: var(--danger);
  box-shadow: 0 0 14px rgba(255, 95, 115, 0.5);
}

.severity-medium {
  background: var(--amber);
  box-shadow: 0 0 14px rgba(255, 207, 102, 0.42);
}

.severity-low {
  background: var(--green);
  box-shadow: 0 0 14px rgba(57, 255, 136, 0.38);
}

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

.sector-card {
  position: relative;
  min-height: 176px;
  padding: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-tight);
}

.difference-section {
  background: linear-gradient(180deg, rgba(0, 245, 212, 0.028), rgba(0, 163, 255, 0.038));
}

.difference-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 42px;
  align-items: start;
}

.difference-list {
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(0, 245, 212, 0.06), transparent 46%);
}

.difference-list p {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid rgba(138, 148, 166, 0.16);
  color: #dbe4f1;
}

.difference-list p:first-child {
  padding-top: 0;
}

.difference-list p:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.difference-list strong {
  color: var(--text);
}

.cta-band {
  padding: 60px 0;
  border-block: 1px solid rgba(0, 245, 212, 0.16);
  background:
    linear-gradient(110deg, rgba(0, 163, 255, 0.18), rgba(0, 245, 212, 0.08)),
    rgba(5, 7, 10, 0.86);
}

.cta-layout {
  justify-content: space-between;
  gap: 28px;
}

.cta-layout h2 {
  max-width: 780px;
  font-size: clamp(1.65rem, 3.2vw, 3rem);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 46px;
  align-items: start;
}

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

details {
  border: 1px solid rgba(138, 148, 166, 0.18);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.022)),
    rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: border-color 180ms ease, background 180ms ease;
}

details[open] {
  border-color: rgba(0, 245, 212, 0.3);
  background: rgba(0, 245, 212, 0.045);
}

summary {
  min-height: 58px;
  padding: 18px 52px 18px 20px;
  position: relative;
  cursor: pointer;
  color: var(--text);
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 20px;
  height: 20px;
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--cyan);
  transform: translateY(-50%);
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.contact-section {
  background:
    radial-gradient(circle at 12% 82%, rgba(0, 245, 212, 0.12), transparent 24rem),
    rgba(255, 255, 255, 0.012);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(360px, 1.22fr);
  gap: 44px;
  align-items: start;
}

.contact-card {
  margin-top: 30px;
  padding: 22px;
  border-radius: var(--radius-lg);
}

.contact-card p {
  margin: 0 0 14px;
  color: var(--muted);
}

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

.contact-card strong {
  min-width: 72px;
  margin-right: 12px;
  display: inline-block;
  color: var(--text);
}

.contact-card a {
  color: var(--cyan);
  font-weight: 800;
}

.contact-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

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

label,
.checkbox-row {
  color: #e5ecf7;
  font-size: 0.92rem;
  font-weight: 760;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(138, 148, 166, 0.24);
  border-radius: var(--radius);
  background: rgba(3, 8, 14, 0.72);
  color: var(--text);
  padding: 12px 13px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(0, 245, 212, 0.66);
  background: rgba(3, 8, 14, 0.92);
  box-shadow: 0 0 0 4px rgba(0, 245, 212, 0.08);
}

.checkbox-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
}

.checkbox-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--cyan);
}

.form-note {
  margin: 0;
  color: var(--steel);
  font-size: 0.9rem;
}

.form-note.is-visible {
  color: var(--green);
}

.site-footer {
  padding: 54px 0 28px;
  border-top: 1px solid rgba(138, 148, 166, 0.16);
  background: #040608;
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: start;
}

.footer-brand {
  margin-bottom: 16px;
}

.site-footer p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 20px;
}

.footer-links a,
.footer-links button {
  border: 0;
  padding: 0;
  background: transparent;
  color: #d7dfeb;
  cursor: pointer;
  font-weight: 700;
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--cyan);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(138, 148, 166, 0.12);
}

.footer-bottom p {
  font-size: 0.9rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  padding: 24px;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(2, 5, 8, 0.72);
  backdrop-filter: blur(12px);
}

.modal.is-open {
  display: flex;
}

.modal-panel {
  position: relative;
  width: min(680px, 100%);
  max-height: min(720px, calc(100svh - 48px));
  overflow: auto;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--panel-strong);
}

.modal-panel h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.modal-panel p {
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(138, 148, 166, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

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

@media (max-width: 1080px) {
  .nav-shell {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    justify-self: end;
    display: block;
  }

  .nav-panel {
    position: fixed;
    top: calc(var(--header-h) + 10px);
    right: auto;
    left: 50%;
    width: min(360px, calc(100vw - 40px));
    display: grid;
    gap: 4px;
    padding: 14px;
    border-radius: var(--radius-lg);
    background: rgba(7, 13, 21, 0.98);
    box-shadow: var(--shadow);
    transform: translate(-50%, -12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease, visibility 180ms ease;
  }

  .nav-panel.is-open {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-panel a {
    min-height: 46px;
    border-radius: var(--radius);
  }

  .nav-panel .nav-mobile-cta {
    margin-top: 6px;
    display: inline-flex;
    justify-content: center;
    border: 1px solid rgba(0, 245, 212, 0.4);
    background: linear-gradient(135deg, rgba(0, 163, 255, 0.32), rgba(0, 245, 212, 0.22));
    color: var(--text);
  }

  .nav-cta {
    display: none;
  }

  .hero-grid,
  .split-layout,
  .report-layout,
  .difference-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 32px;
  }

  .hero-copy::before {
    display: none;
  }

  .hero-visual {
    max-width: 680px;
    margin-inline: auto;
  }

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

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

  .timeline::before {
    display: none;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 28px, 1160px);
    --header-h: 68px;
  }

  .section-wrap {
    padding: 78px 0;
  }

  .brand img {
    width: 150px;
  }

  .hero {
    padding-top: calc(var(--header-h) + 34px);
  }

  .hero-lead {
    font-size: 1.03rem;
  }

  .hero-indicators,
  .services-grid,
  .timeline,
  .sector-grid,
  .dashboard-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .cta-layout .btn,
  .contact-form .btn {
    width: 100%;
  }

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

  .trust-grid p {
    min-height: 58px;
    justify-content: flex-start;
    text-align: left;
  }

  .section-heading-centered {
    text-align: left;
  }

  .risk-card,
  .service-card,
  .timeline-step,
  .sector-card,
  .risk-dashboard,
  .contact-form,
  .difference-list,
  .modal-panel {
    padding: 22px;
  }

  .dashboard-top,
  .finding-list div,
  .footer-layout {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .finding-list strong {
    white-space: normal;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.3rem;
  }

  h2 {
    font-size: 1.82rem;
  }

  .hero-indicators span,
  .btn,
  summary {
    font-size: 0.95rem;
  }

  .modal {
    padding: 12px;
  }
}
