.equip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.equip-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
}

.equip-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(4, 13, 26, 0.88) 0%,
    rgba(4, 13, 26, 0.22) 60%,
    transparent 100%
  );
}

.equip-card-body {
  position: relative;
  z-index: 1;
  padding: 28px 26px;
}

.equip-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 12px;
  filter: brightness(1.2);
}

.equip-name {
  font-family: "Archivo", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
}

.equip-sub {
  font-size: 12px;
  font-weight: 300;
  color: rgba(159, 205, 232, 0.65);
  letter-spacing: 0.06em;
}

/* ── Servis cijene ── */
.servis-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(10, 30, 60, 0.08);
}

.servis-card {
  background: var(--offwhite);
  border-radius: 14px;
  padding: 24px 22px;
  border-left: 3px solid var(--sky);
}

.servis-price {
  font-family: "Archivo", sans-serif;
  font-size: 34px;
  font-weight: 300;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}

.servis-price span {
  font-size: 16px;
  color: rgba(10, 30, 60, 0.45);
}

.servis-name {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 4px;
}

.servis-desc {
  font-size: 11.5px;
  font-weight: 300;
  color: rgba(10, 30, 60, 0.5);
}

/* ── Brendovi i radno vrijeme — tamna sekcija ── */
.brands-section {
  background: var(--offwhite);
  padding: 80px 48px;
}

.brands-section .eyebrow-light {
  color: var(--sky);
}

.brands-section .section-title-light {
  color: var(--blue);
}

.brands-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.brands-col {
  display: flex;
  flex-direction: column;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.brand-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  border-left: 3px solid var(--sky);
  display: flex;
  flex-direction: column;
  gap: 3px;
  box-shadow: 0 2px 12px rgba(10, 30, 60, 0.07);
}

.brand-name {
  font-family: "Archivo", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
}

.brand-type {
  font-size: 10.5px;
  font-weight: 400;
  color: rgba(13, 42, 74, 0.45);
  letter-spacing: 0.04em;
}

.hours-table {
  margin-top: 20px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(10, 30, 60, 0.09);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 18px;
  border-bottom: 1px solid rgba(10, 30, 60, 0.07);
  background: #ffffff;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row--highlight {
  background: rgba(37, 104, 168, 0.08);
}

.hours-day {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--blue);
}

.hours-time {
  font-family: "Archivo", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--sky);
}

.hours-note {
  display: block;
  font-size: 11px;
  color: rgba(13, 42, 74, 0.45);
  padding: 10px 18px;
  background: #ffffff;
}

.hours-note span {
  display: block;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .equip-grid    { grid-template-columns: repeat(2, 1fr); }
  .servis-grid   { grid-template-columns: repeat(2, 1fr); }
  .brand-grid    { grid-template-columns: repeat(2, 1fr); }
  .brands-layout { grid-template-columns: 1fr; gap: 48px; }
  .brands-section { padding: 80px 24px; }
}

@media (max-width: 600px) {
  .equip-grid  { grid-template-columns: 1fr; }
  .servis-grid { grid-template-columns: 1fr 1fr; }
  .brand-grid  { grid-template-columns: 1fr 1fr; }
  .brands-section { padding: 56px 20px; }
}
