:root {
  --brand-text: #2b2b2b;
  --brand-accent: #ff6a00;
  --background: #f5f5f2;
  --surface: #ffffff;
  --surface-strong: #eeeeea;
  --text: #2b2b2b;
  --muted: #6f6f6f;
  --line: rgba(43, 43, 43, 0.12);
  --shadow: rgba(43, 43, 43, 0.12);
  --accent-soft: rgba(255, 106, 0, 0.08);
  --accent-line: rgba(255, 106, 0, 0.22);
  --max-width: 1480px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 106, 0, 0.07), transparent 31rem),
    linear-gradient(180deg, #ffffff 0%, var(--background) 45%, #ffffff 100%);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  width: min(100% - 40px, var(--max-width));
  min-height: 76px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 150px;
  height: 46px;
  overflow: hidden;
}

.brand img,
.footer img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  color: rgba(43, 43, 43, 0.72);
  font-size: 14px;
  font-weight: 500;
}

.nav-links a {
  padding: 10px 0;
}

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

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-cta {
  background: var(--brand-text);
  color: #ffffff;
  font-size: 14px;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  color: var(--text);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(390px, 0.82fr) minmax(560px, 1.18fr);
  align-items: start;
  gap: 64px;
  width: min(100% - 40px, var(--max-width));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: 8px 0 100px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at var(--hero-cursor-x, 20%) var(--hero-cursor-y, 35%), rgba(255, 106, 0, 0.22), transparent 18rem),
    radial-gradient(circle at var(--hero-cursor-x, 20%) var(--hero-cursor-y, 35%), rgba(43, 43, 43, 0.1), transparent 10rem);
  opacity: 0;
  transition: opacity 220ms ease;
}

.hero:hover::before {
  opacity: 1;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  width: min(100%, 560px);
  padding-left: 18px;
}

.hero-slides {
  position: relative;
  min-height: 280px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px);
  visibility: hidden;
  transition: opacity 900ms ease, transform 900ms ease, visibility 900ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  visibility: visible;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--brand-accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(44px, 4.8vw, 62px);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-slide h1 {
  max-width: 560px;
  font-size: clamp(34px, 3.55vw, 48px);
  line-height: 1.08;
}

.hero-text {
  max-width: 540px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

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

.hero-action-sets {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  min-height: 46px;
  margin-top: 0;
  padding-left: 18px;
}

.hero-action-sets .hero-actions {
  display: none;
}

.hero-action-sets .hero-actions.is-active {
  display: flex;
}

.hero-slider-controls {
  grid-column: 1 / -1;
  grid-row: 3;
  display: grid;
  grid-template-columns: 64px 1fr 64px;
  align-items: center;
  column-gap: 24px;
  align-self: end;
  justify-self: stretch;
  width: 100%;
  min-height: 96px;
  margin-top: 0;
  padding: 0 22px;
  background: #ffffff;
  border: 1px solid rgba(43, 43, 43, 0.08);
  border-radius: 8px;
}

.slide-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: var(--text);
  background: #ffffff;
  border: 1px solid rgba(31, 51, 89, 0.22);
  border-radius: 50%;
  cursor: pointer;
}

.slide-button:hover {
  border-color: rgba(31, 51, 89, 0.58);
}

.slide-button-next {
  justify-self: end;
}

.slide-progress-group {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 8px;
  min-width: 126px;
}

.slide-dot {
  width: 34px;
  height: 2px;
  padding: 0;
  background: rgba(31, 51, 89, 0.12);
  border: 0;
  border-radius: 0;
  cursor: pointer;
}

.slide-dot.is-active {
  background: #1f3359;
}

.slide-pause {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #1f3359;
  background: #ffffff;
  border: 2px solid #1f3359;
  border-radius: 8px;
  cursor: pointer;
}

.slide-pause .play-icon,
.slide-pause.is-paused .pause-icon {
  display: none;
}

.slide-pause.is-paused .play-icon {
  display: block;
}

.button-primary {
  background: var(--brand-text);
  color: #ffffff;
  box-shadow: 0 18px 46px rgba(43, 43, 43, 0.18);
}

.button-ghost {
  color: var(--text);
  background: #ffffff;
  border-color: var(--line);
}

.hero-visual {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: relative;
  min-height: 560px;
  isolation: isolate;
  overflow: hidden;
  transform: translateY(-34px);
}

.visual-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px);
  visibility: hidden;
  transition: opacity 900ms ease, transform 900ms ease, visibility 900ms ease;
}

.visual-layer.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  visibility: visible;
}

.visual-layer::before {
  position: absolute;
  inset: 76px 0 32px;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.8), transparent 32%),
    radial-gradient(circle at 54% 48%, rgba(255, 106, 0, 0.1), rgba(255, 106, 0, 0.04) 34%, transparent 62%),
    linear-gradient(135deg, #ffffff, #dfdfd8);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 42px 86px rgba(43, 43, 43, 0.16);
  transform: perspective(960px) rotateX(57deg) rotateZ(-9deg);
  transform-origin: 50% 55%;
}

.pharmacy-visual::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.88), transparent 32%),
    radial-gradient(circle at 52% 46%, rgba(29, 132, 96, 0.12), rgba(255, 106, 0, 0.04) 36%, transparent 64%),
    linear-gradient(135deg, #ffffff, #e8eee8);
}

.pharmacy-cross {
  position: absolute;
  top: 148px;
  right: 130px;
  width: 150px;
  height: 150px;
  color: rgba(29, 132, 96, 0.12);
}

.pharmacy-cross::before,
.pharmacy-cross::after {
  position: absolute;
  content: "";
  background: currentColor;
  border-radius: 8px;
}

.pharmacy-cross::before {
  top: 55px;
  left: 0;
  width: 150px;
  height: 40px;
}

.pharmacy-cross::after {
  top: 0;
  left: 55px;
  width: 40px;
  height: 150px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(43, 43, 43, 0.08);
  border-radius: 50%;
  transform: rotate(-11deg);
}

.orbit-one {
  inset: 110px 40px 100px 32px;
}

.orbit-two {
  inset: 170px 112px 150px 100px;
}

.product-tile {
  position: absolute;
  display: grid;
  gap: 10px;
  width: 185px;
  min-height: 148px;
  padding: 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(43, 43, 43, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(43, 43, 43, 0.18);
  backdrop-filter: blur(20px);
}

.product-tile::after {
  position: absolute;
  right: 16px;
  bottom: -18px;
  left: 18px;
  height: 24px;
  content: "";
  background: rgba(43, 43, 43, 0.12);
  filter: blur(18px);
  transform: skewX(-24deg);
}

.product-tile strong {
  font-size: 16px;
}

.product-tile span:last-child {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.tile-icon,
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--brand-accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  border-radius: 8px;
}

.tile-main {
  top: 180px;
  left: 50%;
  width: 238px;
  min-height: 174px;
  transform: translateX(-50%);
}

.tile-left {
  top: 252px;
  left: 28px;
}

.tile-right {
  top: 118px;
  right: 34px;
}

.tile-bottom {
  right: 120px;
  bottom: 34px;
}

.pharmacy-dashboard {
  position: absolute;
  top: 128px;
  left: 50%;
  width: min(520px, 78%);
  padding: 22px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(43, 43, 43, 0.12);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(43, 43, 43, 0.18);
  transform: translateX(-50%);
  backdrop-filter: blur(20px);
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.dashboard-topbar div {
  display: grid;
  gap: 4px;
}

.dashboard-topbar span,
.dashboard-kpis span,
.stock-row-head,
.pharmacy-mini-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.dashboard-topbar strong {
  font-size: 20px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: #1d8460;
  background: rgba(29, 132, 96, 0.1);
  border: 1px solid rgba(29, 132, 96, 0.18);
  border-radius: 999px;
}

.dashboard-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.dashboard-kpis div {
  display: grid;
  gap: 6px;
  padding: 14px;
  background: #f7f7f4;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.dashboard-kpis strong {
  font-size: 24px;
}

.stock-list {
  display: grid;
  gap: 8px;
}

.stock-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px 82px;
  gap: 12px;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  background: #ffffff;
  border: 1px solid rgba(43, 43, 43, 0.08);
  border-radius: 8px;
  font-size: 13px;
}

.stock-row span:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stock-row strong {
  color: #1d8460;
  font-size: 12px;
}

.stock-row .stock-warning {
  color: #9b6a00;
}

.stock-row .stock-alert {
  color: #a33b2f;
}

.stock-row-head {
  min-height: 30px;
  background: transparent;
  border: 0;
}

.pharmacy-mini-card {
  position: absolute;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: 238px;
  min-height: 104px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(43, 43, 43, 0.12);
  border-radius: 8px;
  box-shadow: 0 22px 52px rgba(43, 43, 43, 0.15);
  backdrop-filter: blur(18px);
}

.pharmacy-mini-card div {
  display: grid;
  gap: 6px;
}

.pharmacy-mini-card strong {
  font-size: 15px;
}

.pharmacy-mini-card span {
  line-height: 1.45;
}

.expiry-card {
  top: 92px;
  right: 30px;
}

.reorder-card {
  left: 28px;
  bottom: 48px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto 60px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.metrics div {
  display: grid;
  gap: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
}

.metrics strong {
  color: var(--brand-accent);
  font-size: 14px;
}

.metrics span {
  color: rgba(43, 43, 43, 0.82);
  font-weight: 700;
}

.section,
.split-section,
.contact {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
}

.section,
.split-section {
  padding: 86px 0;
}

#services {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

#services::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -2;
  width: 100vw;
  content: "";
  background: url("images/bcwhite.png") center / cover no-repeat;
  filter: blur(1.4px) saturate(0.82);
  opacity: 0.42;
  transform: translateX(-50%);
  transition: opacity 260ms ease, filter 260ms ease, transform 260ms ease;
}

#services::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  content: "";
  background: rgba(255, 255, 255, 0.88);
  transform: translateX(-50%);
  transition: background 260ms ease;
}

#services:hover::before {
  filter: blur(0) saturate(1.02);
  opacity: 0.86;
  transform: translateX(-50%) scale(1.01);
}

#services:hover::after {
  background: rgba(255, 255, 255, 0.7);
}

#services .section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 285px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(43, 43, 43, 0.06);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: var(--brand-accent);
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-card:hover {
  border-color: rgba(255, 106, 0, 0.26);
  box-shadow: 0 24px 62px rgba(43, 43, 43, 0.1);
  transform: translateY(-4px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card h3,
.timeline h3 {
  margin: 24px 0 12px;
  font-size: 21px;
}

.service-card p,
.timeline p,
.contact p {
  color: var(--muted);
  line-height: 1.65;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.products-section {
  padding-top: 96px;
}

.products-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 18px;
}

.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  min-height: 330px;
  padding: 30px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(43, 43, 43, 0.06);
}

.product-card-featured {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 245, 242, 0.9)),
    radial-gradient(circle at 86% 18%, rgba(255, 106, 0, 0.12), transparent 18rem);
}

.product-card-muted {
  background: var(--surface-strong);
}

.product-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  color: var(--brand-accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.product-card h3 {
  max-width: 620px;
  margin-bottom: 14px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
}

.product-card p {
  max-width: 690px;
  color: var(--muted);
  line-height: 1.65;
}

.product-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.industry-list span {
  min-height: 68px;
  padding: 20px;
  color: rgba(43, 43, 43, 0.84);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
}

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

.timeline article {
  position: relative;
  min-height: 260px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(43, 43, 43, 0.04), rgba(255, 255, 255, 0.96) 48%);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--brand-accent);
  background: #ffffff;
  border: 1px solid var(--accent-line);
  border-radius: 50%;
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  margin-bottom: 80px;
  padding: 50px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 238, 234, 0.96)),
    radial-gradient(circle at 92% 10%, rgba(255, 106, 0, 0.12), transparent 20rem);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact h2 {
  margin-bottom: 18px;
}

.contact p {
  max-width: 800px;
  margin-bottom: 0;
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-options span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  color: rgba(43, 43, 43, 0.82);
  background: #ffffff;
  border: 1px solid rgba(43, 43, 43, 0.1);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.contact-email {
  margin-left: auto;
  color: var(--brand-accent);
  font-weight: 800;
  white-space: nowrap;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
  padding: 28px 0 40px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.footer img {
  width: 126px;
  height: 38px;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(430px, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 46px;
  width: min(100% - 40px, var(--max-width));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: 72px 0 90px;
}

.product-hero-copy p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.product-hero-copy h1 {
  max-width: 620px;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.05;
}

.product-visual-stack {
  display: grid;
  gap: 18px;
}

.product-actions {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  justify-content: stretch;
}

.register-button {
  grid-column: 1;
  min-height: 52px;
  padding: 0 22px;
  min-width: 220px;
}

.login-button {
  grid-column: 3;
  min-height: 52px;
  padding: 0 22px;
  color: var(--brand-text);
  background: #ffffff;
  border-color: var(--brand-accent);
  box-shadow: 0 18px 38px rgba(255, 106, 0, 0.16);
}

.login-button:hover {
  color: #ffffff;
  background: var(--brand-accent);
  border-color: var(--brand-accent);
}

.product-showcase {
  position: relative;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 242, 237, 0.86)),
    radial-gradient(circle at 82% 12%, rgba(29, 132, 96, 0.12), transparent 24rem),
    radial-gradient(circle at 16% 88%, rgba(255, 106, 0, 0.07), transparent 20rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 42px 90px rgba(43, 43, 43, 0.16);
  overflow: hidden;
}

.product-showcase::before {
  position: absolute;
  top: -80px;
  right: -70px;
  width: 220px;
  height: 220px;
  content: "";
  background: rgba(29, 132, 96, 0.08);
  border-radius: 50%;
}

.showcase-toolbar,
.showcase-kpis,
.showcase-grid {
  position: relative;
  z-index: 1;
}

.showcase-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.showcase-toolbar div {
  display: grid;
  gap: 5px;
}

.showcase-toolbar span,
.showcase-kpis span,
.table-title span,
.showcase-side span:last-child {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.showcase-toolbar strong {
  font-size: 22px;
}

.showcase-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.showcase-kpis div {
  display: grid;
  gap: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(43, 43, 43, 0.1);
  border-radius: 8px;
}

.showcase-kpis strong {
  font-size: 24px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(190px, 0.65fr);
  gap: 14px;
}

.showcase-table,
.showcase-side article {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(43, 43, 43, 0.1);
  border-radius: 8px;
}

.showcase-table {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.table-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}

.showcase-side {
  display: grid;
  gap: 14px;
}

.showcase-side article {
  display: grid;
  gap: 10px;
  min-height: 146px;
  padding: 16px;
}

.showcase-side strong {
  font-size: 16px;
}

.product-details {
  padding-top: 10px;
}

.product-workflow {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto 84px;
  padding: 76px 0;
  border-top: 1px solid var(--line);
}

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

.workflow-grid article {
  min-height: 230px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(43, 43, 43, 0.06);
}

.workflow-grid span {
  color: var(--brand-accent);
  font-size: 13px;
  font-weight: 800;
}

.workflow-grid h3 {
  margin: 24px 0 12px;
  font-size: 21px;
}

.workflow-grid p {
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 980px) {
  .nav {
    gap: 16px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    right: 20px;
    left: 20px;
    display: none;
    margin: 0;
    padding: 18px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
  }

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

  .nav-cta {
    display: none;
  }

  .hero,
  .product-hero,
  .split-section,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 72px;
  }

  .hero-copy {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .hero-visual {
    grid-column: 1;
    grid-row: 2;
    min-height: 500px;
    transform: translateY(-20px);
  }

  .hero-slides {
    min-height: 360px;
    transform: translateY(0);
  }

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

  .service-card,
  .timeline article {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .nav,
  .section,
  .split-section,
  .contact,
  .metrics,
  .hero,
  .footer {
    width: min(100% - 28px, var(--max-width));
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 32px;
    line-height: 1.1;
  }

  .hero-slide h1 {
    max-width: 100%;
    font-size: 34px;
    line-height: 1.12;
  }

  .hero {
    gap: 24px;
    padding-top: 24px;
    padding-bottom: 54px;
  }

  #services::before,
  #services::after {
    width: calc(100% + 28px);
  }

  .hero-text {
    max-width: 100%;
    margin-bottom: 24px;
    font-size: 16px;
  }

  .hero-slides {
    min-height: 230px;
  }

  .hero-action-sets {
    grid-column: 1;
    grid-row: 3;
    min-height: 46px;
    padding-left: 0;
  }

  .hero-action-sets .hero-actions {
    justify-content: center;
    display: none;
  }

  .hero-action-sets .button {
    width: min(100%, 320px);
  }

  .product-hero {
    gap: 28px;
    width: min(100% - 28px, var(--max-width));
    padding: 52px 0 68px;
  }

  .product-hero-copy p:not(.eyebrow) {
    font-size: 16px;
  }

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

  .product-actions {
    display: grid;
    gap: 12px;
    width: 100%;
    min-height: auto;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .register-button,
  .login-button {
    grid-column: auto;
  }

  .product-actions .button {
    width: 100%;
  }


  .product-showcase {
    padding: 18px;
  }

  .showcase-grid,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .showcase-kpis {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 340px;
    transform: translateY(-24px);
    width: 100%;
  }

  .visual-layer::before {
    inset: 42px 0 20px;
  }

  .product-tile {
    width: 150px;
    min-height: 112px;
    gap: 7px;
    padding: 13px;
  }

  .product-tile strong {
    font-size: 14px;
  }

  .product-tile span:last-child {
    font-size: 11px;
  }

  .tile-icon,
  .service-icon {
    width: 36px;
    height: 36px;
  }

  .tile-main {
    top: 112px;
    width: 180px;
    min-height: 132px;
  }

  .tile-left {
    top: 192px;
    left: 0;
  }

  .tile-right {
    top: 50px;
    right: 0;
  }

  .tile-bottom {
    right: 32px;
    bottom: 10px;
  }

  .pharmacy-cross {
    top: 76px;
    right: 54px;
    width: 110px;
    height: 110px;
  }

  .pharmacy-cross::before {
    top: 40px;
    width: 110px;
    height: 30px;
  }

  .pharmacy-cross::after {
    left: 40px;
    width: 30px;
    height: 110px;
  }

  .pharmacy-dashboard {
    top: 48px;
    width: min(440px, 94%);
    padding: 14px;
  }

  .dashboard-topbar {
    margin-bottom: 10px;
  }

  .dashboard-topbar strong {
    font-size: 17px;
  }

  .dashboard-kpis {
    margin-bottom: 10px;
  }

  .dashboard-kpis strong {
    font-size: 20px;
  }

  .stock-row {
    min-height: 34px;
  }

  .expiry-card {
    top: 10px;
    right: 0;
  }

  .reorder-card {
    left: 0;
    bottom: 2px;
  }

  .metrics,
  .card-grid,
  .timeline,
  .products-grid,
  .industry-list {
    grid-template-columns: 1fr;
  }

  .metrics {
    margin-top: 0;
  }

  .metrics div,
  .service-card,
  .timeline article,
  .industry-list span {
    padding: 22px;
  }

  .section,
  .split-section,
  .products-section,
  .product-workflow {
    padding: 64px 0;
  }

  .product-workflow {
    width: min(100% - 28px, var(--max-width));
    margin-bottom: 64px;
  }

  .contact {
    padding: 28px;
  }

  .contact-panel {
    align-items: stretch;
    flex-direction: column;
    padding-top: 22px;
  }

  .contact-options {
    display: flex;
  }

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

  .contact-actions {
    justify-content: stretch;
  }

  .contact-email {
    margin-left: 0;
  }

  .hero-slider-controls {
    grid-column: 1;
    grid-row: 4;
    width: 100%;
    min-height: 104px;
    padding: 0 14px;
    border-radius: 8px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .brand {
    width: 128px;
  }

  .hero-visual {
    min-height: 330px;
    transform: translateY(-20px);
    width: 100%;
  }

  .hero-slide h1 {
    font-size: 31px;
  }

  .hero-text {
    font-size: 15px;
  }

  .pharmacy-dashboard {
    top: 50px;
    width: 100%;
    padding: 12px;
  }

  .dashboard-kpis {
    gap: 6px;
  }

  .showcase-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .showcase-kpis div,
  .showcase-table,
  .showcase-side article {
    padding: 12px;
  }

  .showcase-kpis strong {
    font-size: 19px;
  }

  .dashboard-kpis div {
    padding: 8px;
  }

  .dashboard-kpis strong {
    font-size: 17px;
  }

  .stock-row {
    grid-template-columns: minmax(0, 1fr) 38px 64px;
    gap: 8px;
    padding: 0 9px;
    font-size: 12px;
  }

  .stock-row strong,
  .stock-row-head,
  .dashboard-topbar span,
  .dashboard-kpis span,
  .pharmacy-mini-card span {
    font-size: 11px;
  }

  .pharmacy-mini-card {
    width: min(184px, 60%);
    min-height: 78px;
    padding: 10px;
  }

  .expiry-card {
    top: 8px;
    right: 0;
  }

  .reorder-card {
    left: 0;
    bottom: -4px;
  }

  .button {
    width: 100%;
  }

  .hero-slides {
    min-height: 260px;
  }

  .hero-slider-controls {
    width: 100%;
    grid-template-columns: 44px 1fr 44px;
    column-gap: 8px;
  }

  .slide-button {
    width: 42px;
    height: 42px;
  }

  .slide-progress-group {
    min-width: 110px;
  }

  .slide-dot {
    width: 22px;
  }

  .slide-pause {
    width: 36px;
    height: 36px;
  }
}
