:root {
  --services-orange: var(--_colors---brand--brand-1);
  --services-ink: var(--_colors---ui--dark);
  --services-paper: var(--_colors---ui--light-1);
  --services-soft: var(--_colors---ui--light-2);
  --services-body: var(--_colors---text--dark-body);
  --services-line: var(--_colors---ui--dark-border);
  --services-light-line: var(--_colors---ui--light-1-faded);
}

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

.services-page {
  background: var(--services-paper);
  color: var(--services-ink);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.services-page.services-page--neutral-accent {
  --_colors---brand--brand-1: #1f2b24;
  --services-orange: #1f2b24;
}

.services-page--neutral-accent .button {
  color: var(--services-paper);
}

.services-page h1,
.services-page h2,
.services-page h3,
.services-page h4,
.services-page p {
  margin-top: 0;
}

.services-navbar {
  z-index: 1000;
}

.services-navbar .nav-link.w--current {
  color: var(--services-ink);
}

.services-section {
  padding-top: var(--_section-padding---default);
  padding-bottom: var(--_section-padding---default);
}

.services-eyebrow {
  margin-bottom: 18px;
  font-family: var(--_typography---typefaces--badges);
  font-size: var(--_typography---type-scale--small-size);
  font-weight: 500;
  letter-spacing: 0;
  line-height: var(--_typography---type-scale--small-line-height);
  text-transform: uppercase;
}

.services-eyebrow--dark {
  color: var(--services-ink);
}

.services-lead,
.services-hero__lead {
  font-size: var(--_typography---type-scale--lead-size);
  line-height: var(--_typography---type-scale--lead-line-height);
}

.services-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.services-button-ghost,
.services-text-link {
  display: inline-flex;
  min-height: var(--_buttons---height);
  padding: 0 24px;
  border: 1px solid var(--services-line);
  border-radius: var(--_border-radii---default);
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--services-ink);
  font-family: var(--_typography---typefaces--badges);
  font-size: var(--_typography---type-scale--small-size);
  font-weight: 500;
  line-height: var(--_typography---type-scale--small-line-height);
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.services-button-ghost:hover,
.services-button-ghost:focus-visible,
.services-text-link:hover,
.services-text-link:focus-visible {
  background: var(--services-ink);
  color: var(--services-paper);
}

.services-grid-lines,
.services-scanline,
.services-flight-card {
  display: none;
}

/* Hero — isti full-bleed image/video okvir kao na originalnoj naslovnici. */
.services-hero {
  position: relative;
  padding: 0;
  background: #65705f;
}

.services-hero__container {
  position: relative;
  display: flex;
  width: 100%;
  max-width: none;
  min-height: calc(100vh - 72px);
  min-height: calc(100svh - 72px);
  margin: 0;
  padding: 72px 48px 48px;
  border-radius: 0;
  background: #65705f;
  color: var(--services-paper);
  align-items: flex-end;
  overflow: hidden;
}

.services-hero__copy {
  position: relative;
  z-index: 3;
  display: flex;
  width: 100%;
  max-width: var(--_containers---6-cols);
  flex-flow: column;
  align-items: flex-start;
}

.services-hero__copy h1 {
  max-width: var(--_containers---6-cols);
  margin-bottom: 24px;
  color: var(--services-paper);
  font-size: var(--_typography---type-scale--h1-size);
  font-weight: 400;
  letter-spacing: var(--_typography---type-scale--h1-letter-spacing);
  line-height: var(--_typography---type-scale--h1-line-height);
}

.services-hero__lead {
  max-width: var(--_containers---5-cols);
  margin-bottom: 36px;
  color: rgba(248, 248, 243, 0.8);
}

.services-hero__visual {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: #65705f;
}

.services-hero__visual > img,
.services-hero__visual > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.services-hero__visual > video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  object-position: 50% 60%;
  filter: brightness(0.83) saturate(0.92);
}

.services-hero__visual-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 12, 10, 0.68) 0%, rgba(10, 12, 10, 0.38) 48%, rgba(10, 12, 10, 0.08) 78%),
    linear-gradient(0deg, rgba(10, 12, 10, 0.48) 0%, rgba(10, 12, 10, 0.04) 64%);
}

.services-hero .services-eyebrow {
  color: var(--services-paper);
}

.services-hero .services-button-ghost {
  border-color: rgba(248, 248, 243, 0.45);
  background: rgba(248, 248, 243, 0.12);
  color: var(--services-paper);
  backdrop-filter: blur(12px);
}

.services-hero .services-button-ghost:hover,
.services-hero .services-button-ghost:focus-visible {
  background: rgba(248, 248, 243, 0.28);
}

.services-hero__steps {
  display: grid;
  width: 100%;
  margin-top: 48px;
  padding: 24px;
  border: 1px solid rgba(248, 248, 243, 0.16);
  border-radius: var(--_border-radii---default);
  background: rgba(248, 248, 243, 0.12);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  backdrop-filter: blur(18px);
}

.services-hero__steps div {
  display: flex;
  min-width: 0;
  flex-flow: column;
  gap: 4px;
}

.services-hero__steps span {
  margin-bottom: 6px;
  color: var(--services-orange);
  font-family: var(--_typography---typefaces--badges);
  font-size: var(--_typography---type-scale--small-size);
}

.services-hero__steps strong {
  color: var(--services-paper);
  font-weight: 500;
}

.services-hero__steps small {
  color: rgba(248, 248, 243, 0.65);
  font-size: var(--_typography---type-scale--small-size);
  line-height: var(--_typography---type-scale--small-line-height);
}

/* Shared section headings */
.services-heading {
  display: flex;
  margin-bottom: 96px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 72px;
}

.services-heading > div {
  max-width: var(--_containers---8-cols);
}

.services-heading > p {
  max-width: var(--_containers---5-cols);
  flex: 0 0 var(--_containers---5-cols);
  font-size: var(--_typography---type-scale--lead-size);
  line-height: var(--_typography---type-scale--lead-line-height);
}

/* Usluge overview */
.services-overview {
  background: var(--services-paper);
}

.services-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 450px;
  padding: 0;
  border-radius: var(--_border-radii---default);
  background: var(--services-soft);
  color: var(--services-ink);
  flex-flow: column;
  align-items: flex-start;
  overflow: hidden;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.service-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 4;
  height: 6px;
  background: var(--services-orange);
  content: "";
}

.service-card:hover,
.service-card:focus-visible {
  background: #e5e5da;
  transform: translateY(-3px);
}

.service-card:hover .service-card__media img,
.service-card:focus-visible .service-card__media img {
  transform: scale(1.035);
}

.service-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--services-ink);
  overflow: hidden;
}

.service-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 48%, rgba(0, 0, 0, 0.58));
  content: "";
  pointer-events: none;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.service-card__number {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  display: flex;
  width: 54px;
  height: 54px;
  margin: 0;
  border-radius: var(--_border-radii---default);
  background: var(--services-paper);
  color: var(--services-ink);
  align-items: center;
  justify-content: center;
  font-family: var(--_typography---typefaces--badges);
  font-size: var(--_typography---type-scale--small-size);
  font-weight: 500;
}

.service-card__tag {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 16px;
  left: 18px;
  color: var(--services-paper);
  font-family: var(--_typography---typefaces--badges);
  font-size: var(--_typography---type-scale--small-size);
  font-weight: 500;
  text-align: right;
  text-transform: uppercase;
}

.service-card__content {
  display: flex;
  width: 100%;
  padding: 24px 18px;
  flex: 1;
  flex-flow: column;
  align-items: flex-start;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: var(--_typography---type-scale--h5-size);
  line-height: var(--_typography---type-scale--h5-line-height);
}

.service-card p {
  margin-bottom: 24px;
}

.service-card .service-card__note {
  margin-top: -10px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--services-body) 78%, transparent);
  font-size: 0.78rem;
  line-height: 1.45;
}

.service-card__link {
  display: flex;
  width: 100%;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px dotted var(--services-body);
  align-items: center;
  justify-content: space-between;
  font-family: var(--_typography---typefaces--badges);
  font-size: var(--_typography---type-scale--small-size);
  font-weight: 500;
  text-transform: uppercase;
}

.service-card__link b {
  font-size: 18px;
  font-weight: 400;
}

.service-card--neutral::before {
  background: var(--services-ink);
}

/* LiDAR */
.lidar-section {
  background: var(--services-soft);
}

.lidar-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.lidar-intro__copy {
  display: flex;
  padding: 48px;
  border-radius: var(--_border-radii---default);
  background: var(--services-paper);
  flex-flow: column;
  align-items: flex-start;
}

.lidar-intro__copy h2 {
  margin-bottom: 24px;
}

.lidar-intro__copy > p {
  margin-bottom: 18px;
}

.lidar-intro__copy .services-lead {
  color: var(--services-ink);
}

.lidar-tags {
  display: flex;
  margin: 18px 0 36px;
  flex-wrap: wrap;
  gap: 6px;
}

.lidar-tags span {
  padding: 9px 12px;
  border: 1px dotted var(--services-body);
  border-radius: 200px;
  font-family: var(--_typography---typefaces--badges);
  font-size: var(--_typography---type-scale--small-size);
  font-weight: 500;
  text-transform: uppercase;
}

.lidar-visual {
  position: relative;
  min-height: clamp(720px, 78vh, 920px);
  border-radius: var(--_border-radii---default);
  background: var(--services-ink);
  overflow: hidden;
}

.lidar-visual__viewer {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(720px, 78vh, 920px);
  border: 0;
  background: var(--services-ink);
}

@media screen and (min-width: 992px) {
  .lidar-intro__copy {
    display: grid;
    grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1.18fr);
    column-gap: clamp(56px, 7vw, 112px);
    align-items: start;
  }

  .lidar-intro__copy .services-eyebrow,
  .lidar-intro__copy h2 {
    grid-column: 1;
  }

  .lidar-intro__copy .services-eyebrow {
    grid-row: 1;
  }

  .lidar-intro__copy h2 {
    grid-row: 2 / span 4;
  }

  .lidar-intro__copy .services-lead {
    grid-column: 2;
    grid-row: 1;
  }

  .lidar-intro__copy > p:not(.services-lead) {
    grid-column: 2;
    grid-row: 2;
  }

  .lidar-intro__copy .lidar-tags {
    grid-column: 2;
    grid-row: 3;
  }

  .lidar-intro__copy .services-actions {
    grid-column: 2;
    grid-row: 4;
    justify-self: start;
  }
}

.lidar-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lidar-visual__pointcloud,
.lidar-visual__axis {
  display: none;
}

.lidar-visual__caption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  padding: 18px;
  border-radius: var(--_border-radii---default);
  background: rgba(0, 0, 0, 0.56);
  color: var(--services-paper);
  flex-flow: column;
  gap: 4px;
  backdrop-filter: blur(12px);
}

.lidar-visual__caption span,
.lidar-visual__caption strong {
  font-family: var(--_typography---typefaces--badges);
  font-size: var(--_typography---type-scale--small-size);
  font-weight: 500;
  text-transform: uppercase;
}

.lidar-visual__caption span {
  color: var(--services-orange);
}

.lidar-usecases {
  margin-top: 96px;
}

.lidar-usecases__title {
  display: flex;
  margin-bottom: 48px;
  align-items: flex-end;
  justify-content: space-between;
}

.lidar-usecases__title h3 {
  max-width: var(--_containers---8-cols);
}

.numbered-list {
  display: grid;
  border-top: 1px dotted var(--services-body);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 48px;
}

.numbered-list article {
  display: grid;
  padding: 30px 0;
  border-bottom: 1px dotted var(--services-body);
  grid-template-columns: 48px 1fr;
  gap: 12px;
}

.numbered-list article > span {
  color: var(--services-orange);
  font-family: var(--_typography---typefaces--badges);
  font-size: var(--_typography---type-scale--small-size);
  font-weight: 500;
}

.numbered-list h4 {
  margin-bottom: 8px;
  font-size: var(--_typography---type-scale--lead-size);
  font-weight: 500;
  line-height: var(--_typography---type-scale--lead-line-height);
}

/* RGB / thermal comparison */
.thermal-section {
  background: var(--services-paper);
}

.thermal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.65fr);
  align-items: start;
  gap: 48px;
}

.thermal-compare {
  margin: 0;
}

.thermal-compare__stage {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: var(--_border-radii---default);
  background: var(--services-ink);
  overflow: hidden;
}

.thermal-compare__base,
.thermal-compare__thermal {
  position: absolute;
  inset: 0;
}

.thermal-compare__base img,
.thermal-compare__thermal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thermal-compare__thermal {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--compare-position)) 0 0);
}

.thermal-compare__palette,
.thermal-hotspot--two {
  display: none;
}

.thermal-hotspot--one {
  position: absolute;
  z-index: 3;
  top: 34%;
  left: 43%;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 9px;
  transform: translateX(-100%);
  pointer-events: none;
}

.thermal-hotspot--one span {
  width: 14px;
  height: 14px;
  border: 3px solid var(--services-paper);
  border-radius: 50%;
  background: var(--services-orange);
  box-shadow: 0 0 0 5px rgba(241, 90, 36, 0.28);
}

.thermal-hotspot--one b {
  padding: 8px 10px;
  border-radius: var(--_border-radii---default);
  background: rgba(0, 0, 0, 0.62);
  color: var(--services-paper);
  font-family: var(--_typography---typefaces--badges);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(12px);
}

.thermal-compare__divider {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--compare-position);
  width: 2px;
  background: var(--services-paper);
  transform: translateX(-1px);
  pointer-events: none;
}

.thermal-compare__divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--services-orange);
  color: var(--services-ink);
  align-items: center;
  justify-content: center;
  font-family: var(--_typography---typefaces--badges);
  font-size: 18px;
  transform: translate(-50%, -50%);
}

.thermal-compare__label {
  position: absolute;
  z-index: 5;
  top: 18px;
  padding: 9px 12px;
  border-radius: var(--_border-radii---default);
  background: rgba(0, 0, 0, 0.55);
  color: var(--services-paper);
  font-family: var(--_typography---typefaces--badges);
  font-size: var(--_typography---type-scale--small-size);
  font-weight: 500;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.thermal-compare__label--rgb {
  right: 18px;
}

.thermal-compare__label--thermal {
  left: 18px;
}

.thermal-compare__range {
  position: absolute;
  z-index: 6;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.thermal-compare figcaption {
  display: flex;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dotted var(--services-body);
  align-items: flex-start;
  gap: 18px;
  color: var(--services-body);
  text-align: left;
}

.thermal-demo-badge {
  flex: none;
  color: var(--services-ink);
  font-family: var(--_typography---typefaces--badges);
  font-size: var(--_typography---type-scale--small-size);
  font-weight: 500;
  text-transform: uppercase;
}

.thermal-explainer {
  display: flex;
  border-top: 1px dotted var(--services-body);
  flex-flow: column;
}

.thermal-explainer article {
  display: grid;
  padding: 24px 0;
  border-bottom: 1px dotted var(--services-body);
  grid-template-columns: 42px 1fr;
  gap: 12px;
}

.thermal-explainer article > span {
  color: var(--services-orange);
  font-family: var(--_typography---typefaces--badges);
  font-size: var(--_typography---type-scale--small-size);
}

.thermal-explainer h3 {
  margin-bottom: 8px;
  font-size: var(--_typography---type-scale--lead-size);
  font-weight: 500;
  line-height: var(--_typography---type-scale--lead-line-height);
}

.thermal-note {
  margin-top: 24px;
  padding: 18px;
  border-left: 6px solid var(--services-orange);
  border-radius: var(--_border-radii---default);
  background: var(--services-soft);
}

.thermal-note strong {
  display: block;
  margin-bottom: 6px;
}

/* Solar AI */
.solar-ai-section {
  background: var(--services-ink);
  color: var(--services-paper);
}

.solar-ai-heading {
  display: flex;
  margin-bottom: 72px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 72px;
}

.solar-ai-heading > div {
  max-width: var(--_containers---8-cols);
}

.solar-ai-heading h2 {
  color: var(--services-paper);
}

.solar-ai-heading > p {
  max-width: var(--_containers---5-cols);
  flex: 0 0 var(--_containers---5-cols);
  color: rgba(248, 248, 243, 0.72);
  font-size: var(--_typography---type-scale--lead-size);
  line-height: var(--_typography---type-scale--lead-line-height);
}

.solar-ai-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
  gap: 24px;
  align-items: start;
}

.solar-ai-product {
  position: sticky;
  top: 96px;
  border: 1px solid rgba(248, 248, 243, 0.16);
  border-radius: var(--_border-radii---default);
  background: #161714;
  overflow: hidden;
}

.solar-ai-product__bar {
  display: flex;
  min-height: 64px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(248, 248, 243, 0.14);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--_typography---typefaces--badges);
  font-size: var(--_typography---type-scale--small-size);
  text-transform: uppercase;
}

.solar-ai-product__bar > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.solar-ai-product__bar small {
  color: rgba(248, 248, 243, 0.58);
  font-size: inherit;
}

.solar-ai-live {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--services-orange);
  box-shadow: 0 0 0 5px rgba(255, 88, 32, 0.16);
}

.solar-ai-demo {
  position: relative;
  display: block;
  background: #25251f;
  overflow: hidden;
}

.solar-ai-demo::after {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  background: rgba(12, 13, 11, 0);
  content: "";
  transition: background-color 220ms ease, border-color 220ms ease;
  pointer-events: none;
}

.solar-ai-demo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.solar-ai-demo:hover::after,
.solar-ai-demo:focus-visible::after {
  border-color: rgba(248, 248, 243, 0.34);
  background: rgba(12, 13, 11, 0.08);
}

.solar-ai-demo:hover img,
.solar-ai-demo:focus-visible img {
  transform: scale(1.012);
}

.solar-ai-demo:focus-visible {
  outline: 2px solid var(--services-paper);
  outline-offset: -4px;
}

.solar-ai-product__footer {
  display: flex;
  min-height: 58px;
  padding: 0 18px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(248, 248, 243, 0.58);
  font-family: var(--_typography---typefaces--badges);
  font-size: var(--_typography---type-scale--small-size);
  text-transform: uppercase;
}

.solar-ai-product__footer > a {
  color: var(--services-paper);
  text-decoration: none;
}

.solar-ai-product__footer > a:hover,
.solar-ai-product__footer > a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.solar-ai-screen {
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 1fr) 280px;
}

.solar-ai-map {
  position: relative;
  min-width: 0;
  background: #373b32;
  overflow: hidden;
}

.solar-ai-map::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(248, 248, 243, 0.04)),
    linear-gradient(0deg, rgba(12, 13, 11, 0.62), transparent 45%);
  content: "";
  pointer-events: none;
}

.solar-ai-map > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.05);
}

.solar-ai-panel {
  position: absolute;
  z-index: 2;
  display: flex;
  width: 86px;
  height: 58px;
  border: 2px solid var(--services-orange);
  align-items: flex-start;
  justify-content: flex-end;
  pointer-events: none;
}

.solar-ai-panel i {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 12px;
  height: 12px;
  border: 3px solid #161714;
  border-radius: 50%;
  background: var(--services-orange);
}

.solar-ai-panel b {
  margin: 4px;
  padding: 3px 5px;
  background: #161714;
  color: var(--services-paper);
  font-family: var(--_typography---typefaces--badges);
  font-size: 10px;
  font-weight: 500;
}

.solar-ai-panel--one {
  top: 22%;
  left: 19%;
}

.solar-ai-panel--two {
  top: 47%;
  right: 18%;
  border-color: rgba(248, 248, 243, 0.72);
}

.solar-ai-panel--two i {
  background: var(--services-paper);
}

.solar-ai-panel--three {
  right: 31%;
  bottom: 21%;
}

.solar-ai-map__caption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  padding-top: 14px;
  border-top: 1px solid rgba(248, 248, 243, 0.45);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--_typography---typefaces--badges);
  font-size: var(--_typography---type-scale--small-size);
  text-transform: uppercase;
}

.solar-ai-map__caption span {
  color: rgba(248, 248, 243, 0.62);
}

.solar-ai-insight {
  display: flex;
  min-width: 0;
  padding: 18px;
  background: #f1f1e9;
  color: var(--services-ink);
  flex-flow: column;
}

.solar-ai-insight__head {
  display: flex;
  margin-bottom: 24px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.solar-ai-insight__head > div {
  display: flex;
  flex-flow: column;
  gap: 4px;
}

.solar-ai-insight__head small,
.solar-ai-insight__head > span,
.solar-ai-pair figcaption,
.solar-ai-insight dt {
  font-family: var(--_typography---typefaces--badges);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.solar-ai-insight__head > span {
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(255, 88, 32, 0.14);
  color: #a6320b;
}

.solar-ai-pair {
  display: grid;
  margin-bottom: 24px;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.solar-ai-pair figure {
  position: relative;
  height: 112px;
  margin: 0;
  border-radius: 3px;
  background: var(--services-ink);
  overflow: hidden;
}

.solar-ai-pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solar-ai-pair figcaption {
  position: absolute;
  right: 6px;
  bottom: 6px;
  padding: 4px 6px;
  background: rgba(0, 0, 0, 0.68);
  color: var(--services-paper);
}

.solar-ai-insight dl {
  margin: 0;
}

.solar-ai-insight dl div {
  display: flex;
  padding: 12px 0;
  border-top: 1px dotted var(--services-body);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.solar-ai-insight dd {
  margin: 0;
  font-weight: 500;
}

.solar-ai-insight > p {
  margin: auto 0 0;
  padding: 16px;
  border-left: 4px solid var(--services-orange);
  background: #deded3;
  font-size: 14px;
}

.solar-ai-insight > p strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--_typography---typefaces--badges);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.solar-ai-content {
  display: flex;
  flex-flow: column;
}

.solar-ai-content > .services-lead {
  margin-bottom: 30px;
  color: rgba(248, 248, 243, 0.78);
}

.solar-ai-pipeline {
  border-top: 1px dotted rgba(248, 248, 243, 0.34);
}

.solar-ai-pipeline article {
  display: grid;
  padding: 20px 0;
  border-bottom: 1px dotted rgba(248, 248, 243, 0.34);
  grid-template-columns: 42px 1fr;
  gap: 12px;
}

.solar-ai-pipeline article > span {
  color: var(--services-orange);
  font-family: var(--_typography---typefaces--badges);
  font-size: var(--_typography---type-scale--small-size);
}

.solar-ai-pipeline h3 {
  margin-bottom: 6px;
  color: var(--services-paper);
  font-size: var(--_typography---type-scale--lead-size);
  font-weight: 500;
  line-height: var(--_typography---type-scale--lead-line-height);
}

.solar-ai-pipeline p {
  color: rgba(248, 248, 243, 0.64);
}

.solar-ai-suite {
  display: grid;
  margin-top: 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.solar-ai-suite article {
  min-height: 190px;
  padding: 16px;
  border: 1px solid rgba(248, 248, 243, 0.16);
  border-radius: var(--_border-radii---default);
  background: rgba(248, 248, 243, 0.07);
}

.solar-ai-suite span {
  color: rgba(248, 248, 243, 0.48);
  font-family: var(--_typography---typefaces--badges);
  font-size: 10px;
}

.solar-ai-suite h3 {
  margin: 18px 0 8px;
  color: var(--services-paper);
  font-size: var(--_typography---type-scale--lead-size);
  font-weight: 500;
}

.solar-ai-suite p {
  color: rgba(248, 248, 243, 0.64);
  font-size: 14px;
}

.solar-ai-actions {
  margin-top: 30px;
}

.solar-ai-section .services-button-ghost {
  border-color: rgba(248, 248, 243, 0.38);
  color: var(--services-paper);
}

.solar-ai-section .services-button-ghost:hover,
.solar-ai-section .services-button-ghost:focus-visible {
  background: var(--services-paper);
  color: var(--services-ink);
}

/* Potraga kućnih ljubimaca */
.pet-search-section {
  background: var(--services-soft);
}

.pet-search-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
}

.pet-search-visual {
  position: relative;
  min-height: 720px;
  border-radius: var(--_border-radii---default);
  background: var(--services-ink);
  overflow: hidden;
}

.pet-search-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pet-search-visual__caption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  padding: 18px;
  border-radius: var(--_border-radii---default);
  background: rgba(0, 0, 0, 0.56);
  color: var(--services-paper);
  flex-flow: column;
  gap: 4px;
  backdrop-filter: blur(12px);
}

.pet-search-visual__caption span,
.pet-search-visual__caption strong {
  font-family: var(--_typography---typefaces--badges);
  font-size: var(--_typography---type-scale--small-size);
  font-weight: 500;
  text-transform: uppercase;
}

.pet-search-visual__caption span {
  color: var(--services-paper);
}

.pet-search-copy {
  display: flex;
  padding: 48px;
  border-radius: var(--_border-radii---default);
  background: var(--services-paper);
  flex-flow: column;
  align-items: flex-start;
  justify-content: center;
}

.pet-search-copy h2 {
  margin-bottom: 24px;
}

.pet-search-copy .services-lead {
  margin-bottom: 36px;
}

.pet-search-actions {
  display: flex;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 12px;
}

.pet-search-facts {
  display: flex;
  width: 100%;
  border-top: 1px dotted var(--services-body);
  flex-flow: column;
}

.pet-search-facts div {
  display: grid;
  padding: 18px 0;
  border-bottom: 1px dotted var(--services-body);
  grid-template-columns: minmax(145px, 0.7fr) 1.3fr;
  gap: 18px;
}

.pet-search-facts strong {
  font-weight: 500;
}

.pet-search-facts span {
  color: var(--services-body);
}

.pet-process {
  margin-top: 96px;
}

.pet-process__intro {
  display: flex;
  margin-bottom: 48px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 72px;
}

.pet-process__intro h3 {
  max-width: var(--_containers---8-cols);
}

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

.pet-process__steps article,
.services-process-grid article {
  display: flex;
  min-height: 290px;
  padding: 18px 18px 24px;
  border-radius: var(--_border-radii---default);
  background: var(--services-paper);
  flex-flow: column;
  align-items: flex-start;
}

.pet-process__steps article > span,
.services-process-grid article > span {
  display: flex;
  width: 60px;
  height: 60px;
  margin-bottom: 72px;
  border-radius: var(--_border-radii---default);
  background: var(--services-ink);
  color: var(--services-paper);
  align-items: center;
  justify-content: center;
  font-family: var(--_typography---typefaces--badges);
  font-size: var(--_typography---type-scale--small-size);
}

.pet-process__steps h4,
.services-process-grid h3 {
  margin-bottom: 10px;
  font-size: var(--_typography---type-scale--lead-size);
  font-weight: 500;
  line-height: var(--_typography---type-scale--lead-line-height);
}

.pet-limitations {
  margin-top: 24px;
  padding: 24px;
  border-left: 6px solid var(--services-ink);
  border-radius: var(--_border-radii---default);
  background: var(--services-paper);
}

.pet-limitations strong {
  display: block;
  margin-bottom: 8px;
  font-size: var(--_typography---type-scale--lead-size);
}

.services-button-dark {
  background: var(--services-ink);
  color: var(--services-paper);
}

.services-button-dark:hover,
.services-button-dark:focus-visible {
  background: #252525;
}

/* Ostale usluge */
.detail-services-section {
  background: var(--services-paper);
}

.detail-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.detail-service {
  position: relative;
  display: flex;
  min-height: 520px;
  padding: 18px 18px 24px;
  border-radius: var(--_border-radii---default);
  background: var(--services-soft);
  flex-flow: column;
  align-items: flex-start;
  overflow: hidden;
}

.detail-service::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  background: var(--services-orange);
  content: "";
}

.detail-service--neutral::before {
  background: var(--services-ink);
}

.detail-service--with-thumb {
  min-height: 720px;
  padding: 0;
}

.detail-service--with-thumb::before {
  z-index: 2;
}

.detail-service__thumb {
  width: 100%;
  height: 230px;
  flex: none;
  object-fit: cover;
}

.detail-service__content {
  display: flex;
  width: 100%;
  padding: 18px 18px 24px;
  flex: 1;
  flex-flow: column;
  align-items: flex-start;
}

.detail-service__top {
  display: flex;
  width: 100%;
  margin-bottom: 72px;
  align-items: center;
  justify-content: space-between;
  font-family: var(--_typography---typefaces--badges);
  font-size: var(--_typography---type-scale--small-size);
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
}

.detail-service__top span {
  display: flex;
  width: 60px;
  height: 60px;
  border-radius: var(--_border-radii---default);
  background: var(--services-ink);
  color: var(--services-paper);
  align-items: center;
  justify-content: center;
}

.detail-service__top em {
  font-style: normal;
}

.detail-service h3 {
  margin-bottom: 12px;
  font-size: var(--_typography---type-scale--h5-size);
  line-height: var(--_typography---type-scale--h5-line-height);
}

.detail-service > p,
.detail-service__image-copy > p {
  margin-bottom: 24px;
}

.detail-service h4 {
  margin-top: auto;
  font-family: var(--_typography---typefaces--badges);
  font-size: var(--_typography---type-scale--small-size);
  font-weight: 500;
  line-height: var(--_typography---type-scale--small-line-height);
  text-transform: uppercase;
}

.detail-service ul {
  width: 100%;
  margin: 12px 0 0;
  padding: 0;
  gap: 0;
  list-style: none;
}

.detail-service li {
  padding: 9px 0;
  border-top: 1px dotted var(--services-body);
}

.detail-service--image {
  display: grid;
  min-height: 520px;
  padding: 0;
  grid-column: span 2;
  grid-template-columns: 1fr 1fr;
}

.detail-service--image::before {
  z-index: 2;
}

.detail-service--image > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

#energetika > img {
  object-position: 35% center;
}

.detail-service__image-copy {
  display: flex;
  padding: 18px 18px 24px;
  flex-flow: column;
}

.detail-service__image-copy .detail-service__top {
  margin-bottom: 56px;
}

/* Proces */
.services-process-section {
  background: var(--services-soft);
}

.services-process-heading {
  display: flex;
  margin-bottom: 72px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 72px;
}

.services-process-heading h2 {
  max-width: var(--_containers---8-cols);
}

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

.services-process-grid article {
  background: var(--services-paper);
}

/* FAQ */
.faq-section {
  background: var(--services-paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: 96px;
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-heading h2 {
  margin-bottom: 24px;
}

.faq-heading p {
  max-width: var(--_containers---4-cols);
  margin-bottom: 30px;
}

.faq-list {
  display: flex;
  flex-flow: column;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--services-line);
  border-radius: var(--_border-radii---default);
  background: var(--services-paper);
  overflow: hidden;
}

.faq-list summary {
  display: flex;
  padding: 24px 18px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--services-ink);
  cursor: pointer;
  font-size: var(--_typography---type-scale--lead-size);
  font-weight: 500;
  line-height: var(--_typography---type-scale--lead-line-height);
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: flex;
  width: 36px;
  height: 36px;
  flex: none;
  border-radius: 50%;
  background: var(--services-soft);
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.faq-list details[open] summary span {
  background: var(--services-orange);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 680px;
  padding: 0 72px 24px 18px;
}

.services-text-link {
  min-height: 48px;
}

.service-step-time {
  display: block;
  margin-top: 18px;
  color: var(--services-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.service-pricing-section {
  background: var(--services-paper);
}

.service-pricing-grid {
  display: grid;
  margin-top: 48px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--services-line);
  border-radius: 6px;
  background: var(--services-line);
}

.service-pricing-grid article {
  min-height: 220px;
  padding: 36px;
  background: #fff;
}

.service-pricing-grid h3 {
  margin-bottom: 18px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.05;
}

.service-pricing-grid p {
  color: var(--services-muted);
}

/* Završni CTA */
.services-cta {
  padding: var(--_section-padding---default) 0;
  background: linear-gradient(180deg, var(--services-paper), var(--services-soft));
}

.services-cta__inner {
  display: flex;
  max-width: var(--_containers---8-cols);
  text-align: center;
  flex-flow: column;
  align-items: center;
  gap: 36px;
}

.services-cta__inner h2 {
  max-width: var(--_containers---8-cols);
}

.services-cta__copy {
  display: flex;
  width: 100%;
  max-width: 760px;
  flex-flow: column;
  align-items: center;
  gap: 30px;
}

.services-cta__copy .services-actions {
  justify-content: center;
}

.service-cta-form {
  width: 100%;
  padding: 34px;
  border: 1px solid var(--services-line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(31, 38, 32, 0.08);
  text-align: left;
}

.service-cta-form .form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-cta-form .contact-field-label {
  margin-bottom: -8px;
}

.service-cta-form .form-button {
  width: 100%;
  margin-top: 4px;
}

.service-cta-nap {
  color: var(--services-muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.7;
}

.service-cta-nap a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media screen and (max-width: 1200px) {
  .services-heading {
    gap: 48px;
  }

  .services-heading > p {
    flex-basis: 430px;
  }

  .pet-process__steps,
  .services-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 991px) {
  .services-section,
  .services-cta {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .services-hero__container {
    min-height: 760px;
    padding: 72px 36px 36px;
  }

  .services-hero__visual > video {
    left: 0;
    width: 100%;
  }

  .solar-ai-heading {
    margin-bottom: 56px;
    align-items: flex-start;
    flex-flow: column;
    gap: 24px;
  }

  .solar-ai-heading > p {
    max-width: 620px;
    flex: none;
  }

  .solar-ai-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .solar-ai-product {
    position: static;
  }

  .services-hero__copy {
    max-width: 620px;
  }

  .services-heading {
    margin-bottom: 64px;
    align-items: flex-start;
    flex-flow: column;
    gap: 24px;
  }

  .services-heading > p {
    max-width: 620px;
    flex: none;
  }

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

  .lidar-intro,
  .thermal-layout,
  .pet-search-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .lidar-visual {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .lidar-visual__viewer {
    min-height: 0;
  }

  .thermal-layout {
    gap: 48px;
  }

  .pet-search-visual {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .pet-search-visual > img {
    object-position: center 62%;
  }

  .detail-service--image {
    grid-column: span 2;
  }

  .faq-grid {
    gap: 48px;
  }

  .faq-heading {
    position: static;
  }
}

@media screen and (max-width: 767px) {
  .lidar-visual {
    height: 720px;
    min-height: 720px;
    aspect-ratio: auto;
  }

  .lidar-visual__viewer {
    height: 100%;
    min-height: 720px;
  }

  .service-pricing-grid {
    margin-top: 34px;
  }

  .service-pricing-grid article,
  .service-cta-form {
    padding: 24px;
  }

  .services-hero__container {
    min-height: 720px;
    padding: 60px 24px 24px;
  }

  .services-hero__copy h1 {
    font-size: 48px;
  }

  .services-hero__visual-shade {
    background:
      linear-gradient(90deg, rgba(10, 12, 10, 0.66) 0%, rgba(10, 12, 10, 0.28) 100%),
      linear-gradient(0deg, rgba(10, 12, 10, 0.68) 0%, transparent 68%);
  }

  .services-hero__steps {
    margin-top: 36px;
    padding: 18px;
    gap: 12px;
  }

  .services-card-grid,
  .detail-services-grid,
  .numbered-list,
  .pet-process__steps,
  .services-process-grid {
    grid-template-columns: 1fr;
  }

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

  .lidar-intro__copy,
  .pet-search-copy {
    padding: 30px 24px;
  }

  .lidar-usecases,
  .pet-process {
    margin-top: 72px;
  }

  .lidar-usecases__title,
  .pet-process__intro,
  .services-process-heading {
    margin-bottom: 36px;
    align-items: flex-start;
    flex-flow: column;
    gap: 18px;
  }

  .numbered-list {
    column-gap: 0;
  }

  .thermal-compare figcaption {
    flex-flow: column;
  }

  .solar-ai-screen {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .solar-ai-map {
    min-height: 460px;
  }

  .solar-ai-insight {
    min-height: 430px;
  }

  .solar-ai-suite {
    grid-template-columns: 1fr;
  }

  .solar-ai-suite article {
    min-height: 0;
  }

  .pet-search-visual {
    aspect-ratio: 3 / 4;
  }

  .pet-search-facts div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .detail-service--image {
    display: flex;
    grid-column: auto;
  }

  .detail-service--image > img {
    height: 310px;
    min-height: 0;
  }

  .detail-service__image-copy {
    min-height: 430px;
  }
}

@media screen and (max-width: 479px) {
  html {
    scroll-padding-top: 78px;
  }

  .services-section,
  .services-cta {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .services-hero__container {
    min-height: 760px;
    padding: 48px 18px 18px;
  }

  .services-hero__copy h1 {
    font-size: 40px;
  }

  .solar-ai-product__bar,
  .solar-ai-product__footer {
    padding-right: 14px;
    padding-left: 14px;
  }

  .solar-ai-product__footer > span:first-child {
    display: none;
  }

  .services-hero__lead,
  .services-lead,
  .services-heading > p {
    font-size: 18px;
  }

  .services-actions,
  .pet-search-actions {
    width: 100%;
    align-items: stretch;
    flex-flow: column;
  }

  .services-actions .button,
  .services-actions .services-button-ghost,
  .pet-search-actions .button,
  .pet-search-actions .services-button-ghost {
    width: 100%;
  }

  .services-hero__steps {
    grid-template-columns: 1fr;
  }

  .services-hero__steps div {
    padding-bottom: 12px;
    border-bottom: 1px dotted rgba(248, 248, 243, 0.35);
  }

  .services-hero__steps div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .services-heading {
    margin-bottom: 48px;
  }

  .service-card__number,
  .detail-service__top span,
  .pet-process__steps article > span,
  .services-process-grid article > span {
    margin-bottom: 48px;
  }

  .thermal-compare__stage {
    aspect-ratio: 4 / 3;
  }

  .lidar-visual__caption,
  .pet-search-visual__caption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 12px;
  }

  .thermal-compare__label {
    top: 12px;
  }

  .thermal-compare__label--rgb {
    right: 12px;
  }

  .thermal-compare__label--thermal {
    left: 12px;
  }

  .thermal-compare__divider span {
    width: 42px;
    height: 42px;
  }

  .pet-search-visual {
    aspect-ratio: 2 / 3;
  }

  .pet-search-actions,
  .pet-search-copy .services-lead {
    margin-bottom: 36px;
  }

  .detail-service,
  .pet-process__steps article,
  .services-process-grid article {
    min-height: 0;
  }

  .faq-list summary {
    font-size: 18px;
  }

  .faq-list details p {
    padding-right: 18px;
  }
}
