/*
Theme Name: RemoteFix Blocks
Theme URI: https://www.remotefix.nl/
Author: RemoteFix
Description: Lichtgewicht maatwerkthema voor RemoteFix.
Version: 1.1.0
Text Domain: remotefix-blocks
*/

:root {
  --navy: #061624;
  --ink: #0c2434;
  --blue: #087fbd;
  --cyan: #57dcf7;
  --green: #55e2a3;
  --violet: #8f7cf7;
  --cream: #f5f7f7;
  --white: #fff;
  --ice: #eaf7fb;
  --mint: #dff6ed;
  --lilac: #eeeafa;
  --sand: #faedda;
  --line: #cfdee5;
  --muted: #587080;
  --max: 1180px;
  --r: 28px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background:
    radial-gradient(
      circle at 12% 9%,
      rgba(87, 220, 247, 0.08),
      transparent 28%
    ),
    var(--cream);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  line-height: 1.62;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
.wrap {
  width: min(var(--max), calc(100% - 44px));
  margin: auto;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #087cb5;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.eyebrow:before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
}
h1,
h2,
h3 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(3.7rem, 7.4vw, 7rem);
}
h2 {
  font-size: clamp(2.6rem, 5vw, 5.2rem);
}
h3 {
  font-size: 1.55rem;
}
p {
  margin-top: 0;
}
.lead {
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  color: var(--muted);
  max-width: 720px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 21px;
  border-radius: 13px;
  border: 0;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 32px rgba(7, 27, 45, 0.15);
  transition: 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 17px 38px rgba(7, 27, 45, 0.23);
}
.btn.blue {
  background: linear-gradient(135deg, #138dce, #45c5ed);
}
.btn.light {
  background: #fff;
  color: var(--navy);
}
.site-nav {
  position: sticky;
  top: 0;
  height: 78px;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
}
.site-nav .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 950;
  letter-spacing: 0.045em;
}
.brand-mark {
  width: 39px;
  height: 27px;
  flex: 0 0 39px;
  background: url("remotefix-mark.svg") center/contain no-repeat;
}
.brand-mark:before {
  content: none;
}
.brand-mark:after {
  content: none;
}
.rfx-wordmark {
  display: inline-flex;
  align-items: baseline;
  color: #122332;
  font-family: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", sans-serif;
  font-size: 25px;
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 1;
  text-decoration: none;
}
.rfx-wordmark span {
  font-weight: 520;
}
.rfx-wordmark strong {
  color: #167b82;
  font-weight: 850;
}
.rfx-wordmark:hover {
  color: #122332;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #365466;
  font-size: 0.79rem;
  font-weight: 850;
}
.nav-links a:hover,
.nav-links .active {
  color: #087fb9;
}
.nav-cta {
  padding: 10px 15px;
  border-radius: 99px;
  background: var(--navy);
  color: #fff !important;
}
.hero-home {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  color: #fff;
  isolation: isolate;
  background: #041321;
}
.hero-home:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("/wp-content/mu-plugins/remotefix-live/assets/remotefix-smart-home-hero.png")
    center/cover no-repeat;
}
.hero-home:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(2, 11, 19, 0.98),
    rgba(2, 11, 19, 0.82) 40%,
    rgba(2, 11, 19, 0.15) 78%
  );
}
.hero-copy {
  max-width: 760px;
}
.hero-home .eyebrow {
  color: #69d9ff;
}
.hero-home h1 {
  margin: 20px 0 26px;
}
.hero-home h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.7);
}
.hero-home .lead {
  color: #d2e1e9;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.proofs {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #b5c8d3;
  font-size: 0.78rem;
  font-weight: 800;
}
.proofs span:before {
  content: "✓";
  color: #5de7a7;
  margin-right: 7px;
}
.subhero {
  padding: 100px 0 82px;
  position: relative;
  overflow: hidden;
}
.subhero:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(8, 127, 189, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 127, 189, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}
.subhero .wrap {
  position: relative;
  z-index: 1;
}
.subhero:after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: -260px;
  border-radius: 50%;
  border: 1px solid rgba(7, 128, 183, 0.15);
  box-shadow: 0 0 80px rgba(22, 143, 209, 0.08);
}
.subhero.mint {
  background: linear-gradient(145deg, #dff7ef, #e6f5fb);
}
.subhero.blue {
  background: linear-gradient(145deg, #0b3552, #071b2d);
  color: #fff;
}
.subhero.blue .eyebrow {
  color: #69d9ff;
}
.subhero.blue .lead {
  color: #bed1dc;
}
.subhero.lilac {
  background: linear-gradient(145deg, #eeeafa, #e7f3fb);
}
.subhero.sand {
  background: linear-gradient(145deg, #fbecd8, #f7f3e9);
}
.subhero h1 {
  max-width: 950px;
  margin: 20px 0 25px;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  color: #6f8795;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 28px;
}
.subhero.blue .breadcrumb {
  color: #9fb8c6;
}
.page-proof {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.page-proof span {
  padding: 8px 11px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(7, 27, 45, 0.09);
  font-size: 0.72rem;
  font-weight: 850;
}
.subhero.blue .page-proof span {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(105, 217, 255, 0.18);
}
.section {
  padding: 105px 0;
  position: relative;
  overflow: clip;
}
.section.white {
  background:
    radial-gradient(
      circle at 95% 5%,
      rgba(87, 220, 247, 0.11),
      transparent 28%
    ),
    #fff;
}
.section.ice {
  background-color: #eaf6f9;
  background-image:
    linear-gradient(rgba(8, 127, 189, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 127, 189, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
}
.section.sand {
  background:
    radial-gradient(
      circle at 8% 92%,
      rgba(143, 124, 247, 0.12),
      transparent 28%
    ),
    #f4f0e8;
}
.section.dark {
  background: linear-gradient(145deg, #0a2c46, #061725);
  color: #fff;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 55px;
  align-items: end;
  margin-bottom: 48px;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}
.dark .section-head p {
  color: #bdd0dc;
}
.dark .eyebrow {
  color: #69d9ff;
}
.intro-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}
.intro-copy h2 {
  margin: 17px 0 24px;
}
.intro-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}
.check-list {
  display: grid;
  gap: 10px;
  margin: 26px 0;
}
.check {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 11px;
  align-items: start;
}
.check b {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #dff4fa;
  color: #087fb9;
}
.check strong {
  display: block;
}
.check span {
  font-size: 0.82rem;
  color: #6a8290;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(7, 27, 45, 0.06);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(8, 127, 189, 0.3);
  box-shadow: 0 22px 55px rgba(7, 27, 45, 0.11);
}
.card:nth-child(3n + 2) {
  background: #edf8fb;
}
.card:nth-child(3n) {
  background: #f0edf9;
}
.card b {
  color: #087fb9;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}
.card h3 {
  margin: 28px 0 11px;
}
.card p {
  color: #5d7685;
  font-size: 0.92rem;
}
.card a {
  color: #087fb9;
  font-weight: 900;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.service {
  position: relative;
  min-height: 320px;
  padding: 34px;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 14px 38px rgba(7, 27, 45, 0.06);
}
.service:after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  border: 1px solid rgba(8, 127, 189, 0.16);
  box-shadow: 0 0 50px rgba(87, 220, 247, 0.1);
  pointer-events: none;
}
.service:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(7, 27, 45, 0.14);
}
.service:nth-child(1) {
  background: linear-gradient(145deg, #d9f7ee, #c8ecf8);
}
.service:nth-child(2) {
  background: linear-gradient(145deg, #0a2942, #071827);
  color: #fff;
}
.service:nth-child(3) {
  background: linear-gradient(145deg, #efeafa, #dddaf5);
}
.service:nth-child(4) {
  background: linear-gradient(145deg, #ffefd7, #f7dcb7);
}
.service:nth-child(5) {
  background: #fff;
  border: 1px solid var(--line);
}
.service:nth-child(6) {
  background: #dceff6;
}
.service small {
  color: #087fb9;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.service:nth-child(2) small {
  color: #69d9ff;
}
.service h3 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 32px 0 14px;
}
.service p {
  color: #506d7d;
}
.service:nth-child(2) p {
  color: #bcd0dc;
}
.service a {
  margin-top: auto;
  color: #087fb9;
  font-weight: 950;
}
.service:nth-child(2) a {
  color: #69d9ff;
}
.visual-card {
  min-height: 590px;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  background: #061624;
}
.visual-card:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("remotefix-real-workspace-bg.png") center/cover no-repeat;
}
.visual-card:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(4, 17, 29, 0.98),
    rgba(4, 17, 29, 0.86) 44%,
    rgba(4, 17, 29, 0.12) 78%
  );
}
.visual-copy {
  width: 52%;
  padding: 55px;
  color: #fff;
}
.visual-copy .eyebrow {
  color: #69d9ff;
}
.visual-copy p {
  color: #bed1dc;
}
.visual-copy h2 {
  margin: 18px 0 22px;
}
.visual-copy p {
  color: #4e6979;
}
.tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 22px 0;
}
.tag-row span {
  padding: 8px 11px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(7, 27, 45, 0.09);
  font-size: 0.72rem;
  font-weight: 900;
}
.demo {
  padding: 14px;
  border: 1px solid #cbdde5;
  border-radius: 28px;
  background: #eaf5f8;
  box-shadow: 0 25px 70px rgba(7, 27, 45, 0.12);
}
.demo-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 12px 20px;
}
.live {
  color: #08724b;
  font-size: 0.7rem;
  font-weight: 900;
}
.live:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: #39d893;
  box-shadow: 0 0 10px #39d893;
}
.demo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 9px;
}
.demo-card {
  min-height: 128px;
  border-radius: 16px;
  padding: 16px;
  background: #fff;
  border: 1px solid rgba(7, 27, 45, 0.07);
  display: flex;
  flex-direction: column;
}
.demo-card.wide {
  grid-column: span 4;
  background: linear-gradient(145deg, #0d3e5f, #09243a);
  color: #fff;
}
.demo-card.half {
  grid-column: span 3;
}
.demo-card.third {
  grid-column: span 2;
}
.demo-card b {
  font-size: 0.64rem;
  color: #138abf;
  letter-spacing: 0.08em;
}
.demo-card.wide b {
  color: #69d9ff;
}
.demo-card strong {
  font-size: 1.35rem;
  margin-top: auto;
}
.demo-card small {
  color: #6a8290;
}
.demo-card.wide small {
  color: #abc1ce;
}
.chart {
  height: 58px;
  margin-top: 14px;
  position: relative;
}
.chart svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.chart path {
  fill: none;
  stroke: #69d9ff;
  stroke-width: 3;
}
.note {
  color: #647d8b;
  font-size: 0.75rem;
  margin: 14px 4px 2px;
}
.ha-showcase {
  padding: 12px;
  border-radius: 32px;
  background: linear-gradient(145deg, #142f43, #06121d);
  box-shadow: 0 32px 90px rgba(5, 23, 37, 0.28);
  color: #fff;
}
.ha-screen {
  min-height: 640px;
  padding: 20px;
  border: 1px solid rgba(106, 217, 255, 0.18);
  border-radius: 23px;
  background:
    radial-gradient(
      circle at 68% -10%,
      rgba(34, 172, 223, 0.18),
      transparent 36%
    ),
    #071722;
  display: grid;
  grid-template-columns: 188px 1fr;
  gap: 16px;
  overflow: hidden;
}
.ha-side {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.ha-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 8px 18px;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}
.ha-logo i {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: linear-gradient(145deg, #5de0ff, #168fd1);
  box-shadow: 0 0 25px rgba(91, 219, 255, 0.28);
}
.ha-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 11px;
  color: #7897a9;
  font-size: 0.7rem;
  font-weight: 850;
}
.ha-nav.active {
  background: rgba(75, 200, 238, 0.13);
  color: #72ddff;
}
.ha-nav:before {
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  border-radius: 3px;
}
.ha-system {
  margin-top: auto;
  padding: 12px;
  border-radius: 13px;
  background: rgba(74, 210, 148, 0.08);
  border: 1px solid rgba(74, 210, 148, 0.15);
}
.ha-system b,
.ha-system small {
  display: block;
}
.ha-system b {
  color: #55e4a4;
  font-size: 0.7rem;
}
.ha-system small {
  color: #7f9aaa;
  font-size: 0.6rem;
  margin-top: 5px;
}
.ha-main {
  min-width: 0;
}
.ha-welcome {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 7px 4px 18px;
}
.ha-welcome small {
  display: block;
  color: #75dfff;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.ha-welcome h3 {
  font-size: 1.55rem;
  margin-top: 4px;
  letter-spacing: -0.03em;
}
.ha-mode {
  padding: 8px 11px;
  border-radius: 99px;
  background: rgba(69, 222, 157, 0.1);
  border: 1px solid rgba(69, 222, 157, 0.2);
  color: #60e5a9;
  font-size: 0.62rem;
  font-weight: 900;
  white-space: nowrap;
}
.ha-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
}
.ha-tile {
  position: relative;
  min-height: 116px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 17px;
  background: linear-gradient(
    145deg,
    rgba(21, 52, 70, 0.86),
    rgba(10, 28, 41, 0.96)
  );
  overflow: hidden;
}
.ha-tile:after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  right: -42px;
  top: -42px;
  border-radius: 50%;
  background: var(--glow, rgba(75, 211, 245, 0.12));
  filter: blur(2px);
}
.ha-tile.span-3 {
  grid-column: span 3;
}
.ha-tile.span-4 {
  grid-column: span 4;
}
.ha-tile.span-5 {
  grid-column: span 5;
}
.ha-tile.span-7 {
  grid-column: span 7;
}
.ha-tile.span-8 {
  grid-column: span 8;
}
.ha-tile b {
  display: block;
  color: #7fdfff;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}
.ha-tile strong {
  display: block;
  margin-top: 19px;
  font-size: 1.25rem;
}
.ha-tile small {
  color: #8ba6b5;
  font-size: 0.65rem;
}
.ha-tile.good {
  --glow: rgba(69, 222, 157, 0.18);
}
.ha-tile.good b {
  color: #60e5a9;
}
.ha-tile.warm {
  --glow: rgba(255, 185, 72, 0.2);
}
.ha-tile.warm b {
  color: #ffc064;
}
.ha-tile.violet {
  --glow: rgba(177, 135, 255, 0.2);
}
.ha-tile.violet b {
  color: #bea1ff;
}
.ha-camera-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 13px;
}
.ha-camera {
  height: 42px;
  padding: 8px;
  border-radius: 9px;
  background: linear-gradient(135deg, #18394b, #0b202e);
  border: 1px solid rgba(117, 220, 255, 0.1);
}
.ha-camera span,
.ha-camera em {
  display: block;
  font-size: 0.52rem;
  font-style: normal;
}
.ha-camera em {
  color: #62e4a8;
}
.ha-wave {
  height: 45px;
  margin-top: 10px;
}
.ha-wave svg {
  width: 100%;
  height: 100%;
}
.ha-wave path {
  fill: none;
  stroke: #63dfff;
  stroke-width: 2.6;
}
.ha-room-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.ha-room-row span {
  padding: 5px 7px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.055);
  color: #90a8b6;
  font-size: 0.55rem;
}
.ha-room-row span.on {
  background: rgba(255, 188, 77, 0.14);
  color: #ffca73;
}
.ha-activity {
  display: grid;
  gap: 6px;
  margin-top: 11px;
}
.ha-event {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  gap: 7px;
  align-items: center;
  color: #9ab0bd;
  font-size: 0.57rem;
}
.ha-event i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5ce2a5;
}
.ha-event time {
  color: #638294;
}
.ha-foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  color: #638090;
  font-size: 0.56rem;
}
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.scenario {
  padding: 30px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
}
.scenario:nth-child(2) {
  background: #e5f6ef;
}
.scenario:nth-child(3) {
  background: #eeeafa;
}
.scenario:nth-child(4) {
  background: #faedda;
}
.scenario small {
  display: block;
  color: #087fb9;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.11em;
}
.scenario h3 {
  font-size: 2rem;
  margin: 16px 0 12px;
}
.scenario p {
  color: #587282;
}
.scenario-flow {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 19px;
}
.scenario-flow span {
  padding: 7px 9px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(7, 27, 45, 0.08);
  font-size: 0.65rem;
  font-weight: 850;
}
.scenario-flow i {
  color: #168fd1;
  font-style: normal;
}
.deliverables {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.deliverable {
  padding: 25px 22px;
  border-top: 3px solid #168fd1;
  background: #fff;
  border-radius: 0 0 17px 17px;
}
.deliverable b {
  display: block;
  color: #168fd1;
  font-size: 0.72rem;
}
.deliverable h3 {
  font-size: 1.35rem;
  margin: 14px 0 9px;
}
.deliverable p {
  margin: 0;
  color: #607987;
  font-size: 0.84rem;
}
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.outcome {
  padding: 27px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
}
.outcome b {
  display: block;
  color: #087fb9;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}
.outcome h3 {
  margin: 13px 0 9px;
}
.outcome p {
  margin: 0;
  color: #5e7887;
  font-size: 0.88rem;
}
.process-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}
.process-step {
  padding: 22px;
  border-right: 1px solid var(--line);
}
.process-step:last-child {
  border-right: 0;
}
.process-step b {
  display: block;
  color: #168fd1;
  font-size: 1.35rem;
}
.process-step strong {
  display: block;
  margin: 8px 0 5px;
}
.process-step span {
  color: #66808f;
  font-size: 0.75rem;
}
.rack {
  padding: 28px;
  border: 1px solid rgba(105, 217, 255, 0.25);
  border-radius: 26px;
  background: rgba(2, 13, 22, 0.55);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
}
.rack-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  color: #8eb2c4;
  font: 800 0.68rem monospace;
}
.server {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  gap: 11px;
  align-items: center;
  margin: 8px 0;
  padding: 12px 13px;
  border: 1px solid rgba(105, 217, 255, 0.15);
  border-radius: 9px;
  background: linear-gradient(
    90deg,
    rgba(23, 69, 98, 0.8),
    rgba(8, 27, 43, 0.95)
  );
}
.server i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #53efaa;
  box-shadow: 0 0 11px #53efaa;
}
.server b {
  font-size: 0.77rem;
}
.server span {
  color: #69d9ff;
  font: 700 0.65rem monospace;
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.case {
  min-height: 300px;
  padding: 32px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
}
.case:nth-child(1) {
  grid-column: span 6;
  background: linear-gradient(145deg, #cceff4, #e7f8f1);
}
.case:nth-child(2) {
  grid-column: span 6;
  background: linear-gradient(145deg, #e8e3f7, #f6eef6);
}
.case:nth-child(3) {
  grid-column: span 5;
  background: #fff;
}
.case:nth-child(4) {
  grid-column: span 7;
  background: linear-gradient(145deg, #0b3552, #071b2d);
  color: #fff;
}
.case small {
  color: #087fb9;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.case:nth-child(4) small {
  color: #69d9ff;
}
.case h3 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 38px 0 13px;
}
.case p {
  color: #536f7f;
}
.case:nth-child(4) p {
  color: #b9cedb;
}
.case b {
  margin-top: auto;
  color: #087fb9;
}
.case:nth-child(4) b {
  color: #69d9ff;
}
.timeline {
  display: grid;
  gap: 12px;
}
.era {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: #fff;
}
.era small {
  color: #087fb9;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.era h3 {
  margin: 9px 0 11px;
}
.era p {
  margin: 0;
  color: #587383;
}
.career-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 38px;
}
.career-fact {
  background: #fff;
  padding: 22px;
}
.career-fact strong {
  display: block;
  color: #087fb9;
  font-size: 1.5rem;
}
.career-fact span {
  color: #667f8e;
  font-size: 0.78rem;
}
.skill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}
.skill-cloud span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: #fff;
  font-size: 0.76rem;
  font-weight: 850;
}
.company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.company-block {
  padding: 36px;
  border-radius: 25px;
}
.company-block:nth-child(1) {
  background: var(--navy);
  color: #fff;
}
.company-block:nth-child(2) {
  background: #dff4f8;
}
.company-block:nth-child(3) {
  background: #eeeafa;
}
.company-block:nth-child(4) {
  background: #faedda;
}
.company-block h3 {
  font-size: 2rem;
  margin-bottom: 14px;
}
.company-block p {
  color: #557080;
}
.company-block:nth-child(1) p {
  color: #bdd0dc;
}
.region-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 18px 55px rgba(7, 27, 45, 0.08);
}
.country {
  min-width: 0;
  padding: 40px;
}
.country:first-child {
  border-right: 1px solid var(--line);
}
.country small {
  display: block;
  color: #087fb9;
  font-weight: 950;
  letter-spacing: 0.12em;
}
.country h3 {
  font-size: 2rem;
  margin: 9px 0 13px;
}
.country p {
  color: #5a7483;
}
.country-number {
  display: inline-block;
  max-width: 100%;
  padding: 8px 11px;
  border-radius: 9px;
  background: #edf8fb;
  color: #0873a7;
  font-size: 0.76rem;
  font-weight: 900;
  white-space: normal;
  overflow-wrap: anywhere;
}
.help-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 16px;
}
.ticket,
.remote {
  padding: 36px;
  border-radius: 26px;
}
.ticket {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 50px rgba(7, 27, 45, 0.07);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field {
  display: grid;
  gap: 6px;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  color: #2f5063;
  font-size: 0.76rem;
  font-weight: 900;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #bcd0da;
  border-radius: 11px;
  background: #f8fbfc;
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
}
.field textarea {
  min-height: 145px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #168fd1;
  box-shadow: 0 0 0 3px rgba(22, 143, 209, 0.13);
}
.ticket .btn {
  margin-top: 18px;
  cursor: pointer;
}
.privacy {
  color: #66808f;
  font-size: 0.76rem;
  margin: 11px 0 0;
}
.remote {
  background: linear-gradient(145deg, #e5e2f6, #d8eef8);
}
.remote h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  margin: 18px 0;
}
.remote p {
  color: #4b6879;
}
.downloads {
  display: grid;
  gap: 9px;
  margin-top: 20px;
}
.download {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(7, 27, 45, 0.08);
}
.download:hover,
.download.recommended {
  border-color: #168fd1;
  background: #fff;
}
.download strong,
.download small {
  display: block;
}
.download small {
  color: #66808f;
}
.download b {
  color: #087fb9;
  font-size: 0.78rem;
  white-space: nowrap;
}
.download-note {
  font-size: 0.74rem;
  color: #627989;
}
.ticket-status {
  display: none;
  margin-bottom: 17px;
  padding: 13px;
  border-radius: 11px;
  font-weight: 800;
}
.ticket-status.ok {
  display: block;
  background: #def7eb;
  color: #075d3b;
}
.ticket-status.error {
  display: block;
  background: #fff0ed;
  color: #8b2719;
}
.hp-field {
  position: absolute !important;
  left: auto !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.service-price {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
  margin: auto 0 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(7, 27, 45, 0.1);
}
.service-price small {
  color: #627c8b !important;
  letter-spacing: 0 !important;
}
.service-price strong {
  color: #087fb9;
  font-size: 1.55rem;
}
.service:nth-child(2) .service-price {
  border-color: rgba(255, 255, 255, 0.14);
}
.service:nth-child(2) .service-price small {
  color: #a9c2d1 !important;
}
.service:nth-child(2) .service-price strong {
  color: #69d9ff;
}
.promo-strip {
  background: #061724;
  color: #fff;
  padding: 15px 0;
}
.promo-strip .wrap,
.promo-strip a {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.promo-strip .wrap {
  justify-content: space-between;
}
.promo-strip span {
  color: #91aab9;
  font-size: 0.72rem;
}
.promo-strip span b {
  color: #62e5aa;
}
.promo-strip a strong {
  font-size: 0.78rem;
}
.promo-strip a em {
  color: #69d9ff;
  font-style: normal;
  font-weight: 900;
}
.promo-band {
  padding-top: 72px;
  padding-bottom: 72px;
}
.promo-card {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 35px;
  align-items: center;
  padding: 45px;
  border-radius: 28px;
  background: linear-gradient(135deg, #e6f7ef, #dceff8);
  border: 1px solid rgba(7, 27, 45, 0.08);
  box-shadow: 0 20px 55px rgba(7, 27, 45, 0.08);
}
.promo-card.website {
  background: linear-gradient(135deg, #eee9fb, #dff1f8);
}
.promo-card.windows {
  background: linear-gradient(135deg, #fff0db, #e7f4f8);
}
.promo-card h2 {
  margin: 14px 0;
}
.promo-card p {
  color: #587382;
}
.promo-price {
  padding: 25px;
  border-radius: 20px;
  background: #071b2d;
  color: #fff;
  text-align: center;
}
.promo-price small,
.promo-price strong,
.promo-price span {
  display: block;
}
.promo-price small {
  color: #69d9ff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.promo-price strong {
  font-size: 3.5rem;
  color: #62e5aa;
  margin: 8px 0 3px;
}
.promo-price span {
  color: #8da6b5;
  font-size: 0.7rem;
  margin-bottom: 18px;
}
.promo-price .btn {
  width: 100%;
  background: #fff;
  color: #071b2d;
}
.osd-showcase {
  background: linear-gradient(145deg, #eaf7fa, #eef0fb);
}
.osd-layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 22px;
  align-items: stretch;
}
.osd-console {
  padding: 18px;
  border-radius: 25px;
  background:
    radial-gradient(circle at 80% 0, rgba(80, 203, 241, 0.18), transparent 30%),
    #061724;
  color: #fff;
  box-shadow: 0 28px 70px rgba(7, 27, 45, 0.22);
}
.osd-console-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 4px 3px 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  font: 800 0.66rem monospace;
  color: #8facbc;
}
.osd-console-head > div {
  display: flex;
  gap: 5px;
}
.osd-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #527184;
}
.osd-dot:nth-child(2) {
  background: #5bdca3;
}
.osd-live {
  color: #62e5aa;
}
.osd-device {
  display: grid;
  grid-template-columns: 1fr 120px auto;
  gap: 15px;
  align-items: center;
  padding: 23px 5px;
}
.osd-device small,
.osd-device strong,
.osd-device span {
  display: block;
}
.osd-device small {
  color: #66dafa;
  font-size: 0.58rem;
  font-weight: 900;
}
.osd-device strong {
  font-size: 1.12rem;
  margin: 4px 0;
}
.osd-device span {
  color: #7897a8;
  font-size: 0.65rem;
}
.osd-progress {
  height: 7px;
  border-radius: 99px;
  background: #193548;
  overflow: hidden;
}
.osd-progress i {
  display: block;
  width: 82%;
  height: 100%;
  background: linear-gradient(90deg, #34b8e8, #61e5a8);
}
.osd-device > b {
  color: #69dfff;
}
.osd-steps {
  display: grid;
  gap: 7px;
}
.osd-steps > div {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  color: #698696;
}
.osd-steps > div > b {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #102d40;
  font-size: 0.67rem;
}
.osd-steps strong,
.osd-steps small {
  display: block;
}
.osd-steps strong {
  font-size: 0.75rem;
}
.osd-steps small {
  font-size: 0.62rem;
  margin-top: 3px;
  color: #668394;
}
.osd-steps .done {
  color: #c4d9e5;
}
.osd-steps .done > b {
  background: rgba(83, 226, 164, 0.12);
  color: #62e5aa;
}
.osd-steps .active {
  border-color: rgba(100, 219, 252, 0.35);
  background: rgba(55, 180, 224, 0.09);
  color: #fff;
}
.osd-steps .active > b {
  background: #168fc4;
  color: #fff;
}
.osd-branding {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(87, 220, 247, 0.13);
}
.osd-wallpaper {
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 13px;
  border-radius: 10px;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(87, 220, 247, 0.5),
      transparent 22%
    ),
    linear-gradient(145deg, #163f5b, #081b2b 68%);
}
.osd-wallpaper span {
  color: #62e5aa;
  font-size: 0.48rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}
.osd-wallpaper b {
  font-size: 0.9rem;
  margin: 3px 0;
}
.osd-wallpaper small {
  color: #91a9b8;
  font-size: 0.48rem;
}
.osd-branding > div:last-child small,
.osd-branding > div:last-child strong,
.osd-branding > div:last-child span {
  display: block;
}
.osd-branding > div:last-child small {
  color: #69d9ff;
  font-size: 0.52rem;
  font-weight: 900;
}
.osd-branding > div:last-child strong {
  margin: 5px 0;
  font-size: 0.78rem;
}
.osd-branding > div:last-child span {
  color: #7895a6;
  font-size: 0.58rem;
}
.osd-copy {
  padding: 34px;
  border-radius: 25px;
  background: #fff;
  border: 1px solid var(--line);
}
.osd-copy h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.osd-copy > p {
  color: #567181;
}
.check-list.compact {
  margin: 24px 0;
}
.price-callout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  padding: 16px;
  border-radius: 14px;
  background: #e4f6f0;
  border: 1px solid #bfe6d8;
  margin: 22px 0;
}
.price-callout span {
  font-weight: 850;
}
.price-callout strong {
  color: #087d5b;
  font-size: 1.25rem;
}
.price-callout small {
  grid-column: 1/-1;
  color: #5c786f;
}
.osd-results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 18px;
}
.osd-results article {
  padding: 19px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(7, 27, 45, 0.08);
}
.osd-results strong,
.osd-results span {
  display: block;
}
.osd-results strong {
  color: #087fb9;
}
.osd-results span {
  font-size: 0.73rem;
  color: #627c8b;
  margin-top: 5px;
}
.promo-hero:before {
  content: "TIJDELIJKE INTRODUCTIEACTIE";
  position: absolute;
  right: 6vw;
  bottom: 15px;
  color: rgba(7, 27, 45, 0.045);
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  white-space: nowrap;
}
.quote-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: start;
}
.quote-builder h2 {
  margin: 18px 0 30px;
}
.quote-products {
  display: grid;
  gap: 10px;
}
.quote-product {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  transition: 0.2s ease;
}
.quote-product:hover,
.quote-product.selected {
  border-color: #168fd1;
  box-shadow: 0 9px 30px rgba(7, 27, 45, 0.08);
  transform: translateY(-1px);
}
.quote-product.featured {
  background: linear-gradient(135deg, #dff8ee, #e3f5fb);
}
.quote-product input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #128ac5;
}
.quote-product span b,
.quote-product span small {
  display: block;
}
.quote-product span small {
  color: #667f8e;
  margin-top: 4px;
}
.quote-product > strong {
  color: #087fb9;
  white-space: nowrap;
}
.quote-product .quote-qty {
  width: 68px;
  padding: 9px;
  border: 1px solid #bcd0da;
  border-radius: 9px;
}
.quote-product.quantity {
  grid-template-columns: auto 1fr auto auto;
}
.quote-summary {
  position: sticky;
  top: 92px;
  padding: 28px;
  border-radius: 24px;
  background: #071b2d;
  color: #fff;
  box-shadow: 0 25px 65px rgba(7, 27, 45, 0.2);
}
.quote-summary .eyebrow {
  color: #69d9ff;
}
.quote-lines {
  display: grid;
  margin: 21px 0;
}
.quote-lines > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
}
.quote-lines p {
  color: #8aa5b5;
}
.quote-lines b {
  color: #bfefff;
  white-space: nowrap;
}
.quote-total {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 19px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.quote-total strong {
  font-size: 2rem;
  color: #63e3ad;
}
.quote-summary > small {
  display: block;
  color: #809aaa;
  line-height: 1.55;
}
.quote-form {
  max-width: 900px;
  margin: auto;
}

.cta {
  padding: 105px 0;
  text-align: center;
  background: linear-gradient(135deg, #128ac5, #58cce9);
  color: #fff;
}
.cta h2 {
  max-width: 900px;
  margin: auto;
}
.cta p {
  max-width: 650px;
  margin: 22px auto;
}
.cta .btn {
  background: #fff;
  color: var(--navy);
}
footer {
  padding: 36px 0;
  background: #06131f;
  color: #879eac;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.8rem;
}
.legal {
  grid-column: 1/-1;
  padding-top: 19px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.74rem;
}
footer .brand {
  color: #fff;
}
footer .rfx-wordmark {
  color: #fff;
  font-size: 21px;
}
footer .rfx-wordmark strong {
  color: #75d6df;
}
footer .rfx-wordmark:hover {
  color: #fff;
}

/* Projects v29: visual Living Lab story */
.projects-page,
.projects-page button,
.projects-page input,
.projects-page select,
.projects-page textarea {
  font-family: "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
}
.projects-page h1,
.projects-page h2,
.projects-page h3,
.projects-page .btn,
.projects-page .nav-links,
.projects-page .eyebrow {
  font-family: "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
}
.projects-page .rfx-quote-shortcut { display: none; }
.projects-hero {
  min-height: 760px;
  padding: 92px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 24%, rgba(31, 188, 208, .18), transparent 27%),
    linear-gradient(132deg, #f6f3ff 0%, #eaf8f8 56%, #e7f0ff 100%);
}
.projects-hero .breadcrumb { margin-bottom: 42px; }
.projects-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: 60px;
}
.projects-hero h1 {
  max-width: 760px;
  margin: 18px 0 22px;
  font-size: clamp(3.2rem, 5.4vw, 6.15rem);
  line-height: .94;
  letter-spacing: -.065em;
}
.projects-hero .lead { max-width: 690px; font-size: 1.14rem; line-height: 1.72; }
.projects-hero .actions { margin: 28px 0 20px; }
.projects-hero .btn.ghost { background: rgba(255,255,255,.56); color: #0b2537; border: 1px solid rgba(11,37,55,.18); }
.living-console {
  position: relative;
  border: 1px solid rgba(132, 224, 229, .34);
  border-radius: 28px;
  background: linear-gradient(155deg, #061b2c, #0b3247 58%, #0c2436);
  color: #fff;
  box-shadow: 0 38px 90px rgba(3, 25, 42, .24), inset 0 1px rgba(255,255,255,.08);
  transform: perspective(1400px) rotateY(-3deg) rotateX(1deg);
}
.living-console:before {
  content: ""; position: absolute; inset: -18px 28px 18px -20px; z-index: -1;
  border-radius: 30px; background: linear-gradient(135deg, rgba(26,173,190,.28), rgba(115,87,255,.13));
}
.living-console-top,
.living-console-foot { display: flex; align-items: center; justify-content: space-between; padding: 17px 20px; }
.living-console-top { border-bottom: 1px solid rgba(255,255,255,.1); font-size: .68rem; letter-spacing: .13em; }
.living-console-top b { display: flex; align-items: center; gap: 8px; color: #a5f5d0; font-weight: 650; letter-spacing: 0; }
.living-console-top i { width: 8px; height: 8px; border-radius: 50%; background: #55e0a3; box-shadow: 0 0 16px #55e0a3; }
.living-console-main { display: grid; gap: 12px; padding: 16px; }
.console-lock,
.console-voice,
.console-legacy { border: 1px solid rgba(255,255,255,.1); border-radius: 18px; background: rgba(255,255,255,.055); }
.console-lock { display: grid; grid-template-columns: 54px 1fr auto; align-items: center; gap: 14px; padding: 18px; }
.console-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; color: #051c2b; background: linear-gradient(145deg,#81f0d2,#39bed6); font-size: 1.55rem; }
.console-lock div:nth-child(2) { display: grid; gap: 3px; }
.console-lock small,.console-voice small,.console-legacy small { color: #7dd8e5; font-size: .62rem; letter-spacing: .13em; font-weight: 750; }
.console-lock strong { font-size: 1.2rem; }
.console-lock span { color: #9eb6c5; font-size: .76rem; }
.console-lock em { padding: 7px 9px; border-radius: 999px; background: rgba(85,224,163,.12); color: #6aefaf; font-size: .6rem; font-style: normal; font-weight: 800; letter-spacing: .12em; }
.console-voice { padding: 18px; background: linear-gradient(135deg, rgba(76,88,222,.2), rgba(255,255,255,.045)); }
.console-voice blockquote { margin: 10px 0 13px; font-size: 1.6rem; font-weight: 700; letter-spacing: -.035em; }
.voice-steps { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; }
.voice-steps span { padding: 7px 9px; border-radius: 9px; color: #d8edf4; background: rgba(255,255,255,.08); font-size: .7rem; }
.voice-steps i { color: #55d3df; font-style: normal; }
.console-legacy { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 6px 18px; padding: 17px 18px; }
.console-legacy small { grid-column: 1/-1; }
.legacy-map { display: flex; align-items: center; gap: 7px; }
.legacy-map span { min-width: 40px; padding: 8px; border-radius: 10px; background: rgba(255,255,255,.08); text-align: center; font-size: .66rem; }
.legacy-map strong { width: 60px; height: 60px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(145deg,#1da6c2,#6957d8); font-size: .64rem; line-height: 1.1; text-align: center; box-shadow: 0 0 30px rgba(48,192,214,.28); }
.console-legacy p { max-width: 125px; margin: 0; color: #9eb6c5; font-size: .7rem; line-height: 1.45; }
.living-console-foot { gap: 8px; border-top: 1px solid rgba(255,255,255,.1); background: rgba(0,0,0,.12); border-radius: 0 0 28px 28px; }
.living-console-foot span { display: grid; color: #8daab9; font-size: .62rem; }
.living-console-foot b { color: #fff; font-size: 1.18rem; }
.project-showcase { padding: 100px 0; color: #fff; background: linear-gradient(145deg,#061725 0%,#092c40 52%,#10223d 100%); }
.project-showcase-head { display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: end; margin-bottom: 38px; }
.project-showcase-head h2 { max-width: 760px; margin: 12px 0 0; color: #fff; font-size: clamp(2.8rem,5vw,5.4rem); line-height: .98; letter-spacing: -.055em; }
.project-showcase-head p { margin: 0; color: #aac2cf; font-size: 1.04rem; line-height: 1.7; }
.project-showcase-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.showcase-card { position: relative; min-height: 640px; overflow: hidden; padding: 22px 26px 30px; border: 1px solid rgba(255,255,255,.1); border-radius: 25px; background: rgba(255,255,255,.055); }
.showcase-card:after { content:""; position:absolute; inset:auto -20% -38% 20%; height:320px; border-radius:50%; filter:blur(45px); opacity:.18; pointer-events:none; }
.lock-card:after { background:#4ce6a6; }.voice-card:after{background:#7781ff}.legacy-card:after{background:#ffad5c}
.showcase-number { color: rgba(255,255,255,.23); font-size: 1rem; font-weight: 800; letter-spacing: .12em; }
.showcase-visual { height: 155px; margin: 18px 0 28px; border-radius: 19px; background: rgba(0,0,0,.18); }
.lock-visual { position:relative; display:grid; place-items:center; }
.door-frame { width:64px; height:92px; padding:7px; border:2px solid #62e5b2; border-radius:6px 6px 3px 3px; box-shadow:0 0 30px rgba(98,229,178,.18); }
.door-frame i { display:block; width:100%; height:100%; background:linear-gradient(145deg,#133d46,#0a222f); border-radius:3px; transform:perspective(180px) rotateY(-10deg); transform-origin:left; }
.lock-visual b { position:absolute; right:18px; bottom:16px; color:#70edbb; font-size:.65rem; letter-spacing:.14em; }
.voice-visual { display:flex; align-items:center; justify-content:center; gap:5px; flex-wrap:wrap; padding:22px; }
.voice-visual i { width:5px; border-radius:5px; background:#8e96ff; box-shadow:0 0 12px #7b83ff; }.voice-visual i:nth-child(1){height:24px}.voice-visual i:nth-child(2){height:52px}.voice-visual i:nth-child(3){height:78px}.voice-visual i:nth-child(4){height:45px}.voice-visual i:nth-child(5){height:21px}
.voice-visual strong { flex:0 0 100%; margin-top:8px; text-align:center; font-size:.88rem; }
.legacy-visual { display:flex; align-items:center; justify-content:center; gap:12px; }
.legacy-visual span,.legacy-visual strong { display:grid; place-items:center; width:52px; height:52px; border-radius:50%; background:rgba(255,255,255,.09); }
.legacy-visual strong { width:68px; height:68px; background:linear-gradient(145deg,#1da6c2,#6b58d8); box-shadow:0 0 28px rgba(51,190,211,.28); }
.legacy-visual i { width:28px; height:1px; background:linear-gradient(90deg,transparent,#f4b26d); }
.showcase-card small { color:#72d9e4; font-size:.68rem; font-weight:800; letter-spacing:.14em; }
.showcase-card h3 { margin:12px 0 15px; color:#fff; font-size:1.75rem; line-height:1.08; letter-spacing:-.035em; }
.showcase-card p { color:#b8cbd5; line-height:1.65; }
.showcase-card ul { position:relative; z-index:1; display:grid; gap:10px; margin:22px 0 0; padding:0; list-style:none; }
.showcase-card li { position:relative; padding-left:20px; color:#eef8fa; font-size:.86rem; }.showcase-card li:before{content:"✓";position:absolute;left:0;color:#64e1b1;font-weight:800}
.showcase-cta { display:flex; align-items:center; justify-content:space-between; gap:24px; margin-top:20px; padding:22px 26px; border:1px solid rgba(255,255,255,.1); border-radius:20px; background:rgba(255,255,255,.06); }
.showcase-cta div { display:grid; gap:4px; }.showcase-cta b{font-size:1.06rem}.showcase-cta span{color:#9fb8c5;font-size:.84rem}
.showcase-cta .btn { background:#fff; color:#071d2d; }
@media(max-width:1000px){
  .projects-hero-grid,.project-showcase-head{grid-template-columns:1fr}.living-console{max-width:720px;transform:none}.project-showcase-grid{grid-template-columns:1fr 1fr}.project-showcase-grid .legacy-card{grid-column:1/-1;min-height:560px}.projects-hero{padding-top:72px}.project-showcase-head{gap:22px}
}
@media(max-width:680px){
  .projects-hero{min-height:0;padding:50px 0 56px}.projects-hero .breadcrumb{margin-bottom:34px}.projects-hero h1{font-size:3.25rem}.projects-hero-grid{gap:36px}.living-console:before{display:none}.living-console-foot{align-items:stretch}.living-console-foot span{flex:1}.console-legacy{grid-template-columns:1fr}.console-legacy p{max-width:none}.project-showcase{padding:70px 0}.project-showcase-grid{grid-template-columns:1fr}.project-showcase-grid .legacy-card{grid-column:auto;min-height:620px}.showcase-card{min-height:0}.showcase-cta{align-items:flex-start;flex-direction:column}.showcase-cta .btn{width:100%;text-align:center}
}

/* V29.2: alle belangrijke bedrijfs- en conversiepagina's ook bovenin bereikbaar */
@media (max-width: 980px) {
  .site-nav .wrap {
    flex-wrap: wrap;
    gap: 8px 18px;
    padding: 10px 0;
  }
  .site-nav .nav-links {
    display: flex;
    order: 3;
    width: 100%;
    gap: 20px;
    padding: 8px 0 2px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .site-nav .nav-links::-webkit-scrollbar { display: none; }
  .site-nav .nav-links a,
  .site-nav .nav-links a:nth-child(n + 5):not(.nav-cta) {
    display: inline-flex;
    flex: 0 0 auto;
  }
}
@media (max-width: 980px) {
  .section-head,
  .intro-grid {
    grid-template-columns: 1fr;
  }
  .nav-links a:nth-child(n + 5):not(.nav-cta) {
    display: none;
  }
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }
  .career-facts {
    grid-template-columns: 1fr 1fr;
  }
  .visual-copy {
    width: 68%;
  }
  .ha-screen {
    grid-template-columns: 1fr;
  }
  .ha-side {
    display: none;
  }
  .deliverables {
    grid-template-columns: 1fr 1fr;
  }
  .process-strip {
    grid-template-columns: 1fr 1fr;
  }
  .process-step:nth-child(2n) {
    border-right: 0;
  }
  .process-step {
    border-bottom: 1px solid var(--line);
  }
}
@media (max-width: 700px) {
  .wrap {
    width: calc(100% - 28px);
  }
  .site-nav {
    height: 70px;
  }
  .nav-links a:not(.nav-cta) {
    display: none;
  }
  .hero-home {
    min-height: 690px;
    align-items: flex-start;
    padding-top: 95px;
  }
  .hero-home h1 {
    font-size: clamp(3.2rem, 16vw, 4.8rem);
  }
  .actions {
    flex-direction: column;
  }
  .proofs {
    flex-direction: column;
    gap: 9px;
  }
  .subhero {
    padding: 72px 0 65px;
  }
  .subhero h1 {
    font-size: clamp(3.1rem, 15vw, 4.8rem);
  }
  .section {
    padding: 78px 0;
  }
  .section-head {
    gap: 20px;
    margin-bottom: 35px;
  }
  .card-grid,
  .service-grid,
  .company-grid,
  .scenario-grid,
  .outcome-grid {
    grid-template-columns: 1fr;
  }
  .visual-card {
    min-height: 570px;
    align-items: flex-end;
  }
  .visual-card:before {
    background-position: 62% center;
  }
  .visual-card:after {
    background: linear-gradient(
      0deg,
      rgba(249, 248, 244, 0.99),
      rgba(249, 248, 244, 0.82) 48%,
      rgba(249, 248, 244, 0.06) 80%
    );
  }
  .visual-copy {
    width: 100%;
    padding: 28px;
  }
  .demo-grid {
    grid-template-columns: 1fr 1fr;
  }
  .demo-card.wide,
  .demo-card.half,
  .demo-card.third {
    grid-column: auto;
  }
  .demo-card.wide {
    grid-column: span 2;
  }
  .ha-showcase {
    padding: 7px;
    border-radius: 24px;
  }
  .ha-screen {
    min-height: 0;
    padding: 13px;
    border-radius: 19px;
  }
  .ha-welcome {
    align-items: flex-start;
  }
  .ha-welcome h3 {
    font-size: 1.15rem;
  }
  .ha-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ha-tile.span-3,
  .ha-tile.span-4,
  .ha-tile.span-5,
  .ha-tile.span-7,
  .ha-tile.span-8 {
    grid-column: auto;
  }
  .ha-tile.span-7,
  .ha-tile.span-8 {
    grid-column: span 2;
  }
  .ha-camera-row {
    grid-template-columns: 1fr;
  }
  .ha-camera {
    height: auto;
  }
  .deliverables {
    grid-template-columns: 1fr;
  }
  .process-strip {
    grid-template-columns: 1fr;
  }
  .process-step {
    border-right: 0;
  }
  .case-grid {
    grid-template-columns: 1fr;
  }
  .case:nth-child(n) {
    grid-column: auto;
  }
  .region-card,
  .help-grid {
    grid-template-columns: 1fr;
  }
  .country {
    padding: 28px;
  }
  .country:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .ticket,
  .remote {
    padding: 25px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-links {
    gap: 12px;
  }
  .server span {
    display: none;
  }
}
@media (max-width: 420px) {
  .card-grid,
  .career-facts {
    grid-template-columns: 1fr;
  }
  .demo-grid {
    grid-template-columns: 1fr;
  }
  .demo-card.wide {
    grid-column: auto;
  }
  .rack {
    padding: 18px;
  }
}
@media (max-width: 980px) {
  .osd-layout,
  .quote-layout,
  .promo-card {
    grid-template-columns: 1fr;
  }
  .quote-summary {
    position: static;
  }
}
@media (max-width: 700px) {
  .osd-console {
    padding: 12px;
  }
  .osd-console-head {
    grid-template-columns: 1fr auto;
  }
  .osd-console-head > div {
    display: none;
  }
  .osd-device {
    grid-template-columns: 1fr auto;
  }
  .osd-progress {
    grid-column: 1/-1;
    grid-row: 2;
  }
  .osd-copy {
    padding: 24px;
  }
  .osd-results {
    grid-template-columns: 1fr 1fr;
  }
  .quote-product,
  .quote-product.quantity {
    grid-template-columns: auto 1fr;
  }
  .quote-product > strong,
  .quote-product .quote-qty {
    grid-column: 2;
  }
  .quote-product > strong {
    justify-self: start;
  }
  .quote-summary {
    padding: 23px;
  }
  .promo-card {
    padding: 26px;
  }
  .promo-strip .wrap,
  .promo-strip a {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn {
    transition: none;
  }
}

/* Herkenbare techniek in plaats van abstracte stockbeelden. */
.sccm-hero,
.ha-photo-hero,
.web-photo-hero,
.revival-hero {
  min-height: 690px;
  display: flex;
  align-items: center;
  color: #fff;
  background-color: #061624;
}
.sccm-hero:before,
.ha-photo-hero:before,
.web-photo-hero:before,
.revival-hero:before {
  mask-image: none;
  background-size: cover;
  background-position: center;
  opacity: 1;
}
.sccm-hero:before {
  background-image:
    linear-gradient(
      90deg,
      rgba(4, 17, 29, 0.98) 0%,
      rgba(4, 17, 29, 0.88) 42%,
      rgba(4, 17, 29, 0.22) 76%
    ),
    url("remotefix-osd-deployment-bg.png");
}
.ha-photo-hero:before {
  background-image:
    linear-gradient(
      90deg,
      rgba(4, 17, 29, 0.97) 0%,
      rgba(4, 17, 29, 0.84) 43%,
      rgba(4, 17, 29, 0.18) 79%
    ),
    url("remotefix-smart-living-bg.png");
}
.web-photo-hero:before {
  background-image:
    linear-gradient(
      90deg,
      rgba(4, 17, 29, 0.98) 0%,
      rgba(4, 17, 29, 0.86) 43%,
      rgba(4, 17, 29, 0.16) 80%
    ),
    url("remotefix-real-workspace-bg.png");
}
.revival-hero:before {
  background-image:
    linear-gradient(
      90deg,
      rgba(4, 17, 29, 0.98) 0%,
      rgba(4, 17, 29, 0.85) 43%,
      rgba(4, 17, 29, 0.16) 80%
    ),
    url("remotefix-virtualization-revival-bg.png");
}
.sccm-hero:after,
.ha-photo-hero:after,
.web-photo-hero:after,
.revival-hero:after {
  display: none;
}
.sccm-hero .wrap,
.ha-photo-hero .wrap,
.web-photo-hero .wrap,
.revival-hero .wrap {
  margin-left: max(22px, calc((100vw - var(--max)) / 2));
  margin-right: auto;
  width: min(760px, calc(100% - 44px));
}
.ha-photo-hero .lead,
.web-photo-hero .lead,
.revival-hero .lead {
  color: #c8d9e4;
}
.ha-photo-hero .breadcrumb,
.web-photo-hero .breadcrumb,
.revival-hero .breadcrumb {
  color: #a6bfcc;
}
.ha-photo-hero .eyebrow,
.web-photo-hero .eyebrow,
.revival-hero .eyebrow {
  color: #68d9ff;
}
.subhero.sccm-hero h1,
.subhero.ha-photo-hero h1,
.subhero.web-photo-hero h1,
.subhero.revival-hero h1 {
  font-size: clamp(3.2rem, 6vw, 6.2rem);
}
.brand-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.brand-ribbon span {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: #071b2d;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}
.brand-ribbon img {
  display: block;
  width: auto;
  height: 30px;
  max-width: 156px;
  object-fit: contain;
}
.brand-ribbon b {
  font-size: 0.78rem;
  letter-spacing: -0.01em;
}
.product-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.product-matrix article {
  padding: 28px;
  min-height: 270px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(150deg, #fff, #f2f8fb);
  box-shadow: 0 18px 44px rgba(7, 27, 45, 0.07);
}
.product-matrix article > b {
  display: block;
  margin-bottom: 20px;
  color: #087fb9;
  font-size: 0.7rem;
  letter-spacing: 0.13em;
}
.product-matrix h3 {
  margin-bottom: 14px;
}
.product-matrix p {
  color: var(--muted);
}
.product-matrix article > strong {
  color: #087fb9;
}
.sccm-overview,
.split-feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
.sccm-console,
.revival-panel {
  padding: 24px;
  border: 1px solid rgba(104, 217, 255, 0.2);
  border-radius: 24px;
  background: linear-gradient(145deg, #0c2c43, #071a2a);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}
.sccm-head,
.sccm-feed > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sccm-head {
  padding-bottom: 18px;
  color: #80ddff;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}
.sccm-head b,
.sccm-feed em {
  color: #a7e84c;
  font-style: normal;
}
.sccm-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 10px;
}
.sccm-kpis article,
.sccm-feed > div {
  padding: 15px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.055);
}
.sccm-kpis small,
.sccm-kpis span,
.sccm-feed small {
  display: block;
  color: #96adbb;
  font-size: 0.7rem;
}
.sccm-kpis strong {
  display: block;
  margin: 5px 0;
  color: #fff;
  font-size: 1.6rem;
}
.sccm-feed {
  display: grid;
  gap: 8px;
}
.sccm-feed i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a7e84c;
  box-shadow: 0 0 12px rgba(167, 232, 76, 0.7);
}
.sccm-feed span {
  flex: 1;
}
.sccm-feed b {
  display: block;
  color: #fff;
}
.sccm-feed em {
  font-size: 0.65rem;
  font-weight: 900;
}
.revival-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.revival-panel small,
.revival-panel strong {
  grid-column: 1/-1;
}
.revival-panel small {
  color: #70d9ff;
  letter-spacing: 0.14em;
}
.revival-panel strong {
  margin: 8px 0 14px;
  font-size: 2rem;
}
.revival-panel span {
  padding: 15px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.07);
  color: #d8e8ef;
  font-weight: 800;
}
.check-list.inverse .check {
  border-color: rgba(255, 255, 255, 0.11);
}
.check-list.inverse .check span {
  color: #a9c0cd;
}
@media (max-width: 900px) {
  .product-matrix {
    grid-template-columns: 1fr 1fr;
  }
  .sccm-overview,
  .split-feature {
    grid-template-columns: 1fr;
  }
  .sccm-hero,
  .ha-photo-hero,
  .web-photo-hero,
  .revival-hero {
    min-height: 650px;
  }
}
@media (max-width: 620px) {
  .product-matrix {
    grid-template-columns: 1fr;
  }
  .brand-ribbon {
    align-items: stretch;
    flex-direction: column;
  }
  .brand-ribbon span {
    width: 100%;
  }
  .sccm-kpis {
    grid-template-columns: 1fr;
  }
  .revival-panel {
    grid-template-columns: 1fr;
  }
  .revival-panel small,
  .revival-panel strong {
    grid-column: auto;
  }
}

/* Homepage v2 — editorial, technisch en commercieel. */
.hero-home-v2 {
  min-height: 830px;
  padding-bottom: 125px;
}
.hero-home-v2 .hero-copy {
  max-width: 850px;
}
.hero-home-v2 h1 {
  max-width: 900px;
  font-size: clamp(4.2rem, 8vw, 8.2rem);
}
.hero-home-v2 .lead {
  max-width: 760px;
  font-size: clamp(1.08rem, 1.55vw, 1.35rem);
}
.hero-data {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 0;
  width: min(var(--max), calc(100% - 44px));
  transform: translateX(-50%) translateY(50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(6, 22, 36, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
}
.hero-data > * {
  min-height: 112px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-data > *:last-child {
  border-right: 0;
  background: linear-gradient(145deg, #168fd1, #43c6e9);
}
.hero-data small {
  color: #78a0b5;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.hero-data strong {
  margin-top: 7px;
  color: #fff;
  font-size: 1.2rem;
}
.hero-data a small {
  color: rgba(255, 255, 255, 0.72);
}
.promo-strip {
  padding-top: 72px;
}

.rfx-manifesto {
  padding: 150px 0 125px;
  background: #fff;
}
.rfx-manifesto .wrap {
  max-width: 1180px;
}
.rfx-manifesto h2 {
  margin: 28px 0;
  max-width: 1080px;
  font-size: clamp(3.7rem, 7vw, 7.4rem);
}
.rfx-manifesto > .wrap > p {
  max-width: 840px;
  color: #4d6978;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
}
.manifesto-path {
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #0a7caf;
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}
.manifesto-path i {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #1a9bd1, #a7e84c);
  position: relative;
}
.manifesto-path i:after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a7e84c;
}

.rfx-worlds {
  padding-top: 125px;
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(64, 204, 239, 0.11),
      transparent 27%
    ),
    linear-gradient(180deg, #071b2d, #04111d);
  color: #fff;
}
.rfx-worlds .section-head p {
  color: #96adba;
}
.world-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 650px 650px;
  gap: 18px;
}
.world {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  color: #fff;
  background: #082239;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.27);
}
.world:nth-child(3) {
  grid-column: 1;
}
.world:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}
.world:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.world:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(3, 14, 24, 0.05) 15%,
    rgba(3, 14, 24, 0.55) 52%,
    rgba(3, 14, 24, 0.98) 100%
  );
}
.world:hover:before {
  transform: scale(1.045);
}
.world-ha:before {
  background-image: url("remotefix-smart-living-bg.png");
}
.world-osd:before {
  background-image: url("remotefix-osd-deployment-bg.png");
}
.world-revival:before {
  background-image: url("remotefix-virtualization-revival-bg.png");
}
.world-web:before {
  background-image: url("remotefix-real-workspace-bg.png");
}
.world-no {
  position: absolute;
  right: 25px;
  top: 12px;
  color: rgba(255, 255, 255, 0.16);
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 950;
  letter-spacing: -0.09em;
}
.world-copy {
  width: 100%;
  padding: 46px;
}
.world-copy > small {
  color: #70dcff;
  font-weight: 950;
  letter-spacing: 0.13em;
}
.world-copy h3 {
  max-width: 680px;
  margin: 16px 0;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}
.world-copy p {
  max-width: 640px;
  color: #bdd0db;
  font-size: 1rem;
}
.world-copy > strong {
  display: inline-block;
  margin-top: 22px;
  color: #fff;
}
.world-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.world-facts b {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 99px;
  background: rgba(5, 20, 32, 0.5);
  font-size: 0.68rem;
}

.rfx-engine {
  overflow: hidden;
  padding: 150px 0;
  background:
    linear-gradient(rgba(60, 180, 223, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(60, 180, 223, 0.045) 1px, transparent 1px),
    #061725;
  background-size: 54px 54px;
  color: #fff;
}
.engine-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.engine-copy h2 {
  margin: 20px 0;
  font-size: clamp(3.5rem, 6vw, 6.6rem);
}
.engine-copy > p {
  color: #9fb6c3;
  font-size: 1.08rem;
}
.engine-list {
  margin-top: 36px;
  display: grid;
}
.engine-list a {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 15px;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}
.engine-list a:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.engine-list b {
  color: #53cdf2;
}
.engine-list strong,
.engine-list small {
  display: block;
}
.engine-list small {
  margin-top: 4px;
  color: #7895a5;
}
.engine-map {
  min-height: 650px;
  position: relative;
  display: grid;
  place-items: center;
}
.engine-core {
  position: relative;
  z-index: 4;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(104, 217, 255, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: radial-gradient(circle at 35% 30%, #144c6c, #071a2a 70%);
  box-shadow:
    0 0 0 16px rgba(76, 202, 237, 0.035),
    0 0 90px rgba(51, 186, 229, 0.25);
}
.engine-core .brand-mark {
  margin-bottom: 10px;
}
.engine-core b {
  letter-spacing: 0.12em;
}
.engine-core small {
  color: #78a0b5;
}
.orbit {
  position: absolute;
  border: 1px solid rgba(90, 205, 239, 0.18);
  border-radius: 50%;
}
.orbit.o1 {
  width: 400px;
  height: 400px;
}
.orbit.o2 {
  width: 600px;
  height: 600px;
}
.engine-node {
  position: absolute;
  z-index: 3;
  width: 160px;
  padding: 14px 16px;
  border: 1px solid rgba(104, 217, 255, 0.2);
  border-radius: 13px;
  background: rgba(7, 32, 49, 0.88);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}
.engine-node small {
  display: block;
  margin-top: 4px;
  color: #7695a5;
  font-weight: 600;
  letter-spacing: 0;
}
.engine-node:before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: #a7e84c;
  box-shadow: 0 0 10px #a7e84c;
}
.n1 {
  left: 3%;
  top: 15%;
}
.n2 {
  right: 4%;
  top: 12%;
}
.n3 {
  right: -2%;
  top: 45%;
}
.n4 {
  right: 10%;
  bottom: 10%;
}
.n5 {
  left: 8%;
  bottom: 9%;
}
.n6 {
  left: -3%;
  top: 47%;
}
.engine-sweep {
  position: absolute;
  z-index: 2;
  width: 300px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #68d9ff);
  transform-origin: right center;
  right: 50%;
  animation: engineSweep 8s linear infinite;
}
.engine-brands {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}
.engine-brands span {
  height: 60px;
  min-width: 190px;
  padding: 11px 22px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #fff;
}
.engine-brands img {
  max-height: 32px;
  max-width: 170px;
}
@keyframes engineSweep {
  to {
    transform: rotate(360deg);
  }
}

.rfx-proof {
  padding: 140px 0;
  background: linear-gradient(145deg, #f6efe5, #eaf7fb);
}
.proof-stage {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 16px;
}
.proof-main {
  min-height: 690px;
  padding: 50px;
  border-radius: 30px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(4, 21, 34, 0.96), rgba(5, 35, 53, 0.86)),
    url("remotefix-smart-living-bg.png") center/cover;
  display: grid;
  grid-template-rows: 1fr auto;
}
.proof-main small,
.proof-stack small {
  color: #67d8ff;
  font-weight: 950;
  letter-spacing: 0.13em;
}
.proof-main h3 {
  max-width: 760px;
  margin: 18px 0;
  font-size: clamp(2.7rem, 5vw, 5rem);
}
.proof-main p {
  max-width: 720px;
  color: #b9ced9;
  font-size: 1.08rem;
}
.proof-main ul {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
  color: #c6d7df;
}
.proof-main li {
  padding-left: 18px;
  position: relative;
}
.proof-main li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a7e84c;
}
.proof-main a {
  display: inline-block;
  margin-top: 20px;
  color: #6fddff;
  font-weight: 900;
}
.proof-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 35px;
}
.proof-numbers span {
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}
.proof-numbers strong,
.proof-numbers small {
  display: block;
}
.proof-numbers strong {
  font-size: 2.25rem;
}
.proof-numbers small {
  margin-top: 4px;
  color: #91acba;
  letter-spacing: 0;
}
.proof-stack {
  display: grid;
  gap: 16px;
}
.proof-stack article {
  padding: 34px;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(7, 27, 45, 0.08);
}
.proof-stack article:nth-child(2) {
  background: #08283e;
  color: #fff;
}
.proof-stack article:nth-child(3) {
  background: #e6e1f6;
}
.proof-stack h3 {
  margin: 14px 0;
  font-size: 2.2rem;
}
.proof-stack p {
  color: #587382;
}
.proof-stack article:nth-child(2) p {
  color: #a9c0cc;
}
.proof-stack b {
  color: #087fb9;
  font-size: 0.72rem;
}

.rfx-audiences {
  padding: 140px 0;
  background: #fff;
}
.audience-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: end;
}
.audience-intro h2 {
  font-size: clamp(3.5rem, 6vw, 6.5rem);
}
.audience-rail {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
}
.audience-rail a {
  min-height: 340px;
  padding: 35px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  color: var(--ink);
  background: #f9fcfd;
  transition: 0.25s;
}
.audience-rail a:last-child {
  border-right: 0;
}
.audience-rail a:nth-child(2) {
  background: #e5f6ef;
}
.audience-rail a:nth-child(3) {
  background: #0a2b42;
  color: #fff;
}
.audience-rail a:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(7, 27, 45, 0.16);
}
.audience-rail small {
  color: #0985bd;
  font-weight: 950;
  letter-spacing: 0.13em;
}
.audience-rail strong {
  margin: 30px 0;
  font-size: clamp(1.8rem, 2.6vw, 3rem);
  line-height: 1.05;
}
.audience-rail span {
  margin-top: auto;
  color: #087fb9;
  font-weight: 900;
}
.audience-rail a:nth-child(3) span {
  color: #6edcff;
}
.region-card-v2 {
  box-shadow: 0 25px 70px rgba(7, 27, 45, 0.1);
}
.region-card-v2 .country {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.region-card-v2 .country h3 {
  font-size: clamp(2rem, 3vw, 3.4rem);
}
.region-card-v2 .country a {
  margin: 10px 0 20px;
  color: #087fb9;
  font-weight: 900;
}
.cta-v2 {
  padding: 145px 0;
}
.cta-v2 .eyebrow {
  justify-content: center;
  color: #fff;
}
.cta-v2 h2 {
  max-width: 950px;
  margin: 20px auto;
  font-size: clamp(4rem, 7vw, 7rem);
}
.cta-v2 .actions {
  justify-content: center;
}

@media (max-width: 1000px) {
  .hero-data {
    grid-template-columns: 1fr 1fr;
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin: -80px auto 0;
  }
  .hero-data > *:nth-child(2) {
    border-right: 0;
  }
  .hero-data > * {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .hero-home-v2 {
    padding-bottom: 100px;
  }
  .promo-strip {
    padding-top: 25px;
  }
  .world-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .world,
  .world:nth-child(3),
  .world:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
    min-height: 620px;
  }
  .engine-layout {
    grid-template-columns: 1fr;
  }
  .engine-map {
    width: min(700px, 100%);
    margin: auto;
  }
  .proof-stage {
    grid-template-columns: 1fr;
  }
  .proof-stack {
    grid-template-columns: repeat(3, 1fr);
  }
  .audience-intro {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .hero-home-v2 {
    min-height: 720px;
    padding-top: 90px;
  }
  .hero-home-v2 h1 {
    font-size: clamp(3.25rem, 16vw, 5.2rem);
  }
  .hero-data {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    margin-top: -55px;
  }
  .hero-data > * {
    min-height: 85px;
    padding: 18px;
    border-right: 0;
  }
  .promo-strip {
    padding-top: 20px;
  }
  .rfx-manifesto {
    padding: 100px 0 85px;
  }
  .rfx-manifesto h2 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }
  .manifesto-path {
    align-items: flex-start;
    flex-direction: column;
  }
  .manifesto-path i {
    width: 1px;
    min-height: 28px;
    margin-left: 5px;
    background: linear-gradient(#1a9bd1, #a7e84c);
  }
  .manifesto-path i:after {
    right: -3px;
    top: auto;
    bottom: 0;
  }
  .world,
  .world:nth-child(3),
  .world:nth-child(4) {
    min-height: 600px;
  }
  .world-copy {
    padding: 28px;
  }
  .world-copy h3 {
    font-size: 2.35rem;
  }
  .world-no {
    font-size: 6rem;
  }
  .rfx-engine {
    padding: 100px 0;
  }
  .engine-layout {
    gap: 40px;
  }
  .engine-map {
    min-height: 560px;
    transform: scale(0.86);
    width: 116%;
    margin-left: -8%;
  }
  .orbit.o2 {
    width: 540px;
    height: 540px;
  }
  .n1 {
    left: 5%;
  }
  .n2 {
    right: 3%;
  }
  .n3 {
    right: -3%;
  }
  .n4 {
    right: 4%;
  }
  .n5 {
    left: 4%;
  }
  .n6 {
    left: -3%;
  }
  .engine-brands {
    flex-direction: column;
  }
  .engine-brands span {
    width: 100%;
  }
  .proof-main {
    padding: 28px;
    min-height: auto;
  }
  .proof-main h3 {
    font-size: 2.7rem;
  }
  .proof-numbers {
    grid-template-columns: 1fr 1fr;
  }
  .proof-stack {
    grid-template-columns: 1fr;
  }
  .audience-rail {
    grid-template-columns: 1fr;
  }
  .audience-rail a {
    min-height: 270px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .audience-rail a:last-child {
    border-bottom: 0;
  }
  .cta-v2 h2 {
    font-size: clamp(3rem, 14vw, 5rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .engine-sweep {
    animation: none;
  }
  .world:before,
  .audience-rail a {
    transition: none;
  }
}
