:root {
  --ink: #080d2f;
  --ink-2: #161d47;
  --muted: #5b6388;
  --paper: #f7f8ff;
  --surface: #ffffff;
  --line: #e5e8f5;
  --brand: #311cff;
  --brand-2: #8248ff;
  --blue: #2f68ff;
  --mint: #2fb98e;
  --night: #020821;
  --night-2: #071132;
  --danger: #c5364c;
  --shadow: 0 18px 45px rgba(18, 23, 71, 0.12);
  --font-body: "Inter", "Avenir Next", "SF Pro Text", "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "42dot Sans", "Inter", "Avenir Next", "SF Pro Display", "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --weight-display: 700;
  --weight-title: 500;
  --weight-strong: 500;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 76px;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.62);
  border-bottom: 0;
  box-shadow: 0 10px 24px rgba(8, 13, 47, 0.035);
  backdrop-filter: blur(20px);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -18px;
  left: 0;
  height: 14px;
  content: "";
  background: linear-gradient(180deg, rgba(8, 13, 47, 0.028), rgba(8, 13, 47, 0));
  pointer-events: none;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  transition: filter 180ms ease, transform 180ms ease;
}

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

.main-nav {
  position: fixed;
  inset: 76px 0 auto 0;
  display: grid;
  gap: 4px;
  padding: 16px 24px 22px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: translateY(-18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.main-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.main-nav a {
  position: relative;
  overflow: visible;
  min-height: 44px;
  padding: 10px 4px;
  border-radius: 8px;
  color: var(--ink-2);
  font-size: 0.96rem;
  font-weight: var(--weight-strong);
  isolation: isolate;
  transition: color 180ms ease, text-shadow 180ms ease, transform 180ms ease;
}

.main-nav a::before {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  z-index: -1;
  content: "";
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(47, 104, 255, 0.25), rgba(130, 72, 255, 0.85));
  box-shadow: 0 0 18px rgba(49, 28, 255, 0.18);
  opacity: 0;
  transform: translateY(3px) scaleX(0.24);
  transform-origin: left center;
  transition: opacity 180ms ease, transform 230ms ease;
}

.site-header .header-cta {
  display: none;
}

.icon-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  isolation: isolate;
  transition: box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.menu-button {
  align-content: center;
  justify-items: center;
  gap: 3px;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.button,
.ghost-button,
.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  overflow: hidden;
  border-radius: 8px;
  font-weight: var(--weight-strong);
  line-height: 1.2;
  white-space: normal;
  isolation: isolate;
  transition: box-shadow 180ms ease, color 180ms ease, transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button::before,
.ghost-button::before,
.icon-button::before,
.tab-button::before,
.remove-button::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.28) 34%, rgba(255, 255, 255, 0.55) 48%, transparent 62%),
    rgba(255, 255, 255, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-120%);
  transition: opacity 180ms ease, transform 520ms ease;
}

.button > *,
.ghost-button > *,
.text-link > *,
.icon-button > *,
.tab-button > *,
.remove-button > * {
  position: relative;
  z-index: 1;
}

.button span[aria-hidden="true"],
.text-link span[aria-hidden="true"],
.sector-more span[aria-hidden="true"] {
  display: inline-block;
  transition: transform 180ms ease;
}

.button {
  border: 0;
  padding: 0 22px;
  background: linear-gradient(110deg, var(--brand), var(--brand-2));
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(49, 28, 255, 0.24);
}

.ghost-button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}

.text-link {
  overflow: visible;
  padding: 0 18px 0 0;
  color: var(--ink);
}

@media (hover: hover) and (pointer: fine) {
  .brand:hover,
  .brand:focus-visible {
    filter: drop-shadow(0 10px 18px rgba(49, 28, 255, 0.14));
    transform: translateY(-1px) scale(1.012);
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    color: var(--brand);
    text-shadow: 0 10px 24px rgba(49, 28, 255, 0.16);
    transform: translateY(-1px);
  }

  .main-nav a:hover::before,
  .main-nav a:focus-visible::before {
    opacity: 1;
    transform: translateY(0) scaleX(1);
  }

  .button:hover,
  .button:focus-visible {
    box-shadow: 0 18px 40px rgba(49, 28, 255, 0.34);
    transform: translateY(-2px);
  }

  .ghost-button:hover,
  .ghost-button:focus-visible,
  .icon-button:hover,
  .icon-button:focus-visible,
  .tab-button:hover,
  .tab-button:focus-visible,
  .remove-button:hover,
  .remove-button:focus-visible {
    box-shadow: 0 14px 34px rgba(18, 23, 71, 0.12);
    transform: translateY(-2px);
  }

  .text-link:hover,
  .text-link:focus-visible,
  .sector-more:hover,
  .sector-more:focus-visible,
  .footer-link:hover,
  .footer-link:focus-visible {
    text-shadow: 0 8px 22px rgba(49, 28, 255, 0.24);
    transform: translateY(-1px);
  }

  .button:hover::before,
  .button:focus-visible::before,
  .ghost-button:hover::before,
  .ghost-button:focus-visible::before,
  .icon-button:hover::before,
  .icon-button:focus-visible::before,
  .tab-button:hover::before,
  .tab-button:focus-visible::before,
  .remove-button:hover::before,
  .remove-button:focus-visible::before {
    opacity: 1;
    transform: translateX(120%);
  }

  .button:hover span[aria-hidden="true"],
  .button:focus-visible span[aria-hidden="true"],
  .text-link:hover span[aria-hidden="true"],
  .text-link:focus-visible span[aria-hidden="true"],
  .sector-more:hover span[aria-hidden="true"],
  .sector-more:focus-visible span[aria-hidden="true"] {
    transform: translateX(5px);
  }
}

.hero {
  position: relative;
  display: grid;
  align-content: start;
  gap: 24px;
  min-height: 690px;
  padding: 42px 24px 72px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fff 48%, #fbfaff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -24px -78px;
  z-index: 0;
  height: min(68vw, 650px);
  min-height: 455px;
  background: url("/assets/hero-bewise-mobile.jpg") center bottom / 100% auto no-repeat;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 20%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 20%, #000 100%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 24px;
  max-width: 620px;
}

.hero h1,
.benefits-section h2,
.sector-section h2,
.audit-section h2,
.admin-dashboard h1,
.admin-login h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 2.45rem;
  line-height: 1.06;
  font-weight: var(--weight-display);
}

.hero h1 span,
.sector-section h2 span,
.audit-section h2 span {
  color: var(--brand);
}

.hero p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

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

.hero-badge {
  display: none;
}

.section-inner {
  width: min(100%, 1160px);
  margin: 0 auto;
}

.trust-band {
  padding: 34px 24px 42px;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-label,
.eyebrow {
  margin: 0 0 18px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: var(--weight-strong);
  text-transform: uppercase;
}

.section-label {
  color: var(--muted);
  text-transform: none;
}

.client-marquee {
  position: relative;
  overflow: hidden;
  margin-right: -24px;
  margin-left: -24px;
  padding: 0 24px;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.client-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 12px;
  animation: client-scroll 26s linear infinite;
  will-change: transform;
}

.client-marquee:hover .client-track {
  animation-play-state: paused;
}

.client-track span {
  display: grid;
  flex: 0 0 auto;
  min-width: 142px;
  min-height: 54px;
  place-items: center;
  padding: 0 18px;
  color: #2a3159;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 0.9rem;
  font-weight: var(--weight-strong);
  text-align: center;
}

.client-track .client-logo {
  background: transparent;
}

.client-track .client-logo img {
  width: auto;
  max-width: 120px;
  max-height: 42px;
  object-fit: contain;
}

@keyframes client-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-marquee {
    overflow-x: auto;
    mask-image: none;
  }

  .client-track {
    width: 100%;
    flex-wrap: wrap;
    animation: none;
  }

  .client-track span[aria-hidden="true"] {
    display: none;
  }
}

.benefits-section {
  padding: 56px 24px 68px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
}

.benefits-section h2 {
  max-width: 320px;
  margin: 0 auto 30px;
  text-align: center;
  font-size: 1.64rem;
  line-height: 1.18;
}

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

.benefit-card {
  position: relative;
  display: grid;
  grid-template-rows: 52px minmax(42px, auto) 1fr;
  gap: 13px;
  min-height: 218px;
  align-content: start;
  padding: 20px 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(22, 29, 71, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
  will-change: transform;
}

.benefit-card::before,
.benefit-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease, transform 220ms ease;
}

.benefit-card::before {
  background:
    radial-gradient(circle at 18% 0%, rgba(47, 104, 255, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(49, 28, 255, 0.08), transparent 42%, rgba(47, 104, 255, 0.08));
  transform: translateY(8px);
}

.benefit-card::after {
  border: 1px solid rgba(47, 104, 255, 0.28);
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.benefit-card > * {
  position: relative;
  z-index: 1;
}

.benefit-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--brand);
  box-shadow: 0 12px 30px rgba(49, 28, 255, 0.12);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.benefit-card h3,
.sector-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.34;
  font-weight: var(--weight-title);
}

.benefit-card p,
.sector-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.68;
}

.benefit-card h3 {
  display: flex;
  align-items: flex-start;
  min-height: 42px;
  font-size: 0.96rem;
  line-height: 1.3;
}

.benefit-card p {
  align-self: start;
  font-size: 0.78rem;
  line-height: 1.62;
}

@media (hover: hover) and (pointer: fine) {
  .benefit-card:hover,
  .benefit-card:focus-within {
    z-index: 2;
    border-color: rgba(47, 104, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 52px rgba(18, 23, 71, 0.12), 0 0 0 1px rgba(47, 104, 255, 0.05);
    transform: translateY(-6px) scale(1.028);
  }

  .benefit-card:hover::before,
  .benefit-card:focus-within::before,
  .benefit-card:hover::after,
  .benefit-card:focus-within::after {
    opacity: 1;
    transform: translateY(0);
  }

  .benefit-card:hover .benefit-icon,
  .benefit-card:focus-within .benefit-icon {
    border-color: rgba(47, 104, 255, 0.24);
    box-shadow: 0 14px 32px rgba(47, 104, 255, 0.18);
    transform: translateY(-2px);
  }
}

.sector-section {
  padding: 72px 24px 78px;
  background:
    radial-gradient(circle at 18% 0%, rgba(47, 104, 255, 0.16), transparent 24%),
    radial-gradient(circle at 78% 30%, rgba(130, 72, 255, 0.12), transparent 30%),
    linear-gradient(145deg, #020718 0%, #050b24 52%, #020617 100%);
}

.sector-section .section-inner {
  display: grid;
  gap: 10px;
}

.sector-section .eyebrow {
  margin-bottom: 0;
  color: #9588ff;
}

.sector-section h2,
.sector-section .section-intro {
  color: #ffffff;
  text-align: left;
}

.sector-section h2 {
  max-width: 820px;
  margin-right: 0;
  margin-left: 0;
  font-size: 2rem;
  line-height: 1.16;
}

.sector-section h2 span {
  color: #705cff;
}

.section-intro {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  text-align: left;
}

.sector-grid {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.sector-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 16px;
  align-content: start;
  justify-items: start;
  min-height: 292px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid rgba(85, 105, 255, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(5, 9, 32, 0.94) 0%, rgba(9, 17, 54, 0.86) 45%, rgba(31, 70, 181, 0.4) 100%),
    var(--sector-image, linear-gradient(140deg, rgba(255, 255, 255, 0.09), rgba(47, 104, 255, 0.13)));
  background-color: rgba(255, 255, 255, 0.04);
  background-position: center, center right;
  background-size: cover, cover;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  text-align: left;
  transition: border-color 180ms ease, box-shadow 200ms ease, transform 200ms ease, filter 200ms ease;
}

.sector-card::before,
.sector-card::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.sector-card::before {
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 24% 12%, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.06) 38%, rgba(130, 72, 255, 0.16) 100%);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 200ms ease, transform 240ms ease;
}

.sector-card::after {
  right: -55px;
  bottom: -70px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.12) 49%, transparent 50%),
    linear-gradient(0deg, transparent 48%, rgba(47, 185, 142, 0.16) 49%, transparent 50%);
  opacity: 0.65;
  transform: rotate(18deg);
}

.sector-card > * {
  position: relative;
  z-index: 1;
  max-width: 330px;
}

.sector-card.has-image::after {
  right: 1px;
  bottom: 0;
  left: 1px;
  width: auto;
  height: 3px;
  border: 0;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(90deg, #7b3dff 0%, #2f68ff 100%);
  opacity: 0.95;
  transform: none;
}

.sector-card .sector-label {
  margin: 0;
  color: #8d7cff;
  font-size: 0.78rem;
  font-weight: var(--weight-strong);
  text-transform: uppercase;
}

.sector-card h3 {
  font-size: 1.36rem;
  line-height: 1.2;
  white-space: pre-line;
}

.sector-card h3,
.sector-card p,
.sector-more {
  color: #ffffff;
}

@media (hover: hover) and (pointer: fine) {
  .sector-card:hover,
  .sector-card:focus-within {
    border-color: rgba(118, 101, 255, 0.48);
    box-shadow: 0 26px 72px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(118, 101, 255, 0.08);
    filter: saturate(1.06);
    transform: translateY(-4px);
  }

  .sector-card:hover::before,
  .sector-card:focus-within::before {
    opacity: 1;
    transform: translateY(0);
  }
}

.sector-card p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.58;
}

.sector-more {
  position: relative;
  align-self: end;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: var(--weight-strong);
  line-height: 1.2;
  transition: text-shadow 180ms ease, transform 180ms ease;
}

.audit-section {
  display: grid;
  gap: 34px;
  padding: 62px 24px 72px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f7ff 100%);
}

.audit-copy {
  display: grid;
  gap: 18px;
}

.audit-section h2 {
  max-width: 620px;
  font-size: 2rem;
  line-height: 1.16;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink-2);
  line-height: 1.55;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-list li::before {
  display: inline-grid;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  place-items: center;
  margin-top: 2px;
  border: 1px solid rgba(49, 28, 255, 0.32);
  border-radius: 999px;
  color: var(--brand);
  content: "✓";
  font-size: 0.78rem;
  font-weight: var(--weight-strong);
}

.audit-form,
.admin-form,
.content-form {
  display: grid;
  gap: 16px;
}

.audit-form {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

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

.field label {
  color: var(--ink-2);
  font-size: 0.86rem;
  font-weight: var(--weight-strong);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid #d9def0;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  outline: none;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(49, 28, 255, 0.12);
}

.audit-form .form-button {
  grid-column: 1 / -1;
  justify-self: center;
  width: fit-content;
  max-width: 100%;
  min-width: min(100%, 278px);
  min-height: 52px;
  padding: 0 28px;
  white-space: nowrap;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: var(--weight-strong);
  text-align: center;
}

.form-status.is-success {
  color: #177a60;
}

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

.site-footer {
  padding: 22px 24px 24px;
  background:
    radial-gradient(circle at 78% 20%, rgba(49, 28, 255, 0.18), transparent 30%),
    linear-gradient(180deg, #050b24 0%, #020616 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
}

.footer-legal {
  display: grid;
  gap: 8px;
  width: min(100%, 1160px);
  margin: 0 auto;
}

.footer-legal p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: var(--weight-strong);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.58);
}

.footer-link {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 0.78rem;
  transition: text-shadow 180ms ease, transform 180ms ease;
  font-weight: var(--weight-strong);
}

.legal-modal[hidden],
.sector-detail-modal[hidden],
.cookie-banner[hidden] {
  display: none !important;
}

.legal-modal,
.sector-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(2, 6, 22, 0.64);
  backdrop-filter: blur(14px);
}

.sector-detail-modal {
  z-index: 70;
  overflow: auto;
  align-items: start;
}

.legal-modal-card {
  width: min(100%, 640px);
  max-height: min(720px, calc(100dvh - 44px));
  overflow: auto;
  border: 1px solid rgba(49, 28, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 28px 90px rgba(2, 8, 33, 0.34);
}

.legal-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 22px 10px;
}

.legal-modal-header h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.42rem;
  line-height: 1.18;
  font-weight: var(--weight-display);
}

.modal-close {
  flex: 0 0 auto;
  background: #f4f6ff;
  font-size: 1.5rem;
  line-height: 1;
}

.legal-modal-body {
  padding: 10px 22px 24px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  white-space: pre-line;
}

.sector-detail-card {
  --detail-accent: #4323ff;
  --detail-accent-2: #8063ff;
  --detail-soft: #f4f1ff;
  position: relative;
  display: grid;
  gap: 28px;
  width: min(100%, 930px);
  max-height: min(920px, calc(100dvh - 44px));
  overflow: auto;
  padding: 38px 36px 30px;
  border: 1px solid rgba(49, 28, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 30px 90px rgba(2, 8, 33, 0.34);
}

.sector-detail-card[data-theme="orange"] {
  --detail-accent: #f06a18;
  --detail-accent-2: #ff8a24;
  --detail-soft: #fff2ea;
}

.sector-detail-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  background: transparent;
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
}

.sector-detail-close:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--detail-accent) 58%, transparent);
  outline-offset: 2px;
  box-shadow: 0 12px 28px color-mix(in srgb, var(--detail-accent) 18%, transparent);
}

.sector-detail-hero {
  display: grid;
  gap: 28px;
  padding-right: 42px;
}

.sector-detail-copy {
  display: grid;
  gap: 18px;
}

.sector-detail-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--detail-accent);
  font-size: 0.78rem;
  font-weight: var(--weight-strong);
  text-transform: uppercase;
}

.sector-detail-icon,
.detail-feature-icon {
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--detail-accent) 18%, #ffffff);
  border-radius: 8px;
  background: var(--detail-soft);
  color: var(--detail-accent);
}

.sector-detail-icon {
  width: 54px;
  height: 54px;
}

.sector-detail-icon svg,
.detail-feature-icon svg {
  width: 28px;
  height: 28px;
}

.sector-detail-card h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.16;
  font-weight: var(--weight-display);
}

.sector-detail-card h2 span {
  display: block;
}

.sector-detail-title-highlight {
  color: var(--detail-accent);
}

.sector-detail-card p {
  margin: 0;
}

.sector-detail-copy > p {
  max-width: 580px;
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.72;
}

.sector-detail-visual,
.sector-detail-proof-visual {
  display: grid;
  place-items: center;
  color: var(--detail-accent);
}

.sector-detail-visual img {
  width: min(100%, 220px);
  max-height: 156px;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px color-mix(in srgb, var(--detail-accent) 22%, transparent));
}

.sector-detail-automation,
.sector-detail-proof {
  display: grid;
  gap: 18px;
}

.sector-detail-automation h3,
.sector-detail-proof h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.42;
  font-weight: var(--weight-title);
}

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

.detail-feature {
  display: grid;
  gap: 12px;
  align-content: start;
  justify-items: center;
  min-height: 124px;
  padding: 14px 10px;
  text-align: center;
}

.detail-feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 28px rgba(18, 23, 71, 0.08);
}

.detail-feature p {
  color: var(--ink);
  font-size: 0.76rem;
  line-height: 1.48;
  font-weight: var(--weight-strong);
}

.sector-detail-proof {
  grid-template-columns: 1fr;
  padding: 22px;
  border-radius: 8px;
  background: var(--detail-soft);
}

.sector-detail-proof ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sector-detail-proof li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink-2);
  font-size: 0.9rem;
  line-height: 1.5;
}

.sector-detail-proof li::before {
  display: inline-grid;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  place-items: center;
  margin-top: 2px;
  border-radius: 999px;
  background: var(--detail-accent);
  color: #ffffff;
  content: "✓";
  font-size: 0.72rem;
}

.sector-detail-proof-visual {
  display: none;
}

.sector-detail-proof-visual img {
  width: min(100%, 240px);
  max-height: 168px;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px color-mix(in srgb, var(--detail-accent) 20%, transparent));
}

.sector-detail-cta {
  width: 100%;
  min-height: 50px;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.22) 42%, rgba(255, 255, 255, 0) 58%),
    linear-gradient(110deg, var(--detail-accent), var(--detail-accent-2));
  box-shadow: 0 18px 42px color-mix(in srgb, var(--detail-accent) 30%, transparent);
}

.sector-detail-note {
  margin-top: -24px;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
  transform: translateY(-24px);
}

.cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 50;
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(2, 6, 22, 0.96);
  color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 70px rgba(2, 8, 33, 0.34);
  backdrop-filter: blur(16px);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions .ghost-button {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.cookie-actions .button {
  min-width: 132px;
}

.admin-form .form-button,
.content-form > .form-button {
  width: 100%;
  min-height: 52px;
}

.admin-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 0%, rgba(130, 72, 255, 0.14), transparent 32%),
    radial-gradient(circle at 8% 12%, rgba(47, 104, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f5f7ff 100%);
}

.admin-shell {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 28px 24px 42px;
}

.admin-login {
  display: grid;
  gap: 28px;
  max-width: 460px;
  margin: 64px auto;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.admin-login-heading {
  display: grid;
  gap: 8px;
}

.admin-login-heading .eyebrow {
  margin: 0;
}

.admin-login-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

kbd {
  display: inline-grid;
  min-width: 24px;
  min-height: 24px;
  place-items: center;
  padding: 1px 7px;
  border: 1px solid #d8def2;
  border-bottom-color: #c1c9e5;
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 2px 0 rgba(18, 23, 71, 0.06);
  font-family: var(--font-body);
  font-size: 0.78rem;
}

.admin-brand img {
  width: 148px;
}

.admin-login h1,
.admin-dashboard h1 {
  font-size: 2rem;
  line-height: 1.14;
}

.admin-dashboard {
  display: grid;
  gap: 28px;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
}

.admin-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.admin-secure-badge {
  display: none;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(49, 28, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
  font-size: 0.82rem;
}

.admin-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.tab-button {
  position: relative;
  overflow: hidden;
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-weight: var(--weight-strong);
  isolation: isolate;
  transition: box-shadow 180ms ease, color 180ms ease, transform 180ms ease, background 180ms ease;
}

.tab-button.is-active {
  background: var(--ink);
  color: #ffffff;
}

.admin-panel {
  display: none;
}

.admin-panel.is-active {
  display: grid;
  gap: 24px;
}

.admin-heading {
  display: grid;
  gap: 18px;
  align-items: end;
}

.admin-heading .eyebrow {
  margin-bottom: 8px;
}

.admin-edit-lock {
  display: grid;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(49, 28, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(246, 247, 255, 0.86)),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 36px rgba(18, 23, 71, 0.07);
}

.admin-edit-lock.is-unlocked {
  border-color: rgba(47, 185, 142, 0.28);
  background: linear-gradient(135deg, rgba(247, 255, 252, 0.96), rgba(255, 255, 255, 0.9));
}

.admin-edit-lock p {
  margin: 0;
}

.admin-lock-title {
  color: var(--ink);
  font-weight: var(--weight-title);
}

.admin-lock-title + p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.lead-list {
  display: grid;
  gap: 16px;
}

.lead-card {
  --lead-accent: #2f68ff;
  position: relative;
  display: grid;
  gap: 18px;
  padding: 22px 22px 22px 24px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--lead-accent) 18%, var(--line));
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(22, 29, 71, 0.055);
}

.lead-card::before {
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 0;
  width: 4px;
  content: "";
  border-radius: 0 999px 999px 0;
  background: var(--lead-accent);
}

.lead-card[data-status="new"] {
  --lead-accent: #4323ff;
}

.lead-card[data-status="contacted"] {
  --lead-accent: #2f68ff;
}

.lead-card[data-status="qualified"] {
  --lead-accent: #2fb98e;
}

.lead-card[data-status="done"] {
  --lead-accent: #6b7280;
}

.lead-card[data-status="archived"] {
  --lead-accent: #9aa1b8;
  opacity: 0.72;
}

.lead-main {
  display: grid;
  gap: 8px;
}

.lead-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.lead-title-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.lead-card h2 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.32;
  font-weight: var(--weight-title);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid color-mix(in srgb, var(--lead-accent) 24%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--lead-accent) 10%, #ffffff);
  color: color-mix(in srgb, var(--lead-accent) 72%, var(--ink));
  font-size: 0.76rem;
  font-weight: var(--weight-strong);
}

.lead-card p {
  margin: 0;
  color: var(--muted);
}

.lead-actions {
  display: grid;
  gap: 10px;
}

.lead-actions select {
  min-height: 42px;
  padding: 9px 10px;
  border: 1px solid color-mix(in srgb, var(--lead-accent) 18%, var(--line));
  border-radius: 8px;
  background: #ffffff;
}

.empty-state {
  padding: 30px;
  border: 1px dashed #c9d0e8;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  text-align: center;
  font-weight: var(--weight-strong);
}

.content-form fieldset {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(22, 29, 71, 0.045);
}

.content-form legend {
  padding: 0 8px;
  color: var(--ink);
  font-weight: var(--weight-title);
}

.editable-list {
  display: grid;
  gap: 16px;
}

.editable-item {
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid #dfe3f4;
  border-radius: 8px;
  background: #ffffff;
}

.content-form.is-locked fieldset,
.content-form.is-locked .editable-item {
  background: rgba(255, 255, 255, 0.58);
}

.content-form :disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.editable-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.editable-item-title {
  margin: 0;
  font-weight: var(--weight-title);
}

.remove-button {
  position: relative;
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  overflow: hidden;
  border: 1px solid #f0c9d0;
  border-radius: 8px;
  background: #fff5f7;
  color: var(--danger);
  font-size: 1.1rem;
  font-weight: var(--weight-strong);
  isolation: isolate;
  transition: box-shadow 180ms ease, transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

[hidden] {
  display: none !important;
}

@media (min-width: 560px) {
  .hero h1 {
    font-size: 2.95rem;
  }

  .client-track span {
    min-width: 154px;
  }

  .admin-secure-badge {
    display: inline-flex;
  }

  .admin-edit-lock {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 20px 22px;
  }

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

  .audit-form,
  .content-form fieldset {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field-full,
  .editable-list,
  .content-form fieldset legend,
  .content-form fieldset > .ghost-button {
    grid-column: 1 / -1;
  }

  .footer-legal {
    max-width: 560px;
  }

  .cookie-actions {
    justify-content: flex-end;
  }
}

@media (max-width: 430px) {
  .sector-detail-modal {
    padding: 12px;
  }

  .sector-detail-card {
    max-height: calc(100dvh - 24px);
    gap: 16px;
    padding: 22px 16px 16px;
  }

  .sector-detail-hero {
    grid-template-columns: minmax(0, 1fr) 104px;
    align-items: center;
    gap: 14px 12px;
    padding-right: 38px;
  }

  .sector-detail-copy {
    display: contents;
  }

  .sector-detail-kicker {
    grid-column: 1 / -1;
  }

  .sector-detail-card h2 {
    grid-column: 1 / 2;
  }

  .sector-detail-copy > p {
    grid-column: 1 / 2;
    max-width: none;
  }

  .sector-detail-card h2 {
    font-size: 1.36rem;
    line-height: 1.18;
  }

  .sector-detail-copy > p {
    font-size: 0.8rem;
    line-height: 1.62;
  }

  .sector-detail-kicker {
    gap: 10px;
    font-size: 0.68rem;
  }

  .sector-detail-icon {
    width: 44px;
    height: 44px;
  }

  .sector-detail-icon svg,
  .detail-feature-icon svg {
    width: 23px;
    height: 23px;
  }

  .sector-detail-visual img {
    width: min(100%, 104px);
    max-height: 84px;
  }

  .sector-detail-visual {
    grid-column: 2 / 3;
    align-self: center;
  }

  .sector-detail-automation h3,
  .sector-detail-proof h3 {
    font-size: 0.98rem;
    line-height: 1.38;
  }

  .detail-feature-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .detail-feature {
    grid-template-columns: 30px minmax(0, 1fr);
    align-items: center;
    justify-items: start;
    min-height: 0;
    padding: 5px 4px;
    text-align: left;
  }

  .detail-feature-icon {
    width: 30px;
    height: 30px;
  }

  .detail-feature p {
    font-size: 0.72rem;
    line-height: 1.34;
  }

  .sector-detail-proof {
    gap: 12px;
    padding: 13px;
  }

  .sector-detail-proof ul {
    gap: 7px;
  }

  .sector-detail-proof li {
    gap: 7px;
    font-size: 0.72rem;
    line-height: 1.38;
  }

  .sector-detail-proof li::before {
    flex-basis: 14px;
    width: 14px;
    height: 14px;
    margin-top: 1px;
    font-size: 0.58rem;
  }

  .sector-detail-cta {
    min-height: 42px;
  }

  .sector-detail-note {
    margin-top: -14px;
    font-size: 0.72rem;
    transform: translateY(-6px);
  }
}

@media (min-width: 860px) {
  .site-header {
    justify-content: flex-start;
    gap: 34px;
    padding: 24px 72px;
  }

  .brand img {
    width: 165px;
  }

  .menu-button {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    margin-left: auto;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    min-height: 36px;
    padding: 6px 2px 8px;
    font-size: 0.92rem;
  }

  .site-header .header-cta {
    display: inline-flex;
    margin-left: 0;
    min-height: 46px;
  }

  .hero {
    grid-template-columns: minmax(520px, 0.88fr) minmax(360px, 1fr);
    align-items: center;
    gap: 44px;
    min-height: 660px;
    padding: 82px 72px 92px;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.74) 30%, rgba(255, 255, 255, 0.08) 52%, rgba(255, 255, 255, 0) 64%),
      url("/assets/hero-bewise-desktop.jpg") center center / cover no-repeat;
  }

  .hero::before {
    display: none;
  }

  .hero h1 {
    font-size: 3.45rem;
  }

  .hero p {
    font-size: 1.08rem;
  }

  .hero-badge {
    position: absolute;
    right: 72px;
    bottom: 54px;
    z-index: 1;
    display: grid;
    gap: 2px;
    width: 218px;
    min-height: 70px;
    justify-content: center;
    align-content: center;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.75);
    color: var(--ink);
    box-shadow: 0 18px 45px rgba(49, 28, 255, 0.16);
    backdrop-filter: blur(14px);
    text-align: center;
    text-transform: uppercase;
  }

  .hero-badge strong,
  .hero-badge span {
    font-size: 0.85rem;
    font-weight: var(--weight-strong);
  }

  .hero-badge span {
    color: var(--brand);
  }

  .footer-legal {
    grid-template-columns: 1fr auto;
    align-items: center;
    max-width: 1160px;
  }

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

  .cookie-banner {
    right: 32px;
    bottom: 32px;
    left: auto;
    width: min(420px, calc(100vw - 64px));
    padding: 18px;
  }

  .sector-detail-modal {
    align-items: center;
  }

  .sector-detail-card {
    width: min(100%, 1010px);
    padding: 50px 58px 34px;
    gap: 32px;
  }

  .sector-detail-close {
    top: 24px;
    right: 24px;
  }

  .sector-detail-hero {
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: center;
    gap: 42px;
    padding-right: 34px;
  }

  .sector-detail-card h2 {
    font-size: 2.42rem;
  }

  .sector-detail-title-main {
    white-space: nowrap;
  }

  .sector-detail-visual img {
    width: min(100%, 300px);
    max-height: 220px;
  }

  .detail-feature-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
  }

  .detail-feature {
    min-height: 134px;
    padding: 16px 12px;
  }

  .sector-detail-proof {
    grid-template-columns: minmax(0, 1fr) 240px;
    align-items: center;
    padding: 26px 30px;
  }

  .sector-detail-proof-visual {
    display: grid;
  }

  .trust-band,
  .benefits-section,
  .sector-section,
  .audit-section,
  .site-footer {
    padding-right: 72px;
    padding-left: 72px;
  }

  .client-marquee {
    margin-right: -72px;
    margin-left: -72px;
    padding: 0 72px;
  }

  .client-track {
    gap: 16px;
  }

  .client-track span {
    min-width: 172px;
    min-height: 62px;
  }

  .client-track .client-logo img {
    max-width: 148px;
    max-height: 50px;
  }

  .benefits-section {
    padding-top: 84px;
    padding-bottom: 92px;
  }

  .benefits-section h2 {
    max-width: none;
    margin-bottom: 42px;
    font-size: 2.08rem;
  }

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

  .benefit-card {
    min-height: 246px;
    padding: 24px 26px;
    border-top: 0;
    border-bottom: 0;
    border-left: 1px solid var(--line);
    border-right: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .benefit-card:first-child {
    border-left: 0;
  }

  .benefit-card h3 {
    min-height: 48px;
    font-size: 1.08rem;
    line-height: 1.34;
  }

  .benefit-card p {
    font-size: 0.9rem;
    line-height: 1.68;
  }

  .sector-section {
    padding-top: 86px;
    padding-bottom: 94px;
    text-align: center;
  }

  .sector-section h2,
  .sector-section .section-intro {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
  }

  .sector-section h2 {
    font-size: 2.34rem;
  }

  .sector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 28px;
  }

  .sector-card {
    min-height: 288px;
    padding: 38px 38px 32px;
    gap: 14px;
    background:
      linear-gradient(90deg, rgba(5, 9, 32, 0.96) 0%, rgba(9, 17, 54, 0.86) 48%, rgba(31, 70, 181, 0.32) 100%),
      var(--sector-image, linear-gradient(140deg, rgba(255, 255, 255, 0.09), rgba(47, 104, 255, 0.13)));
    background-position: center, center right;
    background-size: cover, cover;
    box-shadow: 0 16px 46px rgba(0, 0, 0, 0.18);
  }

  .sector-card > * {
    max-width: 455px;
  }

  .sector-card .sector-label {
    font-size: 0.76rem;
  }

  .sector-card h3 {
    max-width: 470px;
    font-size: 1.55rem;
    line-height: 1.18;
  }

  .sector-card p {
    max-width: 455px;
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .sector-more {
    font-size: 0.94rem;
  }

  .audit-section {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.75fr);
    align-items: start;
    gap: 48px;
    padding-top: 86px;
    padding-bottom: 92px;
  }

  .audit-section h2 {
    font-size: 2.42rem;
  }

  .admin-heading {
    grid-template-columns: 1fr auto;
  }

  .lead-card {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .lead-actions {
    width: 180px;
  }
}

@media (min-width: 1160px) {
  .hero h1 {
    font-size: 3.82rem;
  }

  .hero-copy {
    padding-left: 4px;
  }
}
