/* =========================================================
   Klokin — static styles
   ========================================================= */

:root {
  --black: #000;
  --white: #fff;
  --navy: #1e293f;
  --navy-2: #243150;
  --navy-dark: #172033;
  --orange: #f5a623;
  --orange-dark: #e69614;
  --cyan: #00deff;
  --cyan-text: #00a8c2;
  --text: #1e293f;
  --muted: #5b6576;
  --muted-2: #7a8494;
  --hero-sub: #c7cedb;
  --bg-light: #f4f6f8;
  --bg-darker: #e9eef2;
  --green: #23c268;
  --border: #e6e9ee;
  --radius: 8px;
  --radius-lg: 18px;
  --container: 1500px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x:hidden;}

body {
  margin: 0;
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x:hidden;
}

h1, h2, h3, h4 {
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  margin: 0;
  line-height: 1.05;
  font-weight: 700;
}

ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius);
  z-index: 1000;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 15px 26px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .18s ease, transform .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--orange); color: var(--navy); }
.btn-primary:hover { background: var(--orange-dark); }

.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-ghost:hover { background: rgba(255,255,255,.08); }

.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: #26324c; }

/* ---------- Logo ---------- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -.5px;
  color: #fff;
  line-height: 1;
}
.logo .logo-mark { margin: 0 -2px; transform: translateY(1px); }
.logo-footer { font-size: 24px; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: transparent;
  transition: background-color .25s ease, box-shadow .25s ease, padding .25s ease;
  padding: 10px 0;
}
.site-header.scrolled {
  background: var(--navy);
  box-shadow: 0 6px 24px rgba(15,23,42,.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  margin-right: auto;
}
.main-nav a {
    position: relative;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    opacity: .92;
    transition: opacity .15s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 2px;
    background: var(--cyan);
    transition: right .28s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    opacity: 1;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.active::after,
.main-nav a[aria-current="page"]::after {
    right: 0;
}

.header-cta { padding: 11px 20px; font-size: 15px; }

.menu-toggle,
.menu-close {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  cursor: pointer;
  padding: 4px;
}

/* =========================================================
   Mobile menu
   ========================================================= */
.mobile-menu{
	position:fixed;
	inset:0;
	width:100%;
	max-width:100vw;
	z-index:200;
	background:var(--navy);
	background-image:radial-gradient(120% 80% at 80% 0%,rgba(0,222,255,.10),transparent 60%);
	display:flex;
	flex-direction:column;
	padding:14px 0 40px;
	transform:translateX(100%);
	transition:transform .3s ease;
	visibility:hidden;
	overflow-x:hidden;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; }

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-close { display: inline-flex; }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  margin-bottom: auto;
}
.mobile-nav a {
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 30px;
  padding: 8px 0;
}
.mobile-menu-foot .btn { width: 100%; }

/* =========================================================
   Hero
   ========================================================= */
.nobgimage{background-image:none !important;}

.hero {
  position: relative;
  background: var(--navy);
  background-image:
    radial-gradient(90% 70% at 62% 12%, rgba(23,150,180,.55), transparent 55%),
    radial-gradient(70% 60% at 15% 30%, rgba(30,41,63,0), transparent 60%);
  color: #fff;
  padding: 150px 0 96px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* gap: 56px; */
  gap: 26px;
  align-items: center;
}

.pill {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
}
.pill-cyan { background: rgba(0,222,255,.14); color: var(--cyan-text); }
.pill-gray { background: #eaedf2; color: var(--navy); }
.pill-green { background: rgba(35,194,104,.14); color: var(--green); }

.hero-copy h1 {
  font-size: clamp(40px, 6vw, 50px);
  margin: 22px 0 22px;
  letter-spacing: -1px;
}
.hero-sub {
  color: var(--hero-sub);
  font-size: 18px;
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 24px;
}

.hero-proof span {
  color: var(--hero-sub);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}



.live-card{
    background:#252d3f;
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    padding:28px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(20,30,50,.12);
}

.live-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.live-card-title { font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 18px; }
.live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(0,222,255,.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,222,255,.55); }
  70%  { box-shadow: 0 0 0 8px rgba(0,222,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,222,255,0); }
}

.clock-list { display: flex; flex-direction: column; gap: 12px; }
.clock-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  padding: 15px 18px;
}
.clock-name { color: #dfe4ee; font-size: 15px; }
.clock-time { font-family: "Space Grotesk", sans-serif; font-weight: 600; color:#fff;}
.clock-time.cyan { color: var(--cyan); }

.hero-card-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.stat-left { text-align: left; float:left;margin-top:0px;}

.stat-right { text-align: right; margin-top:20px;}
.stat-label {
  display: block;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #9aa4b6;
  margin-bottom: 6px;
}
.stat-value { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 32px; }


/* =========================================================
   Hero White
   ========================================================= */

.hero.hero-white{
    background:#fff;
    background-image:
        radial-gradient(90% 70% at 62% 12%,rgba(0,222,255,.10),transparent 55%),
        radial-gradient(80% 70% at 15% 20%,rgba(30,41,63,.04),transparent 60%);
    color:var(--text);
}

.hero.hero-white .hero-copy h1{
    color:var(--navy);
}

.hero.hero-white .hero-sub{
    color:var(--muted);
}

.hero.hero-white .hero-proof span{
    color:var(--muted);
}

.hero.hero-white .btn-ghost{
    color:var(--navy);
    border-color:rgba(30,41,63,.15);
    background:#fff;
}

.hero.hero-white .btn-ghost:hover{
    background:var(--bg-light);
    border-color:rgba(30,41,63,.25);
}

.hero.hero-white .pill-cyan{
    background:rgba(0,222,255,.12);
    color:var(--cyan-text);
}

.hero.hero-white::after{
    box-shadow:0 12px 30px rgba(30,41,63,.06);
}

.hero.hero-white .hero-actions{margin-top:36px;}

/* =========================================================
   Logos strip
   ========================================================= */
.logos-strip {
  background: var(--bg-light);
  padding: 34px 0;
  text-align: center;
}
.logos-title {
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 18px;
}
.logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px 48px;
}
.logos-row li {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #aeb6c2;
}

/* =========================================================
   Sections (shared)
   ========================================================= */
.section { padding: 92px 0; }
.section--first{padding-top:150px;}
.section-compact { padding-top: 48px; }

.section-title {
  font-size: clamp(30px, 4.4vw, 46px);
  letter-spacing: -.5px;
  margin: 18px 0 0;
  max-width: 760px;
}
.section-title-centered {
  font-size: clamp(30px, 4.4vw, 46px);
  letter-spacing: -.5px;
  margin: 18px 0 0;
}
.section-lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 860px;
  margin-top: 18px;
}
.section-lead-btm {
  color: var(--white);
  font-size: 18px;
  max-width: 860px;
  margin-top: 48px;
}




.ways { background: #fff; }
.platform { background: var(--navy-dark); color: #fff; }
.pricing { background: #fff; }
.industries { background: var(--bg-light); }

/* ---------- Ways cards ---------- */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
  margin-top: 48px;
}
.way-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: 0 1px 2px rgba(16,24,40,.04);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}


.way-card h2 {
    margin: 18px 0 14px;
    font-size: 28px;   /* of dezelfde grootte als je wilt */
    line-height: 1.2;
}

.way-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(16,24,40,.10); }
.way-media {
  padding: 18px;
  margin-bottom: 22px;
  height: 300px;              /* zelf bepalen */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f7fb;
  border-radius: 22px;
  overflow: hidden;
  flex-direction: column;
}

.way-media img {
  margin: 0 auto;
  max-width: 100%;
  max-height: 240px;
  width: auto;
  height: auto;
  object-fit: contain;
}



.tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
}
.tag-button { border: 0; cursor: pointer; font: inherit; margin: 0 12px 14px 0; }
.tag-cyan { background: rgba(0,222,255,.14); color: var(--cyan-text); }
.tag-gray { background: #eaedf2; color: var(--muted); }
.way-card > .tag { margin-bottom: 8px; }
.way-card h3 {
  font-size: 22px;
  margin: 14px 0 10px;
}
.way-card p { color: var(--muted); font-size: 16px; line-height: 1.7;}
.way-caption {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: auto;
}

.item-list {
  display: grid;
  gap: 28px;
  margin-top: 48px;
}
.way-card--row {
  display: grid;
  grid-template-columns: minmax(280px, 40%) minmax(0, 60%);
  gap: 34px;
  align-items: center;
}
.way-card--row .button-row {
  margin-top: 26px;
  margin-bottom: 0;
}
.item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 26px;
}
.item-price {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  line-height: 1;
  color: var(--cyan-text);
  white-space: nowrap;
}
.item-media {
  height: 320px;
  margin-bottom: 0;
}
.item-media img {
  max-height: 250px;
}
.item-content {
  min-width: 0;
}
.item-content h3 {
  margin-top: 0;
}

.order-panel {
  display: grid;
  gap: 28px;
}
.order-list {
  display: grid;
  gap: 22px;
}
.order-item {
  display: grid;
  grid-template-columns: minmax(220px, 32%) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 8px 30px rgba(16,24,40,.06);
}
.order-media {
  display: grid;
  place-items: center;
  min-height: 240px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: #f5f7fb;
}
.order-media img {
  max-height: 220px;
  object-fit: contain;
}
.order-content {
  min-width: 0;
}
.order-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}
.order-top h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
}
.icon-button {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  line-height: 1;
}
.icon-button:hover {
  color: var(--cyan-text);
  border-color: rgba(0,168,194,.35);
  background: rgba(0,222,255,.06);
}
.order-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.order-details div,
.summary-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
}
.order-details div {
  padding: 16px;
}
.order-details div:last-child {
  text-align: right;
}
.order-details div:nth-child(2) {
  text-align: center;
}
.order-details span,
.summary-row span,
.summary-total span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.order-details strong,
.summary-row strong,
.summary-total strong {
  display: block;
  margin-top: 7px;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  font-size: 20px;
}
.quantity-control {
  width: 96px;
  min-height: 44px;
  margin-top: 6px;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font: inherit;
  font-weight: 600;
  text-align: center;
}
.summary-card {
  padding: 28px;
  box-shadow: 0 8px 30px rgba(16,24,40,.06);
}
.summary-lines {
  display: grid;
  gap: 0;
}
.summary-row,
.summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}
.summary-total {
  border-bottom: 0;
  padding-bottom: 0;
}
.summary-total strong {
  color: var(--cyan-text);
  font-size: 30px;
}
.summary-actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
}
.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 8px 0 22px;
}
.choice-card {
  position: relative;
  min-height: 92px;
  padding: 18px 48px 18px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.choice-card:hover {
  transform: translateY(-1px);
  border-color: rgba(0,168,194,.35);
}
.choice-card.is-active {
  border-color: rgba(0,168,194,.55);
  box-shadow: 0 0 0 4px rgba(0,222,255,.12);
}
.choice-title {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 17px;
}
.choice-text {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}
.choice-check {
  position: absolute;
  right: 16px;
  top: 18px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: transparent;
  font-size: 13px;
  font-weight: 700;
}
.choice-card.is-active .choice-check {
  border-color: var(--cyan-text);
  background: var(--cyan-text);
  color: #fff;
}
.form-alert {
  margin: 0;
  color: var(--orange);
  font-weight: 600;
  font-size: 14px;
}


.price { margin-top: 0px; font-size: 15px; color: var(--text); }
.price strong { font-family: "Space Grotesk", sans-serif; color: var(--text); font-size: 17px; }

/* ---------- Feature grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.industries-grid { grid-template-columns: repeat(3, 1fr); }
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 1px 2px rgba(16,24,40,.04);
}
.feature-card h3 { font-size: 19px; margin-bottom: 12px; }
.feature-card p { color: var(--muted); font-size: 15px; }


/* ---------- Kloksysteem met druppels ---------- */
.kloksysteem_met_druppels {  background: var(--bg-light); }
.kloksysteem-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr); gap: 64px; align-items: center; }
.kloksysteem-content .section-title { margin-bottom: 28px; }

p { color: var(--muted); font-size: 16px; line-height: 1.75; margin-top: 16px; }

.kloksysteem-content .text-link { color: var(--cyan-text); text-decoration: underline; text-underline-offset: 3px; }
.kloksysteem-content .kloksysteem-price { color: var(--text); margin-top: 24px; }
.kloksysteem-content .kloksysteem-note { font-size: 13px; margin-top: 5px; }
.kloksysteem-visual { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.kloksysteem-visual picture { display: grid; place-items: center; width: 100%; }
.kloksysteem-visual img { width: 100%; max-height: 560px; object-fit: contain; filter: drop-shadow(0 28px 38px rgba(30,41,63,.15)); }
.kloksysteem-visual .btn span,
.platform-action .btn span { font-size: 22px; line-height: 0; margin-left: 7px; }

/* ---------- Platform ---------- */
.platform-header { max-width: 760px; margin-bottom: 38px; }
.platform-eyebrow { display: block; color: #aebbd0; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 10px; }
.platform .section-title { color: #fff; }
.platform .section-title strong { color: #fff; }
.platform .section-lead { color: #c9d3e2; }
.platform-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; }
.platform-card { padding: 22px; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; background: rgba(255,255,255,.06); transition: transform .2s ease, border-color .2s ease, background-color .2s ease; }
.platform-card:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.08); }
.platform-card h3 { color: #fff; font-size: 18px; line-height: 1.2; }
.platform-card p { color: #c9d3e2; font-size: 15px; line-height: 1.65; }
.platform-card-light { display: flex; flex-direction: column; background: #fff; border-color: var(--border); box-shadow: 0 1px 2px rgba(16,24,40,.04); }
.platform-card-light:hover { border-color: rgba(0,168,194,.28); background: #fff; box-shadow: 0 16px 40px rgba(16,24,40,.08); }
.platform-card-light h3 { color: var(--text); }
.platform-card-light p { color: var(--muted); }
.platform-card-light .btn { align-self: flex-start; margin-top: auto; }
.platform-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 9px; background: rgba(0,222,255,.13); margin-bottom: 18px; }
.platform-icon svg { width: 22px; height: 22px; fill: var(--cyan); }
.platform-divider { display: block; width: 34px; height: 2px; background: var(--cyan); margin: 13px 0; }
.platform-action { margin-top: 28px; }

.timeline {
  position: relative;
  max-width: 980px;
  margin: 56px auto 0;
  padding: 4px 0;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(0,222,255,0), rgba(0,222,255,.70) 12%, rgba(0,168,194,.75) 50%, rgba(0,222,255,.70) 88%, rgba(0,222,255,0));
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  align-items: start;
  gap: 28px;
  margin-bottom: 42px;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-item:nth-child(odd) .timeline-card {
  grid-column: 1;
}
.timeline-item:nth-child(even) .timeline-card {
  grid-column: 3;
}
.timeline-marker {
  position: relative;
  z-index: 1;
  grid-column: 2;
  display: flex;
  justify-content: center;
  padding-top: 18px;
}
.timeline-marker::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 50%;
  width: 18px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 8px rgba(0,222,255,.14), 0 8px 22px rgba(0,168,194,.25);
}
.timeline-marker span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 15px;
  border-radius: 999px;
  background: #fff;
  color: var(--cyan-text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
}
.timeline-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 8px 30px rgba(16,24,40,.06);
}
.timeline-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 24px;
}
.timeline-card p {
  margin: 0;
  color: var(--muted);
}
.timeline-item-active .timeline-card {
  border-color: rgba(0,222,255,.35);
  background: var(--navy);
}
.timeline-item-active .timeline-card h3,
.timeline-item-active .timeline-card p {
  color: #fff;
}
.timeline-item-active .timeline-card p {
  color: var(--hero-sub);
}
.timeline-item-active .timeline-marker span {
  background: var(--cyan);
  color: var(--navy);
}



/* =========================================================
   Hoe werkt Klokin
   ========================================================= */
.practical {
  text-align: center;
}
.practical-container {
  max-width: 880px;
}
.practical-title {
  margin: 0 0 20px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: -.5px;
}
.practical-text {
  max-width: 760px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}


/* =========================================================
   Grip op urenregistratie
   ========================================================= */
.hours-control {
  overflow: hidden;  background: var(--bg-light);
}

.hours-control-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
}

.hours-control-content {
  max-width: 680px;
}

.hours-control-content h2 {
  margin: 0 0 24px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.7px;
}

.hours-control-content p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hours-control-content p:last-child {
  margin-bottom: 0;
}

.hours-control-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hours-control-visual picture {
  display: block;
  width: 100%;
}

.hours-control-visual img {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin: 0 auto;
}


/* =========================================================
   Integrations
   ========================================================= */
.integration-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.integration-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: .25s;
}

.integration-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}




.integration-card img.logo-nmbrs{max-height:65px;}
.integration-card img.logo-afas{max-height:44px;}
.integration-card img.logo-exact{max-height:58px;}
.integration-card img.logo-loon{max-height:66px;}
.integration-card img.logo-visma{max-height:54px;}
.integration-card img.logo-loket{max-height:46px;}
.integration-card img.logo-bcs{max-height:50px;}
.integration-card img.logo-sdworx{max-height:60px;}



/* =========================================================
   About Klokin
   ========================================================= */
.about-klokin {
  padding: 92px 0 104px;
  background: #192742;
  color: #fff;
  text-align: center;
}

.about-klokin .section-header {
  max-width: 860px;
  margin: 0 auto;
}

.about-klokin .section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 207, 239, .14);
  color: #00cfee;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.1;
}

.about-klokin p {
  max-width: 820px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, .92);
  font-size: 17px;
  line-height: 1.55;
}

/*************** FUNCTIES*****************/
.platform-grid-8{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:18px;
}


/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  margin-top: 48px;
  align-items: start;
}
.plan-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: 0 8px 30px rgba(16,24,40,.06);
}
.plan-label {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  color: var(--muted);
  font-size: 16px;
}
.plan-price { margin: 12px 0 22px; display: flex; align-items: baseline; gap: 8px; }
.plan-price strong { font-family: "Space Grotesk", sans-serif; color: var(--navy); font-size: 52px; line-height: 1; }
.plan-price span { color: var(--muted); font-size: 18px; }
.plan-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.plan-list li {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
}
.plan-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 18px; height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%2300cfee' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.plan-card .btn { width: 100%; }
.product-buy-card .plan-price {
  justify-content: flex-end;
  text-align: right;
}

/* ---------- Forms ---------- */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.form-field label {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  color: var(--hero-sub);
}
.form-control {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  font: inherit;
  outline: 0;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.form-control:focus {
  border-color: rgba(0, 168, 194, .55);
  box-shadow: 0 0 0 4px rgba(0, 222, 255, .12);
}
textarea.form-control {
  min-height: 150px;
  resize: vertical;
}
.form-note {
  margin-top: 16px;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

/* ---------- Long-form content ---------- */
.content-card {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 52px);
  box-shadow: 0 8px 30px rgba(16,24,40,.06);
}
.content-card--narrow { max-width: 900px; }
.rich-text h1 {
  margin: 16px 0 18px;
  font-size: clamp(34px, 4.4vw, 52px);
  letter-spacing: -.5px;
}
.rich-text h2 {
  margin: 34px 0 12px;
  padding: 0;
  font-size: clamp(23px, 2.7vw, 30px);
  line-height: 1.15;
}
.rich-text h2:first-child,
.rich-text .callout h2 {
  margin-top: 0;
}
.rich-text p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
.rich-text .lead {
  color: var(--text);
  font-size: 18px;
  line-height: 1.75;
}
.content-section {
  margin: 0 0 34px;
  padding: 0 0 34px;
  border-bottom: 1px solid var(--border);
}
.content-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.content-section h2 {
  margin-top: 0;
}
.rich-text ul {
  display: grid;
  gap: 11px;
  margin: 0 0 26px;
}
.rich-text li {
  position: relative;
  padding-left: 31px;
  color: var(--muted);
  line-height: 1.7;
}
.rich-text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .25em;
  width: 19px;
  height: 19px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%2300cfee' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.rich-text a {
  color: var(--cyan-text);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.rich-text .btn { text-decoration: none; }
.rich-text .btn-dark { color: #fff; }
.rich-text .btn-primary { color: var(--navy); }
.callout {
  margin: 28px 0;
  padding: 24px;
  border: 1px solid rgba(0, 168, 194, .18);
  border-radius: var(--radius-lg);
  background: rgba(0, 222, 255, .055);
}
.callout p:last-child { margin-bottom: 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.gallery-copy {
  text-align: left;
}
.gallery-copy .section-title {
  margin-bottom: 28px;
}
.gallery-link {
  display: grid;
  place-items: center;
  min-height: 132px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 1px 2px rgba(16,24,40,.04);
}
.gallery-link:first-child {
  grid-column: 1 / -1;
  min-height: 360px;
}
.gallery-link img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
}
.gallery-link:not(:first-child) img {
  max-height: 120px;
}

.specs {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 1px 2px rgba(16,24,40,.04);
}
.specs td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  vertical-align: top;
}
.specs tr:last-child td { border-bottom: 0; }
.specs td:first-child {
  width: 240px;
  color: var(--text);
  font-weight: 600;
}

/* ---------- Code/documentation blocks ---------- */
.code-block{
	margin:22px 0 28px;
	padding:20px;
	width:100%;
	max-width:100%;
	overflow:hidden;
	white-space:pre-wrap;
	box-sizing:border-box;
	border:1px solid rgba(0,168,194,.18);
	border-radius:var(--radius-lg);
	background:#172033;
	box-shadow:0 18px 44px rgba(30,41,63,.12);
}

.code-block code{
	display:block;
	color:#e8f1ff;
	font:500 14px/1.7 ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono",monospace;
	white-space:pre-wrap;
}
.code-block .muted-code { color: #9aa4b6; }
.code-block .accent-code { color: var(--cyan); }

.addons-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 12px 34px;
  box-shadow: 0 8px 30px rgba(16,24,40,.04);
}
.addons-title { font-size: 22px; padding: 22px 0 4px; }
.addon-list { display: flex; flex-direction: column; }
.addon-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.addon-name { font-weight: 500; }
.addon-price { color: var(--muted); font-size: 15px; white-space: nowrap; text-align: right;}
.addon-price strong { font-family: "Space Grotesk", sans-serif; color: var(--text); font-size: 16px; }
.addon-price span{display:block;}
.addon-price .price,
.addon-price .unit{
    display:block;
}

.addons-note { color: var(--muted); font-size: 15px; padding: 22px 0; }

/* =========================================================
   Integrations
   ========================================================= */
.integrations { background: #fff; padding: 72px 0; text-align: center; }
.integrations-title {
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 26px;
}
.integrations-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.integrations-row li {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 13px 26px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 16px;
  box-shadow: 0 1px 2px rgba(16,24,40,.04);
}

/* =========================================================
   FAQ
   ========================================================= */
.faq{background:var(--bg-light);}
.faq-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px 24px;margin-top:44px;align-items:start;}
.faq-item{border:1px solid var(--border);border-radius:12px;box-shadow:0 1px 2px rgba(16,24,40,.04);overflow:hidden;background:#fff;}
.faq-q{width:100%;display:flex;align-items:center;justify-content:space-between;gap:20px;background:none;border:0;cursor:pointer;text-align:left;padding:22px 26px;font-family:"Space Grotesk",sans-serif;font-weight:600;font-size:18px;color:var(--text);}
.faq-sign{color:var(--cyan-text);font-size:24px;font-weight:400;line-height:1;flex-shrink:0;transition:transform .2s ease;}
.faq-item.open .faq-sign{color:var(--muted);}
.faq-a{max-height:0;overflow:hidden;transition:max-height .3s ease;}
.faq-a p{padding:0 26px 22px;color:var(--muted);font-size:16px;}


/* SHOP */
.shop-link{
    position:relative;
    display:inline-block;
}

.shop-count{
    position:absolute;
    top:-5px;
    right:-18px;

    width:18px;
    aspect-ratio:1;

    display:grid;
    place-items:center;

    border-radius:50%;
    background:var(--orange);
    color:var(--navy);

    font:700 10px/1 "Space Grotesk",sans-serif;

    box-shadow:0 0 0 2px var(--navy);
}


/* =========================================================
   CTA
   ========================================================= */
.cta {
  background: var(--navy);
  background-image: radial-gradient(80% 120% at 50% 0%, rgba(23,150,180,.5), transparent 55%);
  color: #fff;
  text-align: center;
  padding: 96px 0;
}
.cta-title {
  font-size: clamp(30px, 4.6vw, 48px);
  letter-spacing: -.5px;
  max-width: 860px;
  margin: 0 auto 34px;
}
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.cta .btn-dark { background: #26324c; }
.cta .btn-dark:hover { background: #2e3b58; }
.cta p{color: #fff;margin-left:0px;margin-bottom:30px;}

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--navy-dark); color: #cbd2de; padding: 56px 0 28px; }
.site-footer p{color: #cbd2de;}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand address { font-style: normal; display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.footer-brand a:hover { color: #fff; }
.footer-col h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #8a93a4;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-hours { font-size: 15px; }
.footer-col a:hover { color: #fff; }
.footer-hours { color: #cbd2de; }
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom p { color: #8a93a4; font-size: 14px; margin:0px; }

/* =========================================================
   Reveal animation
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}




/* =========================================================
   KLOKSYSTEEM PAGINA
   ========================================================= */
.kloksysteem-page .site-header {
  background: var(--navy);
  box-shadow: 0 6px 24px rgba(15, 23, 42, .18);
}

.page-head {
  background: var(--navy);
  color: #fff;
  padding-top: 150px;
  padding-bottom: 64px;
}
.page-head h1 { color: #fff; font-size: clamp(40px, 5vw, 64px); letter-spacing: -.7px; }
.page-head p { color: var(--hero-sub); font-size: 18px; margin: 18px 0 0; max-width: 720px; }

.section-soft { background: var(--bg-light); }
.section-darker { background: var(--bg-darker); }
.center-copy { max-width: 940px; margin-inline: auto; text-align: center; }
.center-copy .pill { width: fit-content; margin-inline: auto; align-self: center; }
.center-copy .section-title,
.center-copy .section-title-centered { max-width: none; }
.text-link { color: var(--cyan-text); text-decoration: underline; text-underline-offset: 3px; }
.flush { margin: 0; }
.note-text { max-width: 900px; margin: 32px auto 0; text-align: center; }
.button-row { margin-top: 24px; }

.media-grid {
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(0, 1fr);
  gap: clamp(42px, 6vw, 70px);
  align-items: center;
}
.split-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.media-grid.media-grid--natural{align-items:start;}

.media-grid--hero { grid-template-columns: minmax(340px, .48fr) minmax(0, 1fr); gap: clamp(42px, 6vw, 86px); }
.media-grid--reverse { grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr); }
.media-visual { min-width: 0; text-align: center; }
.media-visual > img { max-height: 520px; margin: 0 auto; object-fit: contain; filter: drop-shadow(0 24px 34px rgba(30, 41, 63, .16)); }
.media-visual--hero > img { width: 100%; max-height: none; filter: drop-shadow(0 28px 38px rgba(30, 41, 63, .15)); }
.media-visual--narrow > img { max-width: 72%; }
.media-copy .section-title { margin-bottom: 24px; }
.media-copy p { color: var(--muted); font-size: 17px; line-height: 1.75; }

.icon-stack { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.icon-stack > .btn { margin-top: 10px; }
.icon-card { display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 16px; width: 100%; background: #fff; border-color: var(--border); }
.icon-card h3 { color: var(--text); font-size: 18px; }
.icon-card p { color: var(--muted); margin: 8px 0 0; }
.light-icon { background: rgba(0, 222, 255, .13); }
.light-icon svg { fill: var(--cyan); }

.check-card { margin-top: 26px; text-align: left; }
.check-card .plan-list { margin-bottom: 22px; }

.three-up,
.platform-grid.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.section-footer-text { max-width: 960px; margin: 42px auto 0; color: #fff; font-size: 20px; line-height: 1.8; text-align: center; }
.video-frame { max-width: 980px; margin: 0 auto; text-align: center; }
.video-frame video { width: 100%; max-width: 900px; border-radius: var(--radius-lg); box-shadow: 0 18px 48px rgba(30, 41, 63, .12); }
.embed-frame {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 48px rgba(30, 41, 63, .10);
}
.embed-frame iframe {
  display: block;
  width: 100%;
  min-height: 460px;
  border: 0;
}
.question-block { text-align: left; }
.video-content h2{margin-top:15px;}

/* USP STACK */
.usp-stack{display:flex;flex-direction:column;gap:0;margin-top:32px;}
.usp-item{position:relative;display:grid;grid-template-columns:48px minmax(0,1fr);gap:18px;align-items:start;padding:0 0 28px;}
.usp-item:last-child{padding-bottom:0;}
.usp-item:not(:last-child)::after{content:"";position:absolute;left:23px;top:47px;bottom:0;width:2px;background:rgba(0,222,255,.55);}
.usp-icon{position:relative;z-index:1;width:48px;height:48px;display:grid;place-items:center;border-radius:50%;background:#fff;border:1px solid rgba(0,222,255,.28);box-shadow:0 4px 14px rgba(30,41,63,.04);}
.usp-icon svg{width:21px;height:21px;fill:var(--cyan-text);}
.usp-copy{padding-top:3px;}
.usp-copy h3{margin:0 0 4px;color:var(--navy);font-size:18px;line-height:1.3;font-weight:700;}
.usp-copy p{margin:0;color:var(--muted);font-size:16px;line-height:1.55;}

/* kloksysteem 3 opties */

.clock-options{position:relative;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:0;margin-top:48px;}
.clock-option{position:relative;padding:0 48px 0 24px;min-width:0;}
.clock-option:first-child{padding-left:0;}
.clock-option:last-child{padding-right:0;}
.clock-options::before{content:"";position:absolute;top:57px;left:58px;right:calc(33.333% - 58px);height:2px;background:rgba(0,174,207,.55);z-index:0;}
.clock-option:not(:last-child)::after{display:none;}
.clock-option-icon{position:relative;z-index:1;width:116px;height:116px;display:grid;place-items:center;margin:0 0 30px;border-radius:50%;background:#fff;border:1px solid rgba(0,222,255,.28);box-shadow:0 8px 24px rgba(30,41,63,.08);}
.clock-option-icon svg{width:42px;height:42px;fill:var(--cyan-text);}
.clock-option-content h3{margin:0;color:var(--navy);font-size:22px;line-height:1.25;font-weight:700;}
.clock-option-line{display:block;width:34px;height:2px;margin:18px 0;background:var(--cyan-text);}
.clock-option-content p{margin:0;color:var(--muted);font-size:16px;line-height:1.7;}
.clock-option-link{display:inline-flex;align-items:center;gap:6px;margin-top:18px;color:var(--cyan-text);font-size:15px;font-weight:600;}
.clock-option-link:hover{text-decoration:underline;text-underline-offset:3px;}
.way-card > .clock-option-link{margin-top:auto;}
.clock-options-note{display:grid;grid-template-columns:44px minmax(0,1fr);gap:18px;align-items:center;margin-top:48px;padding:22px 28px;border:1px solid rgba(0,174,207,.16);border-radius:14px;background:linear-gradient(90deg,rgba(0,222,255,.055),rgba(0,222,255,.018));}
.clock-options-note-icon{width:38px;height:38px;display:grid;place-items:center;border:2px solid var(--cyan-text);border-radius:50%;color:var(--cyan-text);font-family:"Space Grotesk",sans-serif;font-size:20px;font-weight:700;}
.clock-options-note p{margin:0;color:var(--muted);font-size:15px;line-height:1.65;}
.clock-options-note a{color:var(--cyan-text);font-weight:600;text-decoration:underline;text-underline-offset:3px;}

/* footer icons */
.contact-icon{width:18px; height:18px; flex:0 0 18px; fill:none; stroke:var(--cyan); stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round;}
.footer-brand address a{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:10px;
}
.copyright-icon{
    width:18px;
    height:18px;
    fill:none;
    stroke:var(--cyan);
    stroke-width:1.8;
    stroke-linecap:round;
    stroke-linejoin:round;
}
.footer-bottom .left p{
    display:flex;
    align-items:center;
    gap:15px;
}
.opening-time{display:inline-flex;align-items:center;gap:5px;}
.opening-icon{width:16px;height:16px;flex:0 0 16px;fill:none;stroke:var(--cyan);stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}
.opening-icon{
    width:18px;
    height:18px;
    flex:0 0 18px;
    fill:none;
    stroke:var(--cyan);
    stroke-width:1.8;
    stroke-linecap:round;
    stroke-linejoin:round;
}

/****** CUSTOM PAUL *****/
img.mapje{max-width:150px;margin-top:5px;}
.left{float:left;}
.right{float:right;}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 901px) {
  .main-nav,
  .header-cta { display: none; }
  .menu-toggle { display: inline-flex; }

  .hero { padding: 120px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-copy { display: contents; }
  .hero-copy .pill { order: 1; justify-self: start; }
  .hero-copy h1 { order: 2; }
  .hero-copy { order: 3; }
  .hero-sub { order: 3; margin-bottom:0px;}
  .hero-card { order: 4; margin: 25px 0 32px; }
  .hero-actions { order: 5; }
  .hero-proof { order: 6; }

  .hero.hero-white .hero-copy .pill{order:1;}
  .hero.hero-white .hero-copy h1{order:2;}
  .hero.hero-white .hero-sub{order:3;}
  .hero.hero-white .usp-stack{order:4;}
  .hero.hero-white .hero-card{order:5;margin:32px 0;}
  .hero.hero-white .hero-actions{order:6;margin-top:0;}

  .cards-3 { grid-template-columns: 1fr; }
  .way-card--row { grid-template-columns: 1fr; }
  .item-media { height: 300px; }
  .order-item { grid-template-columns: 1fr; }
  .order-media { min-height: 260px; }
  .kloksysteem-grid { grid-template-columns: 1fr; gap: 44px; }
  .kloksysteem-visual { order: -1; }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid,
  .industries-grid { grid-template-columns: repeat(2, 1fr); }

    .platform-grid-8{grid-template-columns:repeat(2,1fr); }


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

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }

  .hours-control-grid{grid-template-columns:1fr;gap:40px;}
  .hours-control-content{max-width:none;}
  .hours-control-visual{width:100%;}

  .mobile-nav .shop-link{
      display:flex;
      align-items:center;
      justify-content:flex-start;
      gap:10px;
  }

.mobile-nav .shop-count{
    position:relative;
    top:-4px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:24px;
    height:24px;
    padding:0 7px;
    margin-left:0px;
    border-radius:999px;
    background:var(--orange);
    color:var(--navy);
    font-size:12px;
    font-weight:700;
    line-height:1;
}

  .media-grid, .media-grid--hero, .media-grid--reverse { grid-template-columns: 1fr; }
  .media-grid .media-copy{order:1;}
  .media-grid .media-visual{order:2;}

  .media-grid.media-grid--natural{align-items:start;}  
  .media-grid.media-grid--natural > *{order:0;}

  .three-up,
  .platform-grid.three-up { grid-template-columns: 1fr; }

  .platform-card p {font-size: 17px;}

  .timeline {
    max-width: none;
    margin-top: 42px;
  }
  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    display: block;
    margin-bottom: 30px;
  }
  .timeline-item:nth-child(odd) .timeline-card,
  .timeline-item:nth-child(even) .timeline-card,
  .timeline-card {
    grid-column: auto;
    width: 100%;
  }
  .timeline-marker {
    grid-column: auto;
    justify-content: center;
    padding-top: 0;
    padding-bottom: 16px;
  }
  .timeline-marker::before {
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
  }
  .timeline-marker span {
    min-height: 30px;
    padding: 0 11px;
    font-size: 12px;
  }
  .timeline-card {
    padding: 24px;
  }

  .clock-options{display:flex;flex-direction:column;gap:0;margin-top:36px;}
  .clock-options::before{display:none;}
  .clock-option{display:grid;grid-template-columns:88px minmax(0,1fr);gap:22px;padding:0 0 32px;}
  .clock-option:first-child{padding-left:0;}
  .clock-option:last-child{padding-right:0;padding-bottom:0;}
  .clock-option:not(:last-child)::after{display:block;content:"";position:absolute;top:86px;bottom:0;left:43px;right:auto;width:2px;height:auto;background:rgba(0,174,207,.55);z-index:0;}
  .clock-option-icon{width:88px;height:88px;margin:0;}
  .clock-option-icon svg{width:34px;height:34px;}
  .clock-option-content{padding-top:5px;}
  .clock-option-content h3{font-size:19px;}
  .clock-option-line{display:none;}
  .clock-option-content p{margin-top:8px;font-size:14px;line-height:1.6;}
  .clock-option-link{margin-top:8px;font-size:14px;}
  .clock-options-note{grid-template-columns:36px minmax(0,1fr);gap:14px;margin-top:32px;padding:18px;}
  .clock-options-note-icon{width:34px;height:34px;font-size:17px;}
  .clock-options-note p{font-size:16px;line-height:1.6;}

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

  .section--first{padding-top:120px;}
  .faq-list{grid-template-columns:1fr;}

  .code-block{
		width:100%;
		max-width:100%;
		padding:16px;
		box-sizing:border-box;
		overflow:hidden;
	}

  .code-block code{
		width:100%;
		max-width:100%;
		white-space:pre-wrap;
		overflow-wrap:anywhere;
		word-break:normal;
	}

  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-link:first-child { min-height: 280px; }


}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }

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

  .platform-grid,
  .feature-grid,
  .industries-grid { grid-template-columns: 1fr; }
  .kloksysteem-grid { gap: 32px; }
  .kloksysteem-visual img { max-height: 420px; }

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

  .plan-card,
  .addons-card { padding: 24px; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .embed-frame iframe { min-height: 340px; }
  .addons-card { padding-top: 4px; padding-bottom: 4px; }
  .addon-list li{flex-direction:column; align-items:flex-start; gap:8px;}
  .addon-price{white-space:normal;text-align:left;}
  .addon-price span{display:block;}
  .addon-name{width:100%;}
  .addon-price .price, .addon-price .unit{display:inline;}

  .platform-grid-8{
    grid-template-columns:1fr;
  }

  .clock-option{grid-template-columns:72px minmax(0,1fr);gap:18px;padding-bottom:28px;}
  .clock-option:not(:last-child)::after{top:71px;left:35px;}
  .clock-option-icon{width:72px;height:72px;}
  .clock-option-icon svg{width:28px;height:28px;}
  .clock-option-content{padding-top:2px;}
  .clock-option-content h3{font-size:19px;}
  .clock-option-content p{font-size:18px;}
  .clock-option-link{font-size:18px;}

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-link,
  .gallery-link:first-child { min-height: 220px; }
  .item-actions {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 18px;
  }
  .item-actions .btn {
    width: 100%;
  }
  .order-item {
    padding: 20px;
    gap: 20px;
  }
  .order-details,
  .choice-grid {
    grid-template-columns: 1fr;
  }
  .order-details div:last-child {
    text-align: left;
  }
  .order-details div:nth-child(2) {
    text-align: left;
  }
  .summary-actions {
    flex-direction: column;
  }
  .summary-actions .btn {
    width: 100%;
  }
  .summary-row,
  .summary-total {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .specs,
  .specs tbody,
  .specs tr,
  .specs td {
    display: block;
    width: 100%;
  }
  .specs {
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .specs tr {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: #fff;
  }
  .specs td { border: 0; }
  .specs td:first-child {
    width: auto;
    border-bottom: 1px solid var(--border);
    background: var(--bg-light);
  }

  .page-head { padding-top: 120px; padding-bottom: 46px; }
  .icon-stack > .btn,
  .check-card .btn,
  .button-row .btn,
  .question-block .btn { width: 100%; }
  .button-row .btn { margin-bottom: 12px; }
  .rich-text .button-row .btn { margin-bottom: 12px; }
  .media-visual--narrow > img { max-width: 82%; }
  .usp-stack{margin-top:26px;}
  .usp-item{grid-template-columns:44px minmax(0,1fr);gap:15px;padding-bottom:24px;}
  .usp-icon{width:44px;height:44px;}
  .usp-icon svg{width:19px;height:19px;}
  .usp-item:not(:last-child)::after{left:21px;top:43px;}
  .usp-copy h3{font-size:19px;}
  .usp-copy p{font-size:18px;}

  .section--first{padding-top:120px;}

}
