:root {
  --zetra-navy: #2d353c;
  --zetra-navy-2: #20252a;
  --zetra-blue: #348fe2;
  --zetra-teal: #00acac;
  --zetra-amber: #f59c1a;
  --zetra-green: #00acac;
  --zetra-red: #d94841;
  --zetra-ink: #2d353c;
  --zetra-muted: #707478;
  --zetra-border: #d5dbe0;
  --zetra-soft: #f2f3f4;
  --zetra-white: #ffffff;
  --header-height: 72px;
  --shadow-sm: 0 8px 22px rgba(17, 36, 61, 0.08);
  --shadow-md: 0 18px 45px rgba(17, 36, 61, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  min-width: 320px;
  margin: 0;
  font-family: "Open Sans", "Segoe UI", Arial, sans-serif;
  color: var(--zetra-ink);
  background: var(--zetra-soft);
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
}

a:hover {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid rgba(217, 226, 239, 0.8);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

.site-nav {
  width: min(1180px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-mark,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  color: var(--zetra-navy);
}

.brand-symbol {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  color: var(--zetra-white);
  background: var(--zetra-navy);
  box-shadow: inset 0 -3px 0 rgba(245, 158, 11, 0.55);
}

.brand-copy,
.footer-brand {
  font-size: 21px;
  letter-spacing: 0;
}

.brand-copy span,
.footer-brand span {
  color: var(--zetra-amber);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  border-radius: 8px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--zetra-blue);
  background: #edf3ff;
}

.nav-links .nav-cta {
  color: var(--zetra-white);
  background: var(--zetra-blue);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.24);
}

.nav-links .nav-cta:hover {
  color: var(--zetra-white);
  background: #1d4ed8;
  transform: translateY(-1px);
}

.nav-toggle {
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--zetra-border);
  border-radius: 8px;
  color: var(--zetra-navy);
  background: var(--zetra-white);
}

.hero-section {
  min-height: min(820px, 88vh);
  position: relative;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: var(--zetra-white);
  background: var(--zetra-navy);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(10, 24, 43, 0.96) 0%, rgba(10, 24, 43, 0.82) 32%, rgba(10, 24, 43, 0.32) 68%, rgba(10, 24, 43, 0.1) 100%),
    url("../images/zetra-distribution-erp-hero.png");
  background-position: center;
  background-size: cover;
}

.hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: calc(var(--header-height) + 78px) 0 46px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow,
.section-kicker,
.panel-label,
.service-type {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--zetra-amber);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 18px 0 16px;
  font-size: 64px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 10px 16px;
  font-weight: 800;
  text-decoration: none;
  line-height: 1.2;
  white-space: normal;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-accent {
  color: var(--zetra-white);
  background: var(--zetra-amber);
  box-shadow: 0 14px 28px rgba(245, 158, 11, 0.28);
}

.btn-accent:hover {
  color: var(--zetra-white);
  background: #dd8d06;
}

.btn-primary {
  color: var(--zetra-white);
  background: var(--zetra-blue);
}

.btn-primary:hover {
  color: var(--zetra-white);
  background: #1d4ed8;
}

.btn-outline-light {
  color: var(--zetra-white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline-light:hover {
  color: var(--zetra-white);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.14);
}

.hero-metrics {
  max-width: 810px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.hero-metrics div {
  min-height: 96px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.hero-metrics strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

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

.service-overview,
.split-section,
.coffee-section,
.erp-section,
.fleet-section,
.contact-section {
  padding: 82px 0;
}

.service-overview {
  background: var(--zetra-white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading.compact {
  margin-bottom: 26px;
}

.section-heading h2,
.section-copy h2,
.contact-copy h2 {
  margin: 9px 0 12px;
  color: var(--zetra-navy);
  font-size: 38px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0;
}

.section-heading p,
.section-copy p,
.contact-copy p {
  margin: 0;
  color: var(--zetra-muted);
  font-size: 17px;
}

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

.service-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--zetra-border);
  border-radius: 8px;
  background: var(--zetra-white);
  color: var(--zetra-ink);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.42);
  box-shadow: var(--shadow-md);
}

.service-card-primary {
  border-color: rgba(15, 159, 143, 0.42);
}

.service-icon {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--zetra-white);
  background: var(--zetra-navy);
}

.service-card:nth-child(2) .service-icon {
  background: #7c4a23;
}

.service-card:nth-child(3) .service-icon {
  background: var(--zetra-blue);
}

.service-card:nth-child(4) .service-icon {
  background: var(--zetra-teal);
}

.service-card h3 {
  margin: 8px 0 10px;
  color: var(--zetra-navy);
  font-size: 22px;
  font-weight: 800;
}

.service-card p {
  color: var(--zetra-muted);
  margin: 0 0 20px;
}

.service-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--zetra-blue);
  font-weight: 800;
}

.split-section {
  background: #f7fafc;
}

.coffee-section {
  background: #ffffff;
}

.coffee-layout {
  display: grid;
  grid-template-columns: minmax(380px, 1.02fr) minmax(0, 0.98fr);
  gap: 42px;
  align-items: center;
}

.coffee-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--zetra-border);
  border-radius: 8px;
  background: #f8fafc;
  box-shadow: var(--shadow-md);
}

.coffee-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
}

.coffee-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(0deg, rgba(17, 36, 61, 0.74), rgba(17, 36, 61, 0));
}

.coffee-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  width: min(250px, calc(100% - 36px));
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--zetra-white);
  background: rgba(17, 36, 61, 0.82);
  backdrop-filter: blur(10px);
}

.coffee-badge span {
  display: block;
  color: var(--zetra-amber);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.coffee-badge strong {
  display: block;
  margin-top: 4px;
  font-size: 22px;
  line-height: 1.1;
}

.coffee-points {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.coffee-points div {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 2px 12px;
  padding: 14px;
  border: 1px solid var(--zetra-border);
  border-radius: 8px;
  background: #fbfdff;
}

.coffee-points i {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--zetra-white);
  background: #7c4a23;
}

.coffee-points div:nth-child(2) i {
  background: var(--zetra-amber);
}

.coffee-points div:nth-child(3) i {
  background: var(--zetra-teal);
}

.coffee-points strong {
  color: var(--zetra-navy);
}

.coffee-points span {
  color: var(--zetra-muted);
  font-size: 14px;
}

.coffee-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.btn-soft {
  color: var(--zetra-navy);
  border-color: var(--zetra-border);
  background: #ffffff;
}

.btn-soft:hover {
  color: var(--zetra-navy);
  border-color: rgba(37, 99, 235, 0.32);
  background: #f0f6ff;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  gap: 40px;
  align-items: center;
}

.split-section .split-layout {
  align-items: start;
}

.split-layout.reverse {
  grid-template-columns: minmax(360px, 0.94fr) minmax(0, 1.06fr);
}

.section-copy {
  max-width: 570px;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.feature-list div {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--zetra-border);
  border-radius: 8px;
  background: var(--zetra-white);
  color: #26364f;
  font-weight: 700;
}

.feature-list i {
  color: var(--zetra-green);
}

.ops-panel,
.erp-workspace,
.fleet-board,
.contact-form {
  border: 1px solid var(--zetra-border);
  border-radius: 8px;
  background: var(--zetra-white);
  box-shadow: var(--shadow-md);
}

.ops-panel {
  padding: 18px;
}

.panel-header,
.workspace-toolbar {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--zetra-border);
}

.panel-header strong,
.workspace-toolbar strong {
  display: block;
  color: var(--zetra-navy);
  font-size: 18px;
}

.panel-header > i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--zetra-white);
  background: var(--zetra-green);
}

.assortment-board {
  display: grid;
  gap: 8px;
  padding: 16px 0 10px;
}

.assortment-row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 10px;
  border: 1px solid var(--zetra-border);
  border-radius: 6px;
  background: #f7f9fa;
}

.assortment-title {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 30px;
  color: var(--zetra-navy);
  font-size: 13px;
  font-weight: 800;
}

.assortment-title i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: var(--zetra-white);
  background: var(--zetra-blue);
  font-size: 13px;
}

.assortment-row:nth-child(2) .assortment-title i {
  background: var(--zetra-teal);
}

.assortment-row:nth-child(3) .assortment-title i {
  background: var(--zetra-amber);
}

.assortment-row:nth-child(4) .assortment-title i {
  background: var(--zetra-navy);
}

.assortment-row:nth-child(5) .assortment-title i {
  background: #7c4a23;
}

.assortment-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.assortment-brands span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 8px;
  border: 1px solid #dbe2e8;
  border-radius: 6px;
  color: #3f4b59;
  background: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

.assortment-note {
  margin: 0 0 16px;
  padding: 9px 10px;
  border-left: 3px solid var(--zetra-blue);
  border-radius: 0 6px 6px 0;
  color: var(--zetra-muted);
  background: #f7f9fa;
  font-size: 12px;
}

.coverage-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--zetra-border);
}

.coverage-card strong {
  display: block;
  color: var(--zetra-navy);
  font-size: 19px;
  margin: 4px 0 8px;
}

.coverage-card p {
  margin: 0;
  color: var(--zetra-muted);
  font-size: 14px;
}

.coverage-map {
  position: relative;
  width: 100%;
  aspect-ratio: 1.2 / 1;
  min-height: 190px;
  overflow: hidden;
  border: 1px solid #b9c6d9;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(217, 226, 239, 0.55) 1px, transparent 1px),
    linear-gradient(0deg, rgba(217, 226, 239, 0.55) 1px, transparent 1px),
    #edf4fb;
  background-size: 34px 34px;
}

.coverage-map::before {
  content: "USK";
  position: absolute;
  right: 14px;
  bottom: 12px;
  color: #708198;
  font-weight: 800;
  font-size: 13px;
}

.map-dot {
  position: absolute;
  width: 13px;
  height: 13px;
  border: 3px solid var(--zetra-white);
  border-radius: 50%;
  background: var(--zetra-blue);
  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.14);
  z-index: 2;
}

.map-dot.kladusa { left: 19%; top: 23%; background: var(--zetra-amber); }
.map-dot.bihac { left: 40%; top: 45%; }
.map-dot.cazin { left: 29%; top: 35%; background: var(--zetra-green); }
.map-dot.krupa { left: 53%; top: 57%; }
.map-dot.sanski { left: 70%; top: 70%; background: var(--zetra-red); }

.map-line {
  position: absolute;
  height: 3px;
  border-radius: 99px;
  background: rgba(37, 99, 235, 0.35);
  transform-origin: left center;
}

.line-one { left: 22%; top: 30%; width: 90px; transform: rotate(23deg); }
.line-two { left: 42%; top: 50%; width: 100px; transform: rotate(24deg); }
.line-three { left: 31%; top: 40%; width: 130px; transform: rotate(29deg); }

.erp-section {
  background: var(--zetra-white);
}

.erp-workspace {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 148px;
  min-height: 520px;
  overflow: hidden;
  margin-bottom: 18px;
  color: #334155;
  background: #eaf1f7;
}

.workspace-sidebar {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 8px 8px 16px;
  border-right: 1px solid #d9e2ea;
  background: #ffffff;
}

.workspace-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding-bottom: 8px;
  border-bottom: 2px solid #b6df6b;
}

.workspace-brand button,
.workspace-topbar span {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #d9e2ea;
  border-radius: 8px;
  color: #64748b;
  background: #f8fbfd;
  font: inherit;
}

.workspace-logo {
  width: 31px;
  height: 31px;
  display: inline-block;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0 48%, transparent 49%),
    linear-gradient(315deg, rgba(20, 72, 93, 0.32) 0 48%, transparent 49%),
    #00acac;
}

.workspace-brand strong {
  color: #334155;
  font-size: 17px;
  line-height: 1;
}

.workspace-brand strong span {
  font-weight: 600;
}

.workspace-user {
  min-height: 76px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin: 16px 8px 18px;
  padding: 10px;
  border: 1px solid #d8e2ec;
  border-radius: 8px;
  background: #f8fbfd;
}

.workspace-user > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: #667385;
  font-size: 13px;
  font-weight: 800;
}

.workspace-user strong,
.workspace-user small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.workspace-user strong {
  color: #263445;
  font-size: 13px;
}

.workspace-user small {
  color: #6b7a90;
  font-size: 11px;
  font-weight: 700;
}

.workspace-label {
  margin: 0 10px 8px;
  color: #7d8aa0;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.workspace-menu {
  display: grid;
  gap: 4px;
}

.workspace-menu span {
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
}

.workspace-menu span i {
  width: 18px;
  color: #64748b;
  text-align: center;
}

.workspace-menu .active {
  border-color: #b8d6f7;
  color: #1b75cf;
  background: #dceeff;
}

.workspace-menu .active i,
.workspace-menu .subactive i {
  color: #1b75cf;
}

.workspace-menu .subactive {
  margin-left: 28px;
  color: #1b75cf;
  background: #eef7ff;
}

.workspace-main {
  min-width: 0;
  background: #edf4f8;
}

.workspace-topbar {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-bottom: 1px solid #d5dfe8;
  background: #ffffff;
}

.workspace-topbar .year-pill {
  width: auto;
  min-width: 108px;
  gap: 8px;
  padding: 0 12px;
  color: #334155;
  font-size: 12px;
  font-weight: 800;
}

.workspace-tabs {
  min-height: 56px;
  display: grid;
  grid-template-columns: repeat(6, minmax(88px, 1fr));
  border-bottom: 1px solid #d5dfe8;
  background: #ffffff;
}

.workspace-tabs span {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
}

.workspace-tabs span i {
  font-size: 15px;
}

.workspace-tabs .active {
  color: #1b75cf;
  background: #e5f2ff;
}

.workspace-tabs .active::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: #348fe2;
}

.workspace-actions {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid #d5dfe8;
  background: #f8fbfd;
}

.workspace-actions span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 6px;
  color: #ffffff;
  background: #348fe2;
  font-size: 12px;
  font-weight: 800;
}

.workspace-actions span:nth-child(2) {
  background: #45b8d0;
}

.workspace-dashboard {
  padding: 14px 20px 22px;
}

.workspace-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0 12px;
  color: #5b6473;
  font-size: 14px;
  font-weight: 700;
}

.workspace-section-title i {
  color: #348fe2;
}

.workspace-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.workspace-kpis div {
  position: relative;
  min-height: 78px;
  overflow: hidden;
  padding: 16px 18px 14px 52px;
  border-radius: 8px;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.workspace-kpis div::after {
  content: "\f105";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.45);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.workspace-kpis div > i {
  position: absolute;
  left: 16px;
  top: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 24px;
}

.workspace-kpis span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.workspace-kpis strong {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
}

.compact-kpis div {
  min-height: 74px;
}

.kpi-blue { background: #348fe2; }
.kpi-cyan { background: #45b8d0; }
.kpi-orange { background: #f59c1a; }
.kpi-green { background: #2fae35; }
.kpi-purple { background: #7985c6; }
.kpi-dark { background: #2d353c; }
.kpi-gold { background: #c4932b; }

.workspace-rail {
  display: grid;
  align-content: start;
  border-left: 1px solid #d5dfe8;
  background: rgba(255, 255, 255, 0.8);
}

.workspace-rail span {
  min-height: 63px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-bottom: 1px solid #d5dfe8;
  color: #334155;
  font-size: 12px;
  font-weight: 800;
}

.workspace-rail i {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 7px;
  color: #348fe2;
  background: #e8f3ff;
}

.workspace-rail span:nth-child(2) i { color: #45b8d0; background: #e5f8fb; }
.workspace-rail span:nth-child(3) i { color: #00acac; background: #e4f7f7; }
.workspace-rail span:nth-child(4) i { color: #667385; background: #edf0f3; }

.status-chip {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border-radius: 8px;
  color: #087f5b;
  background: #e6f7ef;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.status-chip i {
  font-size: 8px;
}

.status-chip.warning {
  color: #946200;
  background: #fff2cc;
}

.status-chip.warning i {
  font-size: 13px;
}

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

.module-item {
  min-height: 154px;
  padding: 17px;
  border: 1px solid var(--zetra-border);
  border-radius: 8px;
  background: #fbfdff;
}

.module-item i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 8px;
  color: var(--zetra-blue);
  background: #eaf1ff;
}

.module-item:nth-child(3n) i {
  color: #0b7f71;
  background: #e7f7f4;
}

.module-item:nth-child(4n) i {
  color: #ad6800;
  background: #fff4d6;
}

.module-item strong {
  display: block;
  color: var(--zetra-navy);
  font-size: 15px;
  margin-bottom: 6px;
}

.module-item span {
  display: block;
  color: var(--zetra-muted);
  font-size: 13px;
}

.pricing-note {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(37, 99, 235, 0.22);
  border-radius: 8px;
  background: #f0f6ff;
}

.pricing-note > i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--zetra-white);
  background: var(--zetra-blue);
}

.pricing-note strong,
.pricing-note span {
  display: block;
}

.pricing-note strong {
  color: var(--zetra-navy);
}

.pricing-note span {
  color: var(--zetra-muted);
  font-size: 14px;
}

.fleet-section {
  background: #f7fafc;
}

.fleet-board {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  padding: 22px;
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.82)),
    linear-gradient(90deg, rgba(217, 226, 239, 0.72) 1px, transparent 1px),
    linear-gradient(0deg, rgba(217, 226, 239, 0.72) 1px, transparent 1px);
  background-size: auto, 38px 38px, 38px 38px;
}

.fleet-card {
  position: relative;
  z-index: 2;
  width: min(320px, 100%);
  padding: 18px;
  border: 1px solid var(--zetra-border);
  border-radius: 8px;
  background: var(--zetra-white);
  box-shadow: var(--shadow-sm);
}

.fleet-card.top {
  margin-left: auto;
}

.fleet-card.bottom {
  margin-top: 218px;
}

.fleet-card strong {
  display: block;
  margin: 6px 0;
  color: var(--zetra-navy);
  font-size: 22px;
}

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

.fleet-road {
  position: absolute;
  left: 18%;
  right: 18%;
  top: 46%;
  height: 80px;
  border-top: 12px solid #26364f;
  border-radius: 50%;
  transform: rotate(-11deg);
}

.fleet-road::before {
  content: "";
  position: absolute;
  left: 26%;
  top: -24px;
  width: 58px;
  height: 30px;
  border-radius: 8px 8px 5px 5px;
  background: var(--zetra-blue);
  box-shadow: 0 22px 0 -12px var(--zetra-navy);
}

.fleet-road span {
  position: absolute;
  top: -8px;
  width: 42px;
  height: 3px;
  background: rgba(255, 255, 255, 0.75);
}

.fleet-road span:nth-child(1) { left: 8%; }
.fleet-road span:nth-child(2) { left: 46%; }
.fleet-road span:nth-child(3) { right: 10%; }

.timeline-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.timeline-list div {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 4px 12px;
  padding: 14px;
  border: 1px solid var(--zetra-border);
  border-radius: 8px;
  background: var(--zetra-white);
}

.timeline-list span {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--zetra-white);
  background: var(--zetra-teal);
  font-weight: 800;
}

.timeline-list strong {
  color: var(--zetra-navy);
}

.timeline-list p {
  font-size: 14px;
}

.contact-section {
  color: var(--zetra-white);
  background: var(--zetra-navy);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: 42px;
  align-items: start;
}

.contact-copy h2 {
  color: var(--zetra-white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.contact-details a,
.contact-details span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.contact-details i {
  color: var(--zetra-amber);
  margin-top: 4px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  color: var(--zetra-ink);
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: #344054;
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--zetra-border);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--zetra-ink);
  background: #ffffff;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--zetra-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14);
}

.contact-form button {
  width: 100%;
  border: 0;
}

.form-note {
  margin: -2px 0 0;
  color: var(--zetra-muted);
  font-size: 13px;
}

.site-footer {
  background: #0b1727;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 38px 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(180px, 0.7fr) minmax(260px, 0.8fr);
  gap: 28px;
}

.footer-brand {
  color: var(--zetra-white);
  margin-bottom: 12px;
}

.footer-inner p {
  max-width: 460px;
  margin: 0;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-column h2 {
  color: var(--zetra-white);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--zetra-amber);
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--zetra-white);
  background: var(--zetra-blue);
  text-decoration: none;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(var(--header-height) - 6px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--zetra-border);
    border-radius: 8px;
    background: var(--zetra-white);
    box-shadow: var(--shadow-md);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    justify-content: flex-start;
  }

  .hero-copy h1 {
    font-size: 52px;
  }

  .split-layout,
  .split-layout.reverse,
  .coffee-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .section-copy {
    max-width: 760px;
  }

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

  .erp-workspace {
    grid-template-columns: 200px minmax(0, 1fr);
  }

  .workspace-rail {
    display: none;
  }

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

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
  }

  .site-nav,
  .section-inner,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 24px, 1180px);
  }

  .brand-copy {
    font-size: 19px;
  }

  .hero-section {
    min-height: 720px;
  }

  .hero-backdrop {
    background-image:
      linear-gradient(90deg, rgba(10, 24, 43, 0.96), rgba(10, 24, 43, 0.8)),
      url("../images/zetra-distribution-erp-hero.png");
    background-position: center right;
  }

  .hero-inner {
    padding-top: calc(var(--header-height) + 48px);
    gap: 30px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-lead {
    font-size: 17px;
  }

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

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .service-overview,
  .split-section,
  .coffee-section,
  .erp-section,
  .fleet-section,
  .contact-section {
    padding: 58px 0;
  }

  .section-heading h2,
  .section-copy h2,
  .contact-copy h2 {
    font-size: 30px;
  }

  .service-card {
    min-height: 236px;
  }

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

  .coverage-card,
  .coffee-points div,
  .assortment-row,
  .erp-workspace,
  .workspace-kpis,
  .module-grid,
  .pricing-note,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .workspace-sidebar {
    min-height: auto;
  }

  .workspace-brand,
  .workspace-topbar,
  .workspace-actions {
    flex-wrap: wrap;
  }

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

  .coffee-visual,
  .coffee-visual img {
    min-height: 330px;
  }

  .workspace-sidebar span:not(.workspace-logo) {
    min-height: 34px;
  }

  .pricing-note .btn {
    width: 100%;
  }

  .fleet-board {
    min-height: 430px;
  }

  .fleet-card.bottom {
    margin-top: 156px;
  }

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

@media (max-width: 420px) {
  .hero-copy h1 {
    font-size: 38px;
  }

  .section-heading h2,
  .section-copy h2,
  .contact-copy h2 {
    font-size: 27px;
  }

  .service-card,
  .ops-panel,
  .contact-form {
    padding: 16px;
  }

  .timeline-list div {
    grid-template-columns: 1fr;
  }

  .timeline-list span {
    grid-row: auto;
  }
}
