:root {
  --ink: #101424;
  --muted: #586174;
  --paper: #ffffff;
  --soft: #f4f6fa;
  --line: #dfe4ee;
  --night: #100e34;
  --purple: #4b145c;
  --green: #1aa783;
  --blue: #1f6feb;
  --amber: #f28c28;
  --shadow: 0 24px 70px rgba(16, 20, 36, .14);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-size: 16px;
  line-height: 1.6;
}

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(223, 228, 238, .9);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-logo {
  width: 210px;
  height: auto;
  max-height: 44px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #30384c;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a:hover,
.nav-links .active {
  color: var(--purple);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.1;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: var(--purple);
  box-shadow: 0 12px 28px rgba(75, 20, 92, .24);
}

.button-primary:hover {
  background: #5d1a70;
}

.button-light {
  color: var(--night);
  background: #fff;
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .08);
}

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

.page-hero {
  color: #fff;
  background:
    linear-gradient(110deg, rgba(16, 14, 52, .98), rgba(75, 20, 92, .9)),
    url("https://media-01.imu.nl/storage/goldenvalue.nl/31295/gv-back-1-1896x556.png") center / cover;
}

.page-hero-grid {
  min-height: 470px;
  padding: 86px 0 70px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
  align-items: center;
  gap: 54px;
}

.eyebrow,
.kicker {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.page-hero .eyebrow {
  color: #d6fff4;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(42px, 5.8vw, 74px);
  line-height: .98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  line-height: 1.2;
}

.hero-copy,
.section-head p,
.lead {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.62;
}

.page-hero .hero-copy {
  max-width: 720px;
  color: #eef1ff;
  font-size: 20px;
}

.hero-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .1);
  box-shadow: var(--shadow);
}

.hero-card h2 {
  margin-bottom: 12px;
  font-size: 28px;
}

.hero-card p,
.hero-card li {
  color: #d9deef;
}

.section {
  padding: 90px 0;
  background: #fff;
}

.section.compact {
  padding-top: 54px;
  padding-bottom: 54px;
}

.section.roomy {
  padding-top: 122px;
  padding-bottom: 122px;
}

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

.section.dark {
  color: #fff;
  background: var(--night);
}

.section.dark .lead,
.section.dark .section-head p {
  color: #d9deef;
}

.section-head {
  max-width: 800px;
  margin-bottom: 42px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

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

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 36px rgba(16, 20, 36, .06);
}

.card.dark {
  color: #fff;
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .07);
}

.card.dark p {
  color: #d9deef;
}

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

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

.label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--purple);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.label.green {
  background: var(--green);
}

.label.blue {
  background: var(--blue);
}

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

.list li::before {
  content: "+ ";
  color: var(--green);
  font-weight: 900;
}

.contact-form-section {
  position: relative;
  overflow: hidden;
}

.contact-form-section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: min(42vw, 520px);
  background: linear-gradient(135deg, rgba(75, 20, 92, .08), rgba(26, 167, 131, .08));
  pointer-events: none;
}

.contact-form-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1fr);
  gap: 44px;
  align-items: start;
}

.contact-form-intro {
  max-width: 520px;
}

.contact-form-points {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.contact-form-points li {
  position: relative;
  padding-left: 28px;
  color: #30384c;
  font-weight: 800;
}

.contact-form-points li::before {
  content: "";
  position: absolute;
  top: .58em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(26, 167, 131, .12);
}

.contact-form-card {
  padding: 34px;
  border: 1px solid rgba(223, 228, 238, .95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 26px 70px rgba(16, 20, 36, .12);
}

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

.contact-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.contact-field--wide,
.contact-submit {
  grid-column: 1 / -1;
}

.contact-field span {
  color: #30384c;
  font-size: 13px;
  font-weight: 900;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #ccd5e4;
  border-radius: var(--radius);
  background: #f8fafc;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  outline: none;
  padding: 12px 14px;
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.contact-field textarea {
  min-height: 154px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(26, 167, 131, .15);
}

.contact-submit {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  margin-top: 4px;
}

.contact-submit p {
  max-width: 280px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.contact-success {
  padding: 10px 0;
}

.contact-success span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.contact-success h3 {
  margin-bottom: 10px;
  font-size: 28px;
}

.contact-success p {
  margin: 0;
  color: var(--muted);
}

.feature {
  min-height: 190px;
  padding: 24px;
  background: #fff;
}

.feature em {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.feature strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.feature span {
  color: var(--muted);
}

.cta {
  padding: 74px 0;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(16, 14, 52, .98), rgba(75, 20, 92, .9)),
    url("https://media-01.imu.nl/storage/goldenvalue.nl/31295/gv-cover-1-1920x500-2.png") center / cover;
}

.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.cta p {
  max-width: 740px;
  margin-bottom: 0;
  color: #eef1ff;
  font-size: 19px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer {
  padding: 54px 0 28px;
  color: #d9deef;
  background: #0a0a23;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, .8fr));
  gap: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-grid h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a {
  color: #d9deef;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  color: #aeb7d2;
  font-size: 14px;
}

@media (max-width: 980px) {
  .nav {
    align-items: flex-start;
    padding: 14px 0;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .page-hero-grid,
  .grid-2,
  .contact-form-layout,
  .cta-box {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .nav-links a:not(.button) {
    display: none;
  }

  .brand-logo {
    width: 185px;
  }

  .page-hero-grid,
  .section,
  .cta {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .grid-3,
  .grid-4,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 24px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-submit .button {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

.custom-builder-row {
  background: #fff;
}

.custom-builder-row.is-soft {
  background: var(--soft);
}

.custom-builder-row.is-dark {
  color: #fff;
  background: var(--night);
}

.custom-builder-stack {
  display: grid;
  gap: 24px;
}

.custom-block {
  min-width: 0;
}

.custom-block--intro {
  max-width: 820px;
}

.custom-block--intro.center,
.custom-block--text.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.custom-block--text {
  max-width: 760px;
}

.custom-block--buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

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

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

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

.custom-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 36px rgba(16, 20, 36, .06);
}

.custom-card p {
  color: var(--muted);
}

.is-dark .custom-card {
  color: var(--ink);
}

.custom-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.custom-spacer {
  height: 32px;
}

@media (max-width: 980px) {
  .custom-grid--3,
  .custom-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .custom-two-column {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .custom-grid,
  .custom-grid--2,
  .custom-grid--3,
  .custom-grid--4 {
    grid-template-columns: 1fr;
  }
}


/* Golden Value homepage styles */

    :root {
      --ink: #101424;
      --muted: #586174;
      --paper: #ffffff;
      --soft: #f4f6fa;
      --line: #dfe4ee;
      --night: #100e34;
      --purple: #4b145c;
      --green: #1aa783;
      --blue: #1f6feb;
      --amber: #f28c28;
      --shadow: 0 24px 70px rgba(16, 20, 36, .14);
      --radius: 8px;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--soft);
      font-size: 16px;
      line-height: 1.6;
    }

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

    strong {
      color: inherit;
    }

    .container {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(255, 255, 255, .94);
      border-bottom: 1px solid rgba(223, 228, 238, .9);
      backdrop-filter: blur(18px);
    }

    .nav {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      flex: 0 0 auto;
      white-space: nowrap;
    }

    .brand-logo {
      width: 210px;
      height: auto;
      max-height: 44px;
      object-fit: contain;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      color: #30384c;
      font-size: 14px;
      font-weight: 800;
    }

    .nav-links a:hover {
      color: var(--purple);
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 18px;
      border: 1px solid transparent;
      border-radius: var(--radius);
      font-weight: 900;
      line-height: 1.1;
      transition: transform .18s ease, background .18s ease, border-color .18s ease;
    }

    .button:hover {
      transform: translateY(-1px);
    }

    .button-primary {
      color: #fff;
      background: var(--purple);
      box-shadow: 0 12px 28px rgba(75, 20, 92, .24);
    }

    .button-primary:hover {
      background: #5d1a70;
    }

    .button-ghost {
      color: #fff;
      border-color: rgba(255, 255, 255, .28);
      background: rgba(255, 255, 255, .08);
    }

    .button-light {
      color: var(--night);
      background: #fff;
    }

    .hero {
      position: relative;
      overflow: hidden;
      color: #fff;
      background:
        linear-gradient(110deg, rgba(16, 14, 52, .98) 0%, rgba(42, 12, 68, .94) 54%, rgba(16, 14, 52, .88) 100%),
        url("https://media-01.imu.nl/storage/goldenvalue.nl/31295/gv-back-1-1896x556.png") center / cover;
    }

    .hero::after {
      content: "";
      position: absolute;
      right: -10%;
      bottom: -35%;
      width: 58%;
      height: 70%;
      background: radial-gradient(circle, rgba(26, 167, 131, .28), rgba(26, 167, 131, 0) 60%);
      pointer-events: none;
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      min-height: 690px;
      padding: 92px 0 72px;
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
      align-items: center;
      gap: 58px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 18px;
      color: #d6fff4;
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 34px;
      height: 2px;
      background: var(--green);
    }

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

    h1 {
      max-width: 850px;
      margin-bottom: 24px;
      font-size: clamp(44px, 6.2vw, 82px);
      line-height: .96;
      letter-spacing: 0;
    }

    .hero-copy {
      max-width: 720px;
      margin-bottom: 30px;
      color: #eef1ff;
      font-size: 20px;
      line-height: 1.55;
    }

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

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

    .hero-points {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      max-width: 760px;
    }

    .hero-point {
      min-height: 118px;
      padding: 16px;
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .08);
    }

    .hero-point b {
      display: block;
      margin-bottom: 5px;
      font-size: 18px;
    }

    .hero-point span {
      color: #d9deef;
      font-size: 13px;
      line-height: 1.35;
    }

    .ops-panel {
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .1);
      box-shadow: var(--shadow);
    }

    .ops-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 18px 20px;
      border-bottom: 1px solid rgba(255, 255, 255, .16);
      background: rgba(255, 255, 255, .08);
    }

    .status {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: #d6fff4;
      font-size: 13px;
      font-weight: 900;
    }

    .status::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: var(--green);
      box-shadow: 0 0 0 6px rgba(26, 167, 131, .16);
    }

    .ops-code {
      padding: 24px;
      font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
      font-size: 13px;
      line-height: 1.75;
      color: #e8ebff;
    }

    .ops-code span {
      display: block;
      color: #aeb7d2;
    }

    .ops-code b {
      color: #fff;
      font-weight: 800;
    }

    .ops-metrics {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      border-top: 1px solid rgba(255, 255, 255, .16);
    }

    .ops-metric {
      padding: 18px;
      border-right: 1px solid rgba(255, 255, 255, .16);
    }

    .ops-metric:last-child {
      border-right: 0;
    }

    .ops-metric strong {
      display: block;
      font-size: 24px;
      line-height: 1.1;
    }

    .ops-metric span {
      color: #d9deef;
      font-size: 12px;
    }

    .section {
      padding: 94px 0;
      background: #fff;
    }

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

    .section.dark {
      color: #fff;
      background: var(--night);
    }

    .section-head {
      max-width: 780px;
      margin-bottom: 42px;
    }

    .section-head.center {
      margin-right: auto;
      margin-left: auto;
      text-align: center;
    }

    .kicker {
      margin-bottom: 10px;
      color: var(--green);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    h2 {
      margin-bottom: 16px;
      font-size: clamp(31px, 4.4vw, 52px);
      line-height: 1.07;
      letter-spacing: 0;
    }

    h3 {
      line-height: 1.2;
    }

    .section-head p,
    .lead {
      color: var(--muted);
      font-size: 19px;
      line-height: 1.62;
    }

    .dark .section-head p,
    .dark .lead {
      color: #d9deef;
    }

    .issue-grid {
      display: grid;
      grid-template-columns: 1.08fr .92fr;
      gap: 24px;
      align-items: stretch;
    }

    .issue-main {
      padding: 34px;
      border-radius: var(--radius);
      background: var(--night);
      color: #fff;
      box-shadow: var(--shadow);
    }

    .issue-main p {
      color: #d9deef;
      font-size: 18px;
    }

    .issue-list {
      display: grid;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .issue-list li {
      padding: 20px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
    }

    .issue-list strong {
      display: block;
      margin-bottom: 5px;
      color: var(--ink);
      font-size: 18px;
    }

    .issue-list span {
      color: var(--muted);
    }

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

    .service {
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: 0 14px 36px rgba(16, 20, 36, .06);
    }

    .service-label {
      display: inline-flex;
      margin-bottom: 18px;
      padding: 6px 10px;
      border-radius: var(--radius);
      color: #fff;
      background: var(--purple);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    .service:nth-child(2) .service-label {
      background: var(--green);
    }

    .service:nth-child(3) .service-label {
      background: var(--blue);
    }

    .service h3 {
      margin-bottom: 10px;
      font-size: 23px;
    }

    .service p {
      margin-bottom: 18px;
      color: var(--muted);
    }

    .mini-list {
      display: grid;
      gap: 8px;
      margin: 0;
      padding: 0;
      list-style: none;
      color: #343c50;
      font-size: 14px;
      font-weight: 700;
    }

    .mini-list li::before {
      content: "+ ";
      color: var(--green);
      font-weight: 900;
    }

    .split {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
      gap: 58px;
      align-items: start;
    }

    .steps {
      display: grid;
      gap: 14px;
      margin: 0;
      padding: 0;
      list-style: none;
      counter-reset: step;
    }

    .steps li {
      counter-increment: step;
      display: grid;
      grid-template-columns: 52px minmax(0, 1fr);
      gap: 16px;
      padding: 22px;
      border: 1px solid rgba(255, 255, 255, .15);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .07);
    }

    .steps li::before {
      content: counter(step);
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      border-radius: var(--radius);
      color: var(--night);
      background: #fff;
      font-weight: 900;
    }

    .steps h3 {
      margin-bottom: 6px;
      font-size: 21px;
    }

    .steps p {
      margin: 0;
      color: #d9deef;
    }

    .platforms {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1px;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--line);
    }

    .platform {
      min-height: 190px;
      padding: 24px;
      background: #fff;
      transition: background .18s ease, transform .18s ease;
    }

    .platform:hover {
      background: #fbfcff;
      transform: translateY(-1px);
    }

    .platform em {
      display: block;
      margin-bottom: 8px;
      color: var(--green);
      font-style: normal;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    .platform strong {
      display: block;
      margin-bottom: 10px;
      font-size: 20px;
      line-height: 1.2;
    }

    .platform span {
      color: var(--muted);
      font-size: 15px;
    }

    .cta {
      padding: 74px 0;
      color: #fff;
      background:
        linear-gradient(120deg, rgba(16, 14, 52, .98), rgba(75, 20, 92, .9)),
        url("https://media-01.imu.nl/storage/goldenvalue.nl/31295/gv-cover-1-1920x500-2.png") center / cover;
    }

    .cta-box {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 32px;
      align-items: center;
    }

    .cta h2 {
      margin-bottom: 12px;
    }

    .cta p {
      max-width: 740px;
      margin-bottom: 0;
      color: #eef1ff;
      font-size: 19px;
    }

    .site-footer {
      padding: 54px 0 28px;
      color: #d9deef;
      background: #0a0a23;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr repeat(3, minmax(0, .8fr));
      gap: 34px;
      padding-bottom: 34px;
      border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .footer-grid h3 {
      margin-bottom: 12px;
      color: #fff;
      font-size: 14px;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .footer-grid p,
    .footer-grid a {
      color: #d9deef;
    }

    .footer-links {
      display: grid;
      gap: 8px;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      padding-top: 24px;
      color: #aeb7d2;
      font-size: 14px;
    }

    @media (max-width: 980px) {
      .nav {
        align-items: flex-start;
        padding: 14px 0;
        flex-direction: column;
      }

      .nav-links {
        width: 100%;
        flex-wrap: wrap;
        gap: 12px 18px;
      }

      .hero-grid,
      .issue-grid,
      .split,
      .cta-box {
        grid-template-columns: 1fr;
      }

      .hero-grid {
        min-height: auto;
      }

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

    @media (max-width: 680px) {
      .nav-links a:not(.button) {
        display: none;
      }

      .hero-grid,
      .section,
      .cta {
        padding-top: 64px;
        padding-bottom: 64px;
      }

      .hero-points,
      .ops-metrics,
      .services,
      .platforms,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .ops-metric {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .16);
      }

      .ops-metric:last-child {
        border-bottom: 0;
      }

      .footer-bottom {
        flex-direction: column;
      }
    }
  
