/* Font */
@font-face {
  font-family: "OktoPOSBook-Regular";
  src: url("fonts/OktoPOSneueBook-Regular.woff2") format("woff2"), url("fonts/OktoPOSneueBook-Regular.woff") format("woff");
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "OktoPOSBook-Bold";
  src: url("fonts/OktoPOSneueBook-Bold.woff2") format("woff2"), url("fonts/OktoPOSneueBook-Bold.woff") format("woff");
  font-style: normal;
  font-weight: bold;
  font-display: swap;
}
@font-face {
  font-family:"OktoposIcon-Regular";
  font-display:swap;
  src:url("fonts/OktoposIcon-Regular.woff2") format("woff2"), url("fonts/OktoposIcon-Regular.woff") format("woff");
}
@font-face {
  font-family:"OktoPOSCash-Regular";
  font-display:swap;
  src:url("fonts/OktoPOSCash-Regular.woff2") format("woff2"), url("fonts/OktoPOSCash-Regular.woff") format("woff");
}

/* icons */
span[data-icon="check"]:after { font-family: OktoPOSCash-Regular, sans-serif; content: "\E071"; }
/* cash register buttons */
span[data-icon="article-discount"]:after { font-family: OktoPOSCash-Regular, sans-serif; content: "\E001"; }
span[data-icon="sum-discount"]:after { font-family: OktoPOSCash-Regular, sans-serif; content: "\E002"; }
span[data-icon="remove-discount"]:after { font-family: OktoPOSCash-Regular, sans-serif; content: "\E009"; }
span[data-icon="split-merge"]:after { font-family: OktoPOSCash-Regular, sans-serif; content: "\E011"; }
span[data-icon="course-check"]:after { font-family: OktoPOSCash-Regular, sans-serif; content: "\E013"; }
span[data-icon="side-orders"]:after { font-family: OktoPOSCash-Regular, sans-serif; content: "\E014"; }
span[data-icon="bonuspoints"]:after { font-family: OktoPOSCash-Regular, sans-serif; content: "\E021"; }
span[data-icon="change-table"]:after { font-family: OktoPOSCash-Regular, sans-serif; content: "\E026"; }
span[data-icon="d-chevron-right"]:after { font-family: OktoPOSCash-Regular, sans-serif; content: "\E032"; }
span[data-icon="d-chevron-left"]:after { font-family: OktoPOSCash-Regular, sans-serif; content: "\E033"; }
span[data-icon="tables"]:after { font-family: OktoPOSCash-Regular, sans-serif; content: "\E042"; }
span[data-icon="storno"]:after { font-family: OktoPOSCash-Regular, sans-serif; content: "\E043"; }
span[data-icon="memo"]:after { font-family: OktoPOSCash-Regular, sans-serif; content: "\E047"; }
span[data-icon="payment"]:after { font-family: OktoPOSCash-Regular, sans-serif; content: "\E057"; }
span[data-icon="power"]:after { font-family: OktoPOSCash-Regular, sans-serif; content: "\E064"; }
span[data-icon="amount-plus"]:after { font-family: OktoPOSCash-Regular, sans-serif; content: "\E075"; }
span[data-icon="amount-minus"]:after { font-family: OktoPOSCash-Regular, sans-serif; content: "\E076"; }
span[data-icon="take-away"]:after { font-family: OktoPOSCash-Regular, sans-serif; content: "\E224"; }
span[data-icon="delivery"]:after { font-family: OktoPOSCash-Regular, sans-serif; content: "\E225"; }
span[data-icon="inhouse"]:after { font-family: OktoPOSCash-Regular, sans-serif; content: "\E226"; }
span[data-icon="home"]:after { font-family: OktoPOSCash-Regular, sans-serif; content: "\E242"; }
span[data-icon="hot-drinks"]:after { font-family: OktoPOSCash-Regular, sans-serif; content: "\E257"; }
span[data-icon="dessert"]:after { font-family: OktoPOSCash-Regular, sans-serif; content: "\E258"; }
span[data-icon="bread"]:after { font-family: OktoPOSCash-Regular, sans-serif; content: "\E263"; }
span[data-icon="shop"]:after { font-family: OktoPOSCash-Regular, sans-serif; content: "\E284"; }
span[data-icon="food"]:after { font-family: OktoPOSCash-Regular, sans-serif; content: "\E368"; }
span[data-icon="bar-drinks"]:after { font-family: OktoPOSCash-Regular, sans-serif; content: "\E369"; }

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
/* Colors */
:root {
  --oktoblue: #009de0;
  --black: #000000;
  --darkgray: #333333;
  --lightgrey: #f2f2f2;
  --midgray: #e0e0e0;
  --white: #ffffff;
  --red: rgba(255,70,50,0.75);

  --green: #1ba81e;
  --beige: #c4ad83;
  --lilac: #a464b8;
  --maroon: #8f2f54;
  --darkblue: #054cda;
  --grey: #6c5d62;
  --lightblue: #05b0ce;
  --orange: #d18b2b;
  --lightgreen: #90d101;
  --purple: #b02fad;
  --neongreen: #25f32a;
}

html, body { height: 100%; }
body {
  font-family: 'OktoPOSBook-Regular', 'Verdana', sans-serif;
  font-size: 24px;
  color: var(--darkgray);
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

/* links */
a, a:link, a:visited {
  color: var(--black);
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: var(--oktoblue);
}

/* titles */
h1, h2, h3 {
  font-family: 'OktoPOSBook-Bold', 'Verdana', sans-serif;
  margin-bottom: 15px;
}
h1 { font-size: 60px; }
h2 { font-size: 36px; }

/* ── HEADER ── */
header {
  font-family: 'OktoPOSBook-Bold', 'Verdana', sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 75px;
  overflow: visible;
  border-bottom: 4px solid var(--midgray);
  background-color: var(--white);
  box-shadow: 0 -1px 5px 0 var(--darkgray);
}
.header-inner {
  max-width: 1680px;
  margin: 0 auto;
  height: 100%;
  padding: 0 48px;
  display: flex;
  align-items: flex-start;
}
.header-inner a.logo {
  display: flex;
  padding: 20px;
  align-self: start;
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  position: relative;
}
/* Logo link - shadow below the header line */
.header-inner a:first-child::after {
  content: '';
  position: absolute;
  top: 75px;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 0 0 22px 22px;
  box-shadow:
    0 8px 20px rgba(0,0,0,0.1),
    0 2px 8px  rgba(0,0,0,0.1);
  pointer-events: none;
  z-index: -1;
}
header img {
  height: 200px;
  width: auto;
  border-radius: 0 0 20px 20px;
}
.header-contact {
  font-size: 18px;
  color: var(--oktoblue);
  padding-top: 25px;
  margin-left: auto;
}

/* Scroll progress bar */
#scroll-progress {
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 4px;
  width: 0;
  background: #009de0;
}

/* MAIN */
main { margin-top: 75px; }

/* Hero area */
.hero {
  background: url('../images/OktoPOS-Particle.jpg') center/cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 120px 50px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hero-content {
  max-width: 1024px;
}
.hero h1 {
  margin-bottom: 24px;
  line-height: 1.2;
  color: var(--white);
}
.hero p {
  max-width: 840px;
  color: rgba(255,255,255,0.82);
  margin: 0 auto;
  line-height: 1.5;
  font-size: 26px;
}

/* Device row */
.hero-devices {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  padding-bottom: 90px;
}
/* Individual device wrapper */
.device {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* Terminal sits lower for dynamic stagger */
.device-terminal {
  transform: translateY(90px);
}

/* Device frame */
.device-body {
  position: relative;
  isolation: isolate;
  background: linear-gradient(160deg, #272729 0%, #1c1c1e 45%, #141416 100%);
  border: 2px solid #e3e3e3;
  border-radius: 30px;
  padding: 12px;
  box-shadow:
    0 0 60px rgba(190,190,190,0.45),
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 1px 0 rgba(255,255,255,0.09),
    inset 0 -2px 6px rgba(0,0,0,0.45);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Casing */
.device-body::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(to bottom, rgba(255,255,255,0.06) 0%, transparent 28%);
  pointer-events: none;
  z-index: -1;
}

.device-screen {
  border-radius: 2px 0 0 2px;
  overflow: hidden;
  background: #0f172a;
}

/* OktoPOS Cash register (Landscape) */
.device-cash-register .device-body {
  width: 720px;
  border-width: 2px;
  border-radius: 20px;
  padding: 40px;
}

.screen-cash-register {
  display: flex;
  flex-direction: column;
  height: 450px;
}

/* --- Upper half --- */
.cash-register-top {
  display: flex;
  height: 215px;
  flex-shrink: 0;
}

/* Functions buttons (Links) */
.cash-register-functions {
  width: 275px;
  background: #253238;
  color: var(--oktoblue);
  display: flex;
  flex-direction: column;
  padding: 0 2px 2px 2px;
  gap: 0;
  flex-shrink: 0;
}

.crf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  flex: 1;
}
.crf-btn {
  background: #39455f;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: var(--oktoblue);
  text-align: center;
  padding: 3px 2px;
  gap: 3px;
  font-family: 'OktoPOSBook-Regular', Verdana, sans-serif;
  line-height: 1.2;
}
.crf-btn span {
  font-size: 24px;
  line-height: 0.8;
}
.cr-display {
  display: grid;
  grid-template-columns: 1fr auto;
  border: 1px solid #2f2f2f;
  border-radius: 2px;
  background: #253238;
}
/* Function nav */
.crf-nav {
  display: flex;
  gap: 3px;
  padding-top: 4px;
}
.crf-nav-btn {
  flex: 1;
  border-radius: 5px;
  color: var(--oktoblue);
  font-size: 15px;
  text-align: center;
  padding: 4px 0;
}
.crf-nav-btn span {
  font-size: 22px;
  line-height: 0.8;
}
.crf-nav-btn--red { color: var(--red); }

/* Order panel */
.cr-order-panel {
  flex: 1;
  background: #d1dddd;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.crop-items {
  flex: 1;
  padding: 8px 10px 3px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.crop-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #1a2535;
  gap: 6px;
  padding: 4px 5px;
  border-radius: 3px;
  font-family: 'OktoPOSBook-Regular', Verdana, sans-serif;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.crop-item-qty   {
  font-size: 10px;
  width: 22px;
  text-align: left;
  opacity: 0.65;
  font-family: 'OktoPOSBook-Bold', Verdana, sans-serif;
}
.crop-item-name  {
  font-size: 10px;
  flex: 1;
  text-align: left;
}
.crop-item-price {
  font-size: 10px;
  width: 60px;
  text-align: left;
  font-family: 'OktoPOSBook-Bold', Verdana, sans-serif;
}

/* Side bar (Time-Date / INHOUSE / TAKE AWAY / DELIVERY) */
.cr-sidebar {
  width: 64px;
  background: #253238;
  display: flex;
  gap: 1px;
  flex-direction: column;
  border-radius: 0 2px 2px 0;
  flex-shrink: 0;
  color: rgb(0,157,224);
}
.crs-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 8.5px;
  text-align: center;
  border-radius: 4px;
  font-family: 'OktoPOSBook-Bold', Verdana, sans-serif;
  letter-spacing: 0.3px;
  line-height: 1.4;
  padding: 3px 2px;
}
.crs-btn span {
  font-size: 22px;
  line-height: 0.8;
}

/* Status bar */
.cr-statusbar {
  height: 22px;
  background: #253238;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 12px;
  gap: 85px;
  font-size: 12px;
  color: var(--oktoblue);
  font-family: 'OktoPOSBook-Bold', Verdana, sans-serif;
}

/* Productgrid (9 rows) */
.cr-product-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 3px;
  padding: 2px;
  background: #253238;
  flex: 1;
}
.cr-product-btn,
.cr-category-btn {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border-radius: 4px;
  font-size: 10px;
  color: rgba(255,255,255,0.95);
  font-family: 'OktoPOSBook-Bold', Verdana, sans-serif;
  text-align: center;
  padding: 2px 3px;
  line-height: 1.25;
}
.cr-category-btn span {
  font-size: 22px;
  line-height: 0.9;
}
.cr-category-btn { font-size: 9px; }

/* Cash register buttoncolors */
.cr-btn--green { background: var(--green); }
.cr-btn--beige { background: var(--beige); }
.cr-btn--lilac { background: var(--lilac); }
.cr-btn--maroon { background: var(--maroon); }
.cr-btn--darkblue { background: var(--darkblue); }
.cr-btn--grey { background: var(--grey); }
.cr-btn--lightblue { background: var(--lightblue); }
.cr-btn--orange { background: var(--orange); }
.cr-btn--lightgreen { background: var(--lightgreen); }
.cr-btn--purple { background: var(--purple); }
.cr-btn--neongreen { background-color: var(--neongreen); }
/* Cash register btn text */
.cr-btn-text--dark { color: rgba(0,0,0,0.72); }

/* OktoFIN Terminal AMS1 (Slim Android, ~67×120mm → 1:1.8) */
.device-terminal .device-body {
  width: 230px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 10px 40px;
  gap: 8px;
}
.screen-terminal {
  padding: 16px 14px 12px;
  height: 350px;
  width: 100%;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.terminal-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.terminal-amount {
  font-size: 28px;
  color: white;
  font-family: 'OktoPOSBook-Bold', Verdana, sans-serif;
  transition: opacity 0.18s ease, transform 0.18s ease, color 0.3s ease;
}
.terminal-prompt {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.terminal-nfc {
  color: rgba(0,157,224,0.65);
  font-size: 18px;
  letter-spacing: 3px;
  margin: 2px 0;
  transition: opacity 0.3s ease;
}

/* NFC icon pulse animation */
@keyframes nfc-pulse {
  0%, 100% {
    opacity: 0.65;
    transform: scale(1);
    letter-spacing: 3px;
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
    letter-spacing: 5px;
  }
}
/* Terminal screen animation display steps */
#terminalScreen[data-state="idle"] .terminal-nfc,
#terminalScreen[data-state="card"] .terminal-nfc { animation: nfc-pulse 2s ease-in-out infinite; }
#terminalScreen[data-state="processing"] .terminal-nfc {
  opacity: 0;
  animation: none;
}
#terminalScreen[data-state="success"] .terminal-amount {
  color: #21a12f;
  text-shadow: 0 0 18px rgba(33,161,47,0.45);
}
#terminalScreen[data-state="success"] .terminal-nfc {
  opacity: 0;
  animation: none;
}
/* Card provider logo placeholders */
.terminal-cards {
  display: flex;
  gap: 6px;
  margin-top: auto;
  justify-content: center;
}
.card-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  font-family: 'OktoPOSBook-Bold', Verdana, sans-serif;
  letter-spacing: 0.5px;
}

.device-terminal .device-body { z-index: 1; }

/* Creditcard dummy */
.terminal-device-wrap { position: relative; }
.terminal-card-insert {
  position: absolute;
  top: 42%;
  left: 100%;
  transform: translateY(-50%) translateX(30px) rotate(4deg);
  width: 270px;
  height: 170px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 45%, #0f3460 100%);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow:
    0 10px 32px rgba(0,0,0,0.65),
    inset 0 1px 0 rgba(255,255,255,0.12);
  z-index: 2;
  overflow: hidden;
  opacity: 0;
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease;
}
.terminal-card-insert::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, transparent 55%);
  pointer-events: none;
}
.terminal-card-insert.is-inserted {
  transform: translateY(-50%) translateX(-120px) rotate(0deg);
  opacity: 1;
}
/* NFC icon/logo */
.tci-nfc {
  position: absolute;
  top: 12px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.tci-nfc span {
  display: block;
  border: 2px solid rgba(255,255,255,0.55);
  border-left: none;
  border-radius: 0 50px 50px 0;
}
.tci-nfc span:nth-child(1) { width: 5px; height: 9px;  }
.tci-nfc span:nth-child(2) { width: 6px; height: 15px; }
.tci-nfc span:nth-child(3) { width: 8px; height: 21px; }
/* Cardnumber placeholder */
.tci-number {
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.6);
  font-family: 'OktoPOSBook-Regular', monospace;
}
/* Card name */
.tci-label {
  position: absolute;
  bottom: 12px;
  right: 14px;
  font-size: 13px;
  font-family: 'OktoPOSBook-Bold', Verdana, sans-serif;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.5px;
}

/* Connection between devices (dashed line) */
.device-connection {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 30px;
  margin-top: 253px;
}
.conn-line {
  width: 175px;
  height: 3px;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(0,157,224,1) 0,
    rgba(0,157,224,1) 7px,
    transparent 7px,
    transparent 14px
  );
  background-size: 14px 3px;
}

/* Sections */
section {
  padding: 80px 60px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
section p { line-height: 1.5; }

/* About section: split-screen layout */
#about,
#benefits {
  padding: 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.about-split { display: flex; }
section.about-split-content {
  display: grid;
  justify-items: end;
  max-width: none;
  margin: 0;
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
section.about-split-content.is-visible {
  opacity: 1;
  transform: none;
}
.about-split-content div { width: 60%; }
.about-split-image {
  flex: 0 0 50%;
  overflow: hidden;
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease 0.15s, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}
.about-split-image.is-visible {
  opacity: 1;
  transform: none;
}
.about-split-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.07);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}
.about-split-image.is-visible img { transform: scale(1); }

/* Benefits section */
.benefits-split {
  display: flex;
  align-items: stretch;
}
.benefits-split-image {
  flex: 0 0 50%;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.benefits-split-image.is-visible {
  opacity: 1;
  transform: none;
}
.benefits-split-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.07);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.benefits-split-image.is-visible img { transform: scale(1); }
section.benefits-split-content {
  display: grid;
  justify-items: start;
  max-width: none;
  margin: 0;
}
section.benefits-split-content h2 {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease 0.1s, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}
section.benefits-split-content.is-visible h2 {
  opacity: 1;
  transform: none;
}
.benefits-split-content .benefits-split-content-inner { width: 60%; }

.benefit {
  background-color: var(--white);
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
  border-radius: 10px;
  padding: 20px 20px 18px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 14px rgba(0,0,0,0.05);
  opacity: 0;
  transform: translateY(20px);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.22s ease,
    opacity 0.45s ease;
}
.benefit::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--oktoblue);
  border-radius: 10px 10px 0 0;
}
.benefit.is-visible {
  opacity: 1;
  transform: none;
}
.benefit:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.06), 0 14px 32px rgba(0,157,224,0.13);
}
.benefit h3 {
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--black);
}
.benefit p {
  font-size: 18px;
  color: var(--darkgray);
  line-height: 1.5;
  max-width: none;
  margin-bottom: 0;
}
.benefit span {
  font-size: 75px;
  text-align: center;
  color: var(--oktoblue);
  line-height: 1;
}

/* Support section */
.support-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.support-list li {
  color: var(--darkgray);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}
.support-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--oktoblue);
  font-weight: bold;
}

/* Target tags */
.target-tags {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.tag {
  background-color: var(--oktoblue);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: bold;
}

/* ── FOOTER ── */
footer {
  background-color: var(--midgray);
  color: var(--black);
  font-size: 14px;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-inner {
  width: 1680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 150px;
  align-items: center;
}
.footer-inner a { justify-self: end; }
footer a, footer a:link, footer a:visited {
  color: var(--black);
  text-decoration: none;
}
footer a:hover {
  color: var(--oktoblue);
  text-decoration: none;
}

.text-left { text-align: left; }

/* Benefits 3-column (for key benefit tiles) */
.benefits {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
  margin-top: 16px;
}

#oktofin-support {
  background-color: var(--lightgrey);
  padding: 40px 0;
}

/* Footnote */
.footnote {
  font-size: 14px;
  color: #888;
  margin-top: 24px;
  line-height: 1.5;
}

@media (min-width: 1281px) {
  .benefit p { font-size: 20px; }
}

/* ****************** */
/* --- RESPONSIVE --- */
/* --- BREAK POINT: 1800px --- */
@media (max-width: 1800px) {
  .about-split-content div { width: 80%; }
  .benefits-split-content .benefits-split-content-inner { width: 80%; }
}

/* --- BREAK POINT: 1440px --- */
@media (max-width: 1440px) {
  header img { height: 170px; }

  .hero { padding-top: 105px; }
  .hero h1 { font-size: 52px; }

  .about-split-content div,
  .benefits-split-content .benefits-split-content-inner { width: 100%; }
}

/* ── BREAK POINT: 1280px ── */
@media (max-width: 1280px) {
  header img { height: 140px; }
  .hero { padding: 85px 40px 80px; }
  .hero h1 { font-size: 44px; }
  .hero p { font-size: 22px; }
  .hero-devices {
    transform: scale(0.82);
    transform-origin: top center;
    margin-bottom: -113px;
  }

  section { padding: 56px 40px; }
  #oktofin-support { font-size: 22px; }
  .about-split-content p { font-size: 22px; }
  .benefit p { font-size: 22px; }
}

/* ── BREAK POINT: 1024px ── */
@media (max-width: 1024px) {
  header img { height: 110px; }

  .hero { padding: 65px 32px 80px; }
  .hero h1 { font-size: 38px; }
  .hero p { font-size: 20px; }
  .hero-devices {
    transform: scale(0.62);
    transform-origin: top center;
    margin-bottom: -237px;
  }

  section { padding: 48px 32px; }
}

/* ── BREAK POINT: 992px ── */
@media (max-width: 992px) {
  header img { height: 90px; }

  .hero {
    padding: 50px 24px 64px;
    gap: 40px;
  }
  .hero h1 { font-size: 40px; }
  .hero p { font-size: 24px; }
  .hero-devices {
    flex-direction: column;
    align-items: center;
    padding-bottom: 0;
    transform: none;
    margin-bottom: 0;
  }

  .device-cash-register {
    transform: scale(0.72);
    transform-origin: top center;
    margin-bottom: -149px;
  }
  .device-terminal { transform: none; }

  .device-connection {
    flex-direction: column;
    margin-top: 0;
    padding: 12px 0;
  }
  .conn-line {
    width: 3px;
    height: 30px;
    background-image: repeating-linear-gradient(
      180deg,
      rgba(0,157,224,1) 0,
      rgba(0,157,224,1) 7px,
      transparent 7px,
      transparent 14px
    );
    background-size: 3px 14px;
  }

  .about-split { flex-direction: column; }
  .about-split-image {
    flex: 0 0 auto;
    height: 320px;
    order: -1;
  }
  section.about-split-content { padding: 60px 40px; }

  .benefits-split { flex-direction: column; }
  .benefits-split-image {
    flex: 0 0 auto;
    height: 320px;
  }
  section.benefits-split-content { padding: 60px 40px; }
  section { padding: 40px 40px; }
  .about-split-content div { width: 100%; }
  .benefits-split-content .benefits-split-content-inner { width: 100%; }
}

/* ── BREAK POINT ── */
@media (max-width: 768px) {
  .header-inner { padding: 0 24px; }
  .header-contact { text-align: right; }

  h2 { font-size: 28px; }
  section p { font-size: 18px; }
  .support-list li { font-size: 18px; }

  .hero {
    padding: 50px 24px 64px;
    gap: 40px;
  }
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 20px; }
  .hero-devices {
    flex-direction: column;
    align-items: center;
    padding-bottom: 0;
  }

  .device-cash-register,
  .device-terminal { transform: none; }
  .device-cash-register .device-body { width: min(565px, 94vw); }
  .device-terminal .device-body { width: min(210px, 65vw); }
  .screen-cash-register { height: auto; }

  .cr-product-grid { min-height: 160px; }

  .device-connection {
    flex-direction: column;
    margin-top: 0;
    padding: 12px 0;
  }
  .conn-line {
    width: 3px;
    height: 30px;
    background: repeating-linear-gradient(
      180deg,
      rgba(0,157,224,1) 0,
      rgba(0,157,224,1) 7px,
      transparent 7px,
      transparent 14px
    );
  }

  section { padding: 48px 48px; }
  .about-split { flex-direction: column; }
  .about-split-image {
    flex: 0 0 auto;
    height: 280px;
    order: -1;
  }
  .about-split-content p { font-size: 20px; }
  section.about-split-content { padding: 48px 38px; }

  .benefits-split { flex-direction: column; }
  .benefits-split-image {
    flex: 0 0 auto;
    height: 280px;
  }
  section.benefits-split-content { padding: 48px 38px; }
  .benefits { grid-template-columns: 1fr; }

  footer { padding: 16px 16px; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 0;
    text-align: center;
  }
  .footer-inner a { justify-self: center; }
}

/* ── BREAK POINT: 480px ── */
@media (max-width: 480px) {
  header img { height: 45px; }
  .header-inner { padding: 0 16px; }
  .header-contact { font-size: 16px; }

  h2 { font-size: 24px; }

  .support-list li { font-size: 16px; }

  .hero {
    padding: 20px 16px 40px;
    gap: 24px;
  }
  .hero h1 { font-size: 40px; }
  .hero p { font-size: 17px; }

  .device-cash-register,
  .device-connection { display: none; }
  .device-terminal .device-body { width: min(200px, 60vw); }

  section { padding: 32px 32px; }
  section p { font-size: 17px; }
  .about-split-content p { font-size: 18px; }
  section.about-split-content,
  section.benefits-split-content { padding: 32px 32px; }

  .benefit { grid-template-columns: 56px 1fr; }
  .benefit h3 { font-size: 18px; }
  .benefit p { font-size: 16px; }
  .benefit span { font-size: 52px; }

  .tag {
    font-size: 14px;
    padding: 8px 18px;
  }
  footer { padding: 12px 16px; }
  .footer-inner { padding: 0; }
}

/* zoom override for all browsers that natively support it
   (Chrome/Edge all versions, Safari 4+, Firefox 126+).
   The transform+margin rules above serve as fallback for older Firefox. */
@supports (zoom: 1) {
  @media (max-width: 1280px) {
    .hero-devices { zoom: 0.82; transform: none; margin-bottom: 0; }
  }
  @media (max-width: 1024px) {
    .hero-devices { zoom: 0.62; transform: none; margin-bottom: 0; }
  }
  @media (max-width: 992px) {
    .hero-devices { zoom: 1; transform: none; margin-bottom: 0; }
    .device-cash-register { zoom: 0.72; transform: none; margin-bottom: 0; }
  }
}
