/* Hide standard layout breadcrumb-area on this page */
.breadcrumb-area {
  display: none !important;
}

/* ===== SERVICES PAGE SPECIFIC ===== */
.page-banner {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-top: 140px;
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(245,242,236,0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(245,242,236,0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.breadcrumb {
  position: relative;
  z-index: 2;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel-light);
  margin-bottom: 22px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumb a {
  color: var(--steel-light);
}
.breadcrumb a:hover {
  color: var(--amber);
}
.breadcrumb span {
  color: var(--amber);
}
.page-banner-inner {
  position: relative;
  z-index: 2;
  padding-bottom: 64px;
  width: 100%;
}
.page-banner h1 {
  color: var(--paper);
  font-size: clamp(34px, 5.2vw, 62px);
  font-weight: 600;
  max-width: 820px;
}
.page-banner h1 em {
  font-style: normal;
  color: var(--amber);
}
.page-banner p {
  color: var(--steel-light);
  max-width: 560px;
  margin-top: 20px;
  font-size: 16px;
}

.intro-strip {
  padding: 70px 0 20px;
}
.intro-strip p {
  max-width: 760px;
  color: var(--steel);
  font-size: 16px;
}

.div-block {
  padding: 70px 0;
  border-top: 1px solid var(--line);
}
.div-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.div-block.reverse .div-inner {
  direction: rtl;
}
.div-block.reverse .div-inner > * {
  direction: ltr;
}
.div-media {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.div-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.div-media::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--line-light);
  pointer-events: none;
}
.div-tagnum {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--amber);
  color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 10px 16px;
}
.div-text .eyebrow {
  margin-bottom: 16px;
}
.div-text h2 {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 18px;
}
.div-text p.desc {
  color: var(--steel);
  font-size: 15.5px;
  margin-bottom: 26px;
  max-width: 480px;
}
.feat-list {
  margin-bottom: 30px;
}
.feat-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 14.5px;
  color: var(--ink);
  max-width: 480px;
}
.feat-list svg {
  width: 18px;
  height: 18px;
  stroke: var(--amber);
  flex-shrink: 0;
  margin-top: 2px;
}

.strip-process {
  background: var(--ink);
  color: var(--paper);
  padding: 70px 0;
}
.strip-process .head-row h2 {
  color: var(--paper);
}
.strip-process .head-row p {
  color: var(--steel-light);
}
.strip-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 10px;
  border-top: 1px solid var(--line-light);
}
.strip-cell {
  padding: 28px 22px;
  border-right: 1px solid var(--line-light);
}
.strip-cell:last-child {
  border-right: none;
}
.strip-cell b {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  color: var(--amber);
  display: block;
  margin-bottom: 8px;
}
.strip-cell span {
  font-size: 13.5px;
  color: var(--steel-light);
}

/* Ticker styles */
.ticker {
  background: var(--amber);
  overflow: hidden;
  padding: 13px 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: scroll-left 32s linear infinite;
}
.ticker-track span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  gap: 26px;
  font-weight: 500;
}
.ticker-track span::after {
  content: "◆";
  font-size: 8px;
  color: rgba(23,24,26,0.5);
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 900px) {
  .div-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .div-block.reverse .div-inner {
    direction: ltr;
  }
  .div-media {
    height: 280px;
  }
  .strip-row {
    grid-template-columns: 1fr 1fr;
  }
}
