/* ============================================================
   DCE SYSTEMS — PAGES.CSS
   Styles for all inner pages. Loaded after main.css.
   Sections:
     [PAGE-HERO]        Hero for inner pages
     [BREADCRUMB]       Breadcrumb navigation
     [SPLIT-SECTION]    Image + text split layouts
     [SOLUTIONS]        Solution product cards, diagrams
     [MANUFACTURING]    Process steps, standards grid, gallery
     [ABOUT]            Timeline, divisions overview, values, partnership
     [CAREERS]          Programs, culture, jobs filter/grid
     [CAREERS-APPLY]    Multi-step form, progress bar
     [EXPLORE]          Filter bar, resource grid, newsletter, featured
     [CONTACT]          Contact split, contact details, enquiry cards
     [STANDARDS]        Standard cards (shared)
     [RELATED]          Related solutions cards
     [UTILITIES]        Shared inner-page utilities
   ============================================================ */

/* ─────────────────────────────────────────────
   [PAGE-HERO]
   ───────────────────────────────────────────── */
.page-hero {
  position: relative;
  width: 100%;
  height: clamp(420px, 65vh, 720px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero--short {
  height: clamp(300px, 45vh, 500px);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.45) 45%,
    rgba(0,0,0,0.3) 100%
  );
  z-index: 1;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 72px;
  padding-top: 72px;
}

.page-hero__title {
  font-family: var(--display);
  font-size: clamp(28px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 720px;
  margin-bottom: 20px;
}

.page-hero__sub {
  font-size: clamp(14px, 1.8vw, 18px);
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin-bottom: 28px;
}

/* ─────────────────────────────────────────────
   [BREADCRUMB]
   ───────────────────────────────────────────── */
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.breadcrumb-nav a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.breadcrumb-nav a:hover {
  color: var(--white);
}

.breadcrumb-nav span {
  color: rgba(255,255,255,0.3);
}

.breadcrumb-nav--dark {
  color: var(--ink-faint);
  margin-bottom: 20px;
}

.breadcrumb-nav--dark a {
  color: var(--ink-dim);
}

.breadcrumb-nav--dark a:hover {
  color: var(--cyan);
}

.breadcrumb-nav--dark span {
  color: var(--ink-faint);
}

/* ─────────────────────────────────────────────
   [SPLIT-SECTION] Image + text side by side
   ───────────────────────────────────────────── */
.split-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.split-section__image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.split-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease-out;
}

.split-section__image:hover img {
  transform: scale(1.04);
}

.split-section__text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-dim);
  margin-bottom: 14px;
}

.split-section__text a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-top: 8px;
  transition: gap 0.2s;
}

.split-section__text a:hover {
  gap: 12px;
}

.page-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan);
  transition: gap 0.2s;
  text-decoration: none;
}

.page-link-arrow:hover {
  gap: 12px;
  color: var(--cyan-deep);
}

/* ─────────────────────────────────────────────
   [STANDARDS] Standard cards — shared
   ───────────────────────────────────────────── */
.standards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: clamp(2px, 1vw, 8px);
}

.standard-card {
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.standard-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  z-index: 1;
}

.standard-card--dark {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}

.standard-card--dark:hover {
  background: rgba(255,255,255,0.07);
}

.standard-card__code {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}

.standard-card h4 {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.standard-card--dark h4 {
  color: var(--white);
}

.standard-card p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink-dim);
}

.standard-card--dark p {
  color: rgba(255,255,255,0.55);
}

/* ─────────────────────────────────────────────
   [RELATED] Related solution cards
   ───────────────────────────────────────────── */
.related-solutions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(12px, 2vw, 20px);
}

.related-sol-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  background: var(--white);
}

.related-sol-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.related-sol-card img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.related-sol-card:hover img {
  transform: scale(1.05);
}

.related-sol-card__content {
  padding: 20px 24px;
}

.related-sol-card__content h4 {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin: 10px 0 8px;
}

.related-sol-card__content p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-dim);
}

/* ─────────────────────────────────────────────
   [SOLUTIONS] Product cards
   ───────────────────────────────────────────── */
.solutions-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: clamp(2px, 1vw, 8px);
}

.solution-product-card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.solution-product-card:hover {
  box-shadow: var(--shadow-lg);
  z-index: 1;
}

.solution-product-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.solution-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.solution-product-card:hover .solution-product-card__image img {
  transform: scale(1.05);
}

.solution-product-card__body {
  padding: clamp(20px, 3vw, 32px);
}

.solution-product-card__body h3 {
  font-family: var(--display);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.solution-product-card__body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-dim);
  margin-bottom: 16px;
}

.solution-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.solution-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-dim);
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
}

.solution-list li:last-child {
  border-bottom: none;
}

.solution-list li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  margin-top: 5px;
  flex-shrink: 0;
}

/* System diagram large (liquid-cooling page) */
.system-diagram-lg {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px;
  overflow-x: auto;
}

.system-diagram-lg svg {
  min-width: 600px;
  width: 100%;
  height: auto;
}

/* ─────────────────────────────────────────────
   [MANUFACTURING] Process steps, gallery
   ───────────────────────────────────────────── */
.capabilities-strip {
  background: var(--bg-2);
  padding: clamp(32px, 5vw, 48px) 0;
  border-bottom: 1px solid var(--line);
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: clamp(2px, 1vw, 8px);
}

.cap-item {
  padding: clamp(20px, 3vw, 32px) clamp(16px, 2.5vw, 28px);
  background: var(--white);
  border: 1px solid var(--line);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cap-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  z-index: 1;
}

.cap-item__icon {
  width: 48px;
  height: 48px;
  background: var(--cyan-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.cap-item__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--cyan-deep);
}

.cap-item h3 {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}

.cap-item p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink-dim);
}

/* Process steps */
.process-steps {
  position: relative;
  display: grid;
  gap: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.process-step:last-child {
  border-bottom: none;
}

.process-step__num {
  font-family: var(--mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
  letter-spacing: -0.02em;
  padding-top: 4px;
}

.process-step__content h3 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.process-step__content p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-dim);
}

/* Manufacturing gallery */
.mfg-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
  gap: clamp(4px, 1vw, 8px);
  margin-top: 16px;
}

.mfg-gallery__item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
}

.mfg-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.mfg-gallery__item:hover img {
  transform: scale(1.08);
}

/* ─────────────────────────────────────────────
   [ABOUT] Timeline, divisions, values
   ───────────────────────────────────────────── */
.timeline {
  position: relative;
  display: grid;
  gap: 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 56px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--line);
}

.timeline__item {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 32px;
  padding: 40px 0;
  position: relative;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: 50px;
  top: 48px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  border: 3px solid var(--bg-2);
  box-shadow: 0 0 0 2px var(--cyan);
}

.timeline__year {
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.04em;
  padding-top: 6px;
  text-align: right;
  padding-right: 20px;
}

.timeline__content h3 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}

.timeline__content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-dim);
}

/* Divisions overview blocks */
.divisions-overview {
  display: grid;
  gap: 0;
}

.div-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.div-block:last-child {
  border-bottom: none;
}

.div-block__number {
  font-family: var(--mono);
  font-size: 32px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: -0.02em;
  line-height: 1;
  padding-top: 4px;
}

.div-block__content h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
}

.div-block__content p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-dim);
  margin-bottom: 16px;
  max-width: 640px;
}

/* Value cards */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(2px, 1vw, 8px);
}

.value-card {
  padding: clamp(24px, 3vw, 36px) clamp(20px, 2.5vw, 32px);
  background: var(--bg);
  border: 1px solid var(--line);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
  background: var(--panel);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  z-index: 1;
}

.value-card__icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.value-card h4 {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-dim);
}

/* Partnership note */
.partnership-note {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--cyan);
  padding: 40px 48px;
  border-radius: 0 8px 8px 0;
}

/* ─────────────────────────────────────────────
   [CAREERS] Programs, culture, jobs
   ───────────────────────────────────────────── */
/* Program cards (5 in grid) */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: clamp(2px, 1vw, 8px);
}

.program-card {
  position: relative;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
}

.program-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%);
  transition: background 0.4s;
}

.program-card:hover .program-card__overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0.1) 100%);
}

.program-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
}

.program-card__content h3 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin: 12px 0 6px;
  letter-spacing: -0.01em;
}

.program-card__content p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}

.program-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  transition: gap 0.2s;
}

.program-card:hover .program-card__link {
  gap: 10px;
}

/* Culture section */
.careers-culture {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.careers-culture__tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: clamp(4px, 1vw, 8px);
}

.culture-tile {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
}

.culture-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.culture-tile:hover img {
  transform: scale(1.06);
}

/* Culture values */
.culture-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: clamp(2px, 1vw, 8px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 48px;
}

.culture-value {
  padding: clamp(20px, 3vw, 32px) clamp(16px, 2.5vw, 24px);
  border-right: 1px solid rgba(255,255,255,0.08);
}

.culture-value:last-child {
  border-right: none;
}

.culture-value h4 {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.culture-value p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
}

/* Jobs filter */
.jobs-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.job-filter-btn {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 9px 18px;
  border-radius: 40px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--ink-dim);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.job-filter-btn:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.job-filter-btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

/* Jobs grid */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(12px, 2vw, 20px);
}

.job-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.job-card__header {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.job-card__title {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 10px;
}

.job-card__meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--ink-faint);
  margin-bottom: 14px;
}

.job-card__desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink-dim);
  flex: 1;
}

/* ─────────────────────────────────────────────
   [CAREERS-APPLY] Multi-step form
   ───────────────────────────────────────────── */
.apply-header {
  background: var(--bg-2);
  padding: 48px 0 0;
  border-bottom: 1px solid var(--line);
}

.apply-header__content {
  margin-bottom: 40px;
}

.apply-role-name {
  font-size: 16px;
  color: var(--ink-dim);
  margin-top: 8px;
}

/* Progress bar */
.apply-progress {
  padding-bottom: 0;
}

.apply-progress__steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 0;
  overflow-x: auto;
  padding-bottom: 0;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 16px 0;
}

.progress-step__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--line);
  color: var(--ink-faint);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, color 0.3s;
}

.progress-step.active .progress-step__num {
  background: var(--cyan);
  color: var(--white);
}

.progress-step.completed .progress-step__num {
  background: var(--ink);
  color: var(--white);
}

.progress-step__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-faint);
  white-space: nowrap;
  transition: color 0.3s;
}

.progress-step.active .progress-step__label {
  color: var(--ink);
}

.progress-step.completed .progress-step__label {
  color: var(--ink-dim);
}

.progress-step__line {
  flex: 1;
  height: 2px;
  background: var(--line);
  min-width: 32px;
  max-width: 80px;
  transition: background 0.3s;
}

.apply-progress__bar {
  height: 3px;
  background: var(--line);
  width: 100%;
  margin-top: 0;
}

.apply-progress__fill {
  height: 100%;
  background: var(--cyan);
  transition: width 0.5s var(--ease);
}

/* Form steps */
.apply-form-section {
  padding: clamp(40px, 7vw, 64px) 0;
  background: var(--bg-2);
}

.apply-form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(24px, 5vw, 56px) clamp(20px, 5vw, 64px);
  max-width: 820px;
  margin: 0 auto;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.form-step__header {
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.form-step__header h2 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}

.form-step__header p {
  font-size: 15px;
  color: var(--ink-faint);
}

.form-step__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* Field error */
.field-error {
  display: block;
  font-size: 12px;
  color: #dc2626;
  margin-top: 5px;
}

.form-control.error {
  border-color: #dc2626;
}

/* Review summary */
.apply-review {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 0;
}

.review-item {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}

.review-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.review-item__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 4px;
}

.review-item__value {
  font-size: 14px;
  color: var(--ink);
  word-break: break-word;
}

/* Success state */
.apply-success {
  text-align: center;
  padding: 48px 24px;
}

.apply-success__icon {
  width: 72px;
  height: 72px;
  background: var(--cyan-light);
  color: var(--cyan);
  font-size: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-weight: 700;
}

.apply-success h2 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 14px;
}

.apply-success p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-dim);
  max-width: 480px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────────
   [EXPLORE] Filter, resource grid, featured
   ───────────────────────────────────────────── */
.featured-article {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.3s, transform 0.3s;
}

.featured-article:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.featured-article__image {
  overflow: hidden;
}

.featured-article__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.featured-article:hover .featured-article__image img {
  transform: scale(1.04);
}

.featured-article__content {
  padding: clamp(24px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.featured-article__content h2 {
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.25;
  margin: 16px 0 16px;
  letter-spacing: -0.02em;
}

.featured-article__content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-dim);
  flex: 1;
}

.featured-article__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-top: 24px;
  transition: gap 0.2s;
}

.featured-article:hover .featured-article__link {
  gap: 10px;
}

/* Filter bar */
.explore-filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.explore-filter-btn {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 9px 18px;
  border-radius: 40px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--ink-dim);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.explore-filter-btn:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.explore-filter-btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

/* Resource grid */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(12px, 2vw, 20px);
}

.resource-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.resource-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.resource-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.resource-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.resource-card:hover .resource-card__image img {
  transform: scale(1.05);
}

.resource-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.resource-card__body h3 {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
  margin: 12px 0 10px;
}

.resource-card__body p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink-dim);
  flex: 1;
}

.resource-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-top: 18px;
  transition: gap 0.2s;
}

.resource-card:hover .resource-card__link {
  gap: 10px;
}

/* Newsletter */
.newsletter {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.newsletter-form__inner {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.newsletter-form__inner .form-control {
  flex: 1;
  min-width: 200px;
}

/* Related links */
.related-links__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: clamp(8px, 2vw, 16px);
}

.related-link-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}

.related-link-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: var(--ink);
}

/* ─────────────────────────────────────────────
   [CONTACT] Contact split, details
   ───────────────────────────────────────────── */
.contact-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-detail:last-child {
  border-bottom: none;
}

.contact-detail__icon {
  width: 40px;
  height: 40px;
  background: var(--cyan-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--cyan-deep);
}

.contact-detail__label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 4px;
}

.contact-detail__value {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}

.map-placeholder {
  height: 280px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.contact-form-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 48px);
}

/* Enquiry type cards */
.enquiry-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(12px, 2vw, 20px);
}

.enquiry-type-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(24px, 3.5vw, 40px) clamp(20px, 2.5vw, 32px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.3s, box-shadow 0.3s;
}

.enquiry-type-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}

.enquiry-type-card__icon {
  width: 52px;
  height: 52px;
  background: var(--cyan-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.enquiry-type-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--cyan-deep);
}

.enquiry-type-card h3 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
}

.enquiry-type-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-dim);
  flex: 1;
  margin-bottom: 20px;
}

.enquiry-type-card__link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
}

/* ─────────────────────────────────────────────
   [MAINTENANCE] Services, lifecycle
   ───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(2px, 1vw, 8px);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(24px, 3.5vw, 40px);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
  transition: box-shadow 0.3s;
}

.service-card:hover {
  box-shadow: var(--shadow);
  z-index: 1;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  background: var(--cyan-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--cyan-deep);
}

.service-card__content h3 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}

.service-card__content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-dim);
  margin-bottom: 16px;
}

.maintenance-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.maintenance-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-dim);
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
}

.maintenance-list li:last-child {
  border-bottom: none;
}

.maintenance-list li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  margin-top: 5px;
  flex-shrink: 0;
}

/* Maintenance lifecycle */
.maintenance-lifecycle {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: clamp(2px, 1vw, 8px);
}

.lifecycle-step {
  padding: clamp(24px, 3.5vw, 36px) clamp(16px, 2.5vw, 28px);
  border-right: 1px solid rgba(255,255,255,0.08);
}

.lifecycle-step:last-child {
  border-right: none;
}

.lifecycle-step__num {
  font-family: var(--mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 16px;
  display: block;
}

.lifecycle-step h3 {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.lifecycle-step p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
}

/* ─────────────────────────────────────────────
   [CONTAINMENT] Product types
   ───────────────────────────────────────────── */
.product-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(12px, 2vw, 20px);
}

.product-types-grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
}

.product-type-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-type-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-type-card__num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--cyan);
  padding: 20px 24px 0;
}

.product-type-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
  margin: 12px 0 0;
}

.product-type-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.product-type-card:hover .product-type-card__image img {
  transform: scale(1.04);
}

.product-type-card__content {
  padding: 24px;
}

.product-type-card__content h3 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
}

.product-type-card__content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-dim);
}

/* ─────────────────────────────────────────────
   [RESPONSIVE] Minimal breakpoints
   ───────────────────────────────────────────── */

/* Nav: show hamburger on tablet and below */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .nav__hamburger { display: flex; }
}

/* Hero: fix on landscape phones */
@media (max-height: 520px) and (orientation: landscape) {
  .hero { height: auto; min-height: 0; padding: 90px 0 56px; }
  .hero__scroll { display: none; }
  .page-hero { height: auto; padding: 80px 0 48px; }
}

/* Hide scroll indicator on short screens */
@media (max-height: 640px) {
  .hero__scroll { display: none; }
}

/* Apply form and contact panels: reduce padding on small screens */
@media (max-width: 640px) {
  .apply-form-wrap { padding: clamp(20px, 5vw, 36px); }
  .contact-form-panel { padding: clamp(20px, 5vw, 36px); }
  .partnership-note { padding: 24px 20px; }
  .page-hero { height: auto; padding: clamp(80px, 15vh, 120px) 0 clamp(40px, 6vh, 72px); }
  .page-hero--short { height: auto; padding: clamp(70px, 12vh, 100px) 0 clamp(32px, 5vh, 56px); }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn--primary,
  .hero__ctas .btn--ghost { width: 100%; justify-content: center; }

  /* Culture value borders: switch from right to bottom when stacked */
  .culture-value { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .culture-value:last-child { border-bottom: none; }

  /* Progress bar: hide step labels on small screens */
  .progress-step__label { display: none; }
  .progress-step__line  { min-width: 20px; }

  /* Lifecycle: switch borders when stacked */
  .lifecycle-step { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .lifecycle-step:last-child { border-bottom: none; }

  /* Form step actions: stack on small screens */
  .form-step__actions {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .form-step__actions button,
  .form-step__actions a {
    width: 100%;
    justify-content: center;
  }

  /* Service cards: stack icon above text */
  .service-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Very small phones: typography floor */
@media (max-width: 360px) {
  .sec-title { font-size: clamp(20px, 6vw, 28px); }
  .page-hero__title { font-size: clamp(22px, 7vw, 32px); }
  .apply-form-wrap { padding: 20px 14px; }
  .job-card { padding: 18px 14px; }
  .process-step { grid-template-columns: 1fr; gap: 8px; }
  .process-step__num { font-size: 20px; }
  .div-block { grid-template-columns: 1fr; }
  .timeline__item { grid-template-columns: 1fr; gap: 8px; padding: 32px 0; }
  .timeline__item::before { display: none; }
  .timeline::before { display: none; }
  .timeline__year { text-align: left; padding-right: 0; }
  .div-block__number { font-size: 22px; }
  .form-step__header h2 { font-size: 20px; }
}
