/* css/section.css
   Below-the-fold styles shared across multiple page templates (case study, vacancy, form).
   Hoisted from duplicated per-page <style> blocks. Loaded non-blocking via preload in <head>.
*/

.cs-client-section {
  background: #f7f7f5;
}

.cs-client-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

.cs-client-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cs-client-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #eb6823;
}

.cs-client-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0d0d0d;
  line-height: 1.3;
}

.cs-client-desc {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.7;
  margin-top: 0.25rem;
}

.cs-outcomes-section {
  background: #0d0d0d;
  padding: 4rem 0;
}

.cs-outcomes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.cs-outcome-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background 0.2s;
}

.cs-outcome-card:hover {
  background: rgba(255,255,255,0.1);
}

.cs-outcome-stat {
  font-size: 2.5rem;
  font-weight: 800;
  color: #eb6823;
  letter-spacing: -0.03em;
  line-height: 1;
}

.cs-outcome-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-top: 0.25rem;
}

.cs-outcome-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.cs-outcomes-eyebrow {
  color: rgba(255,255,255,0.45);
}

.cs-outcomes-heading {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-top: 0.25rem;
}

.cs-testimonial-section {
  background: #1a1a1a;
  padding: 5rem 0;
}

.cs-testimonial {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.cs-testimonial-mark {
  font-size: 5rem;
  line-height: 1;
  color: #eb6823;
  font-family: Georgia, serif;
  display: block;
  margin-bottom: -0.5rem;
}

.cs-testimonial-quote {
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  font-weight: 400;
}

.cs-testimonial-divider {
  width: 48px;
  height: 3px;
  background: #eb6823;
  margin: 1.5rem auto;
  border-radius: 2px;
}

.cs-testimonial-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cs-testimonial-role {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.2rem;
}

.cs-scope-table-wrap {
  margin-top: 1.25rem;
  border: 1px solid #ece9e4;
  border-radius: 10px;
  overflow: hidden;
}

.cs-scope-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid #ece9e4;
}

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

.cs-scope-row-head {
  display: none;
}

@media (min-width: 600px) {
  .cs-scope-row {
    grid-template-columns: 38% 1fr;
    gap: 1.1rem;
  }
  .cs-scope-row-head {
    display: grid;
    background: #f7f7f5;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #eb6823;
  }
}

.cs-scope-label {
  font-weight: 700;
  color: #0d0d0d;
  font-size: 0.88rem;
}

.cs-scope-desc {
  color: #555;
  font-size: 0.88rem;
  line-height: 1.65;
  overflow-wrap: break-word;
}

.jv-breadcrumb {
  margin-top: 60px;
  background: #f6f6f6;
  border-bottom: 1px solid #e8e8e8;
  padding: 11px 0;
}

.jv-breadcrumb-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.jv-bc-link {
  color: #666;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s;
}

.jv-bc-link:hover {
  color: var(--brand);
}

.jv-bc-sep {
  color: #bbb;
  font-size: 12px;
  margin: 0 8px;
}

.jv-bc-current {
  color: #aaa;
  font-size: 12px;
}

.jv-hero-sub {
  display: inline-block;
  background: rgba(235,104,35,0.12);
  border: 1px solid rgba(235,104,35,0.28);
  color: var(--brand);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 6px;
  margin-top: 0;
}

.jv-meta-bar {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 16px;
}

.jv-meta-bar .jv-hero-sub {
  margin-top: 0;
}

.jv-meta-inner {
  display: contents;
}

.jv-meta-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.jv-meta-value {
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 600;
}

.jv-meta-divider {
  color: rgba(255,255,255,0.25);
  font-size: 14px;
}

.jv-meta-date {
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  font-weight: 500;
}

.jv-exec-summary {
  max-width: 820px;
  font-size: 16px;
  line-height: 1.78;
  color: #333;
  border-left: 3px solid var(--brand);
  padding-left: 20px;
  margin-top: 14px;
}

.jv-exec-summary + .jv-exec-summary {
  margin-top: 16px;
}

.jv-detail {
  max-width: 820px;
}

.jv-detail-h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 28px 0 10px;
}

.jv-detail-p {
  color: #555;
  font-size: 14px;
  line-height: 1.78;
  margin-bottom: 14px;
}

.jv-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.jv-list li {
  padding-left: 22px;
  position: relative;
  color: #555;
  font-size: 14px;
  line-height: 1.65;
}

.jv-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.jv-apply-section {
  background: #f9f9f9;
}

.jv-apply-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.jv-apply-contact {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.jv-apply-contact a {
  color: var(--brand);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s;
}

.jv-apply-contact a:hover {
  opacity: 0.75;
}

.jv-apply-contact span {
  color: #888;
  font-size: 13px;
}

.jv-stats-bg {
  background-image:
        linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.55) 100%),
        url('../Assets/PlantRoom.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 80px 24px;
}

.jv-stats-bg .stat-grid {
  grid-template-columns: repeat(3, 1fr);
}

.jv-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.jv-benefit-card {
  background: #fff;
  border-radius: 10px;
  padding: 22px 16px 18px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07), 0 1px 4px rgba(235,104,35,0.06);
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.jv-benefit-card .jv-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(235,104,35,0.09);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 18px;
  flex-shrink: 0;
}

.jv-benefit-card .jv-card-label {
  font-size: 12px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.45;
}

.nb-form-section {
  background: #f6f6f6;
  padding: 64px 24px;
}

.nb-form-card {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  padding: 40px 40px 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}

.nb-field {
  margin-bottom: 20px;
}

.nb-help {
  font-size: 12px;
  color: #999;
  margin-top: 5px;
  display: block;
}

.nb-input, .nb-textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  color: #1a1a1a;
  background: #f8f8f8;
  border: 1.5px solid #e8e8e8;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.18s, background 0.18s;
}

.nb-input:focus, .nb-textarea:focus {
  border-color: var(--brand);
  background: #fff;
}

.nb-input::placeholder, .nb-textarea::placeholder {
  color: #bbb;
}

.nb-file {
  display: block;
  width: 100%;
  padding: 10px 14px;
  font-size: 13px;
  background: #f8f8f8;
  border: 1.5px dashed #ddd;
  border-radius: 8px;
  cursor: pointer;
  color: #666;
  transition: border-color 0.18s;
}

.nb-file:hover {
  border-color: var(--brand);
}

.radio-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.radio-option {
  position: relative;
}

.radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-option input:checked + label {
  border-color: var(--brand);
  background: rgba(235,104,35,0.07);
  color: var(--brand);
  font-weight: 600;
}

.consent-wrap {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.nb-checkbox {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--brand);
  margin-top: 2px;
}

.consent-text {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}

.nb-info-box {
  background: rgba(235,104,35,0.06);
  border-left: 3px solid var(--brand);
  border-radius: 0 8px 8px 0;
  padding: 14px 16px;
  margin-bottom: 20px;
  font-size: 13px;
  color: #555;
  font-weight: 500;
}

.step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  gap: 12px;
}

.step-counter {
  font-size: 12px;
  color: #aaa;
  font-weight: 500;
}

.btn-prev {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: #555;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 10px;
  border: 1.5px solid #ddd;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.15s, color 0.15s;
}

.btn-prev:hover {
  border-color: #aaa;
  color: #1a1a1a;
}

.btn-next {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.18s, transform 0.14s;
}

.btn-next:hover {
  background: #174578;
  transform: translateY(-1px);
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--brand);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.18s, transform 0.14s;
}

.btn-submit:hover {
  background: #c9551a;
  transform: translateY(-1px);
}

.nb-divider {
  border: none;
  border-top: 1px solid #f0f0f0;
  margin: 22px 0;
}

.pp-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.pp-last-updated {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 2.5rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(235,104,35,0.3);
  border-radius: 999px;
}

.pp-section {
  padding: 3rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.pp-section:last-child {
  border-bottom: none;
}

.pp-h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0d0d0d;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
}

.pp-p {
  font-size: 0.975rem;
  line-height: 1.8;
  color: #3a3a3a;
  margin-bottom: 1rem;
}

.pp-p:last-child {
  margin-bottom: 0;
}

.pp-link {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.18s;
}

.pp-link:hover {
  opacity: 0.75;
}

.pp-intro {
  padding: 3.5rem 0 2rem;
}

.pp-intro-h1 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0d0d0d;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.pp-ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.pp-ul li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.975rem;
  line-height: 1.8;
  color: #3a3a3a;
  margin-bottom: 0.5rem;
}

.pp-ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

@media (min-width: 768px) {
  .cs-client-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (min-width: 640px) {
  .cs-outcomes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cs-outcomes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1023px) {
  .jv-stats-bg {
    background-attachment: scroll;
  }
}

@media (max-width: 639px) {
  .jv-stats-bg .stat-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .nb-form-card {
    padding: 28px 20px 24px;
  }
}


/* Page-unique below-the-fold styles, externalised from per-page <style> blocks. */

/* -- casestudies.html (page-unique) -- */
.csl-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 40px;
}
.csl-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.csl-card:hover {
  border-color: var(--brand);
  box-shadow: 0 10px 36px rgba(235,104,35,0.13);
  transform: translateY(-4px);
}
.csl-thumb-wrap {
  position: relative;
  overflow: hidden;
}
.csl-thumb {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.csl-card:hover .csl-thumb {
  transform: scale(1.04);
}
.csl-sector-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(13,13,13,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.12);
}
.csl-body {
  padding: 22px 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.csl-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 1.3;
}
.csl-desc {
  font-size: 13.5px;
  color: #777;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
}
.csl-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #f0f0f0;
}
.csl-value {
  font-size: 12px;
  font-weight: 600;
  color: #999;
}
.csl-value strong {
  color: #1a1a1a;
}
.csl-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.csl-cta i {
  font-size: 10px;
  transition: transform 0.15s;
}
.csl-card:hover .csl-cta i {
  transform: translateX(3px);
}
.cs-intro-section {
  background: #f9f9f9;
  padding: 64px 0;
}
.cs-intro-inner {
  max-width: 720px;
}
.csl-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.csl-filter-tag {
  display: inline-block;
  background: #f2f2f2;
  color: #555;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 7px 16px;
  border-radius: 20px;
}
@media (min-width: 600px) {
  .csl-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .csl-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* -- careers.html (page-unique) -- */
.vac-bg {
  background-image:
        linear-gradient(to bottom, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.60) 100%),
        url('../Assets/MAndE.jpg');
  background-size: cover;
  background-position: center;
}
.career-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}
.career-card:hover {
  transform: translateY(-4px);
}
.career-job-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
  line-height: 1.3;
}
.career-company {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.career-meta {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
  flex: 1;
}
.career-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: #555;
}
.career-meta-item i {
  color: var(--brand);
  width: 14px;
  text-align: center;
  font-size: 11px;
  flex-shrink: 0;
}
.career-card .btn-green {
  align-self: flex-start;
}
.career-card-featured {
  border-top: 4px solid var(--brand);
}
.career-featured-badge {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.career-card-featured .career-job-title {
  font-size: 20px;
  margin-bottom: 6px;
}
.career-card-featured .career-company {
  margin-bottom: 12px;
}
.career-card-featured .career-meta {
  flex: 0;
  margin-bottom: 14px;
}
.career-featured-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.career-card-desc .career-meta {
  flex: 0;
  margin-bottom: 14px;
}
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .career-card-featured {
    grid-column: 1 / -1;
  }
}
@media (min-width: 1024px) {
  #vacancies .bento-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .career-card-featured {
    grid-column: 1 / 3;
  }
}

/* -- ufhform.html (page-unique) -- */
.radio-group-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.radio-option-block {
  position: relative;
}
.radio-option-block input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.radio-option-block label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1.5px solid #e8e8e8;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  line-height: 1.5;
  cursor: pointer;
  user-select: none;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.radio-option-block label::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #ddd;
  flex-shrink: 0;
  margin-top: 1px;
  transition: border-color 0.15s, background 0.15s;
}
.radio-option-block input:checked + label {
  border-color: var(--brand);
  background: rgba(235,104,35,0.06);
  color: #1a1a1a;
  font-weight: 600;
}
.radio-option-block input:checked + label::before {
  border-color: var(--brand);
  background: var(--brand);
}

/* -- new-boilerform.html (page-unique) -- */
.nb-input, .nb-textarea, .nb-select {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  color: #1a1a1a;
  background: #f8f8f8;
  border: 1.5px solid #e8e8e8;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.18s, background 0.18s;
}
.range-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nb-range {
  flex: 1;
  accent-color: var(--brand);
}
.range-val {
  min-width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* -- reactive-gas-engineer.html (page-unique) -- */
.jv-list-nested {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.jv-list-nested li {
  padding-left: 20px;
  position: relative;
  color: #666;
  font-size: 13.5px;
  line-height: 1.6;
}
.jv-list-nested li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--brand);
}

/* -- services.html (page-unique) -- */
.svc-breadcrumb {
  margin-top: 60px;
  background: #f6f6f6;
  border-bottom: 1px solid #e8e8e8;
  padding: 11px 0;
}
.svc-breadcrumb-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.svc-bc-link {
  color: #666;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s;
}
.svc-bc-link:hover {
  color: var(--brand);
}
.svc-bc-sep {
  color: #bbb;
  font-size: 12px;
  margin: 0 8px;
}
.svc-bc-current {
  color: #aaa;
  font-size: 12px;
}
.svc-summary {
  max-width: 820px;
  font-size: 16px;
  line-height: 1.78;
  color: #333;
  border-left: 3px solid var(--brand);
  padding-left: 20px;
  margin-top: 14px;
}
.svc-cards-bg {
  background-image:
        linear-gradient(to bottom, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.60) 100%),
        url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?auto=format&fit=crop&w=1920&q=85');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.svc-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 10px;
  padding: 32px 26px 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  display: flex;
  flex-direction: column;
}
.svc-card-icon {
  font-size: 28px;
  color: var(--brand);
  margin-bottom: 18px;
  display: block;
}
.svc-card-icon::before {
  content: '';
  display: block;
  width: 44px;
  height: 44px;
}
.svc-card-heading {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.svc-card-sub {
  color: rgba(255,255,255,0.68);
  font-size: 13px;
  line-height: 1.72;
  flex: 1;
}
.svc-card-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 18px 0;
}
.svc-card-link {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--brand);
  text-decoration: none;
  transition: opacity 0.15s;
}
.svc-card-link:hover {
  opacity: 0.75;
}
.svc-card .fa-solid,
    .svc-card .fa-regular {
  font-size: 28px;
  color: var(--brand);
  margin-bottom: 18px;
  display: block;
}
.svc-cta-section {
  background: #f9f9f9;
}
.svc-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 1023px) {
  .svc-cards-bg {
    background-attachment: scroll;
  }
}
@media (min-width: 640px) {
  .svc-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .svc-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* -- about.html (page-unique) -- */
.es-statement {
  max-width: 860px;
  font-size: 18px;
  line-height: 1.78;
  color: #1a1a1a;
  font-weight: 500;
  border-left: 4px solid var(--brand);
  padding-left: 24px;
  margin-top: 16px;
}
@keyframes es-carousel-scroll {
  0%   { transform: translateX(0);
  }
      100% { transform: translateX(calc(-177px * 6 - 20px * 6));
  };
}
.es-pillars-grid {
  overflow: hidden;
  padding: 8px 0 16px;
}
.es-pillars-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: es-carousel-scroll 48s linear infinite;
}
.es-carousel-wrap:hover .es-pillars-track {
  animation-play-state: paused;
}
.es-pillar-item {
  flex: 0 0 177px;
  height: 250px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.18);
  overflow: hidden;
  transition: box-shadow 0.25s;
}
.es-pillar-item:hover {
  box-shadow: 0 14px 40px rgba(0,0,0,0.32);
}
.es-pillar-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.es-pillar-item:hover img {
  transform: scale(1.04);
}
.es-approach-section {
  background: #f9f9f9;
}
.es-delivery-section {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  padding: 72px 0;
}
.es-delivery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 40px;
}
.es-delivery-card {
  border-top: 3px solid var(--brand);
  padding-top: 22px;
}
.es-delivery-icon {
  font-size: 26px;
  color: var(--brand);
  margin-bottom: 14px;
  display: block;
}
.es-delivery-h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.es-delivery-p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.58);
  line-height: 1.7;
}
.es-partner-section {
  background-image:
        linear-gradient(to right, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.55) 100%),
        url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 88px 0;
}
.es-partner-inner {
  max-width: 680px;
}
.es-partner-quote {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.es-partner-quote em {
  color: var(--brand);
  font-style: normal;
}
.es-partner-p {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
}
@media (min-width: 700px) {
  .es-delivery-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 1023px) {
  .es-partner-section {
    background-attachment: scroll;
  }
}

/* -- social-value.html (page-unique) -- */
.sv-model-bg {
  background-image:
        linear-gradient(to bottom, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.62) 100%),
        url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1920&q=85');
  background-size: cover;
  background-position: center;
}
.sv-impact-bg {
  background-image:
        linear-gradient(to bottom, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.58) 100%),
        url('https://images.unsplash.com/photo-1491438590914-bc09fcaaf77a?auto=format&fit=crop&w=1920&q=85');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.sv-six-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.sv-model-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 10px;
  padding: 28px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.sv-model-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}
.sv-model-heading {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.35;
}
.sv-model-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sv-model-list li {
  padding-left: 16px;
  position: relative;
  font-size: 12.5px;
  color: rgba(255,255,255,0.68);
  line-height: 1.55;
}
.sv-model-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  border: 1.5px solid var(--brand);
}
.sv-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.sv-value-card {
  border-left: 3px solid var(--brand);
  padding: 20px 24px;
  background: #f9f9f9;
  border-radius: 0 8px 8px 0;
}
.sv-value-text {
  font-size: 14.5px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.55;
  font-style: italic;
}
.sv-impact-card {
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 10px;
  padding: 28px 24px;
}
.sv-impact-icon {
  font-size: 26px;
  color: var(--brand);
  margin-bottom: 14px;
  display: block;
}
.sv-impact-heading {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.35;
}
.sv-impact-p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.68);
  line-height: 1.65;
}
.sv-partners-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
}
.sv-partner-chip {
  background: #f2f2f2;
  color: #444;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 8px 18px;
  border-radius: 24px;
}
@media (max-width: 1023px) {
  .sv-impact-bg {
    background-attachment: scroll;
  }
}
@media (min-width: 640px) {
  .sv-six-col {
    grid-template-columns: 1fr 1fr;
  }
  .sv-values-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .sv-six-col {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* -- privacy-policy.html (page-unique) -- */
.pp-address {
  font-style: normal;
  line-height: 1.7;
}

/* Inline-style cleanup: shared icon sizing, button/spacing modifiers (Stage 4) */
.cs-share-link .fa-whatsapp { font-size: 14px; }
.cs-share-link .fa-envelope { font-size: 12px; }
.btn-next i, .btn-prev i { font-size: 10px; }
.btn-submit i { font-size: 11px; }
.nb-info-box i { color: var(--brand); margin-right: 8px; }
.nb-textarea-sm { min-height: 70px; }
.btn-mt { margin-top: 8px; }
.btn-outline-dark { color: #1a1a1a; border-color: rgba(0,0,0,0.25); }
.btn-row-center { justify-content: center; }
.svc-intro-sub { margin-top: 20px; }
.svc-card-links { display: flex; gap: 16px; }
.es-statement-sub { max-width: 820px; margin-top: 24px; }
.es-delivery-section .section-heading { color: #fff; }
.sv-promise-heading { font-size: 13px; margin-bottom: 12px; margin-top: 24px; color: #1a1a1a; }
.sv-values-intro { max-width: 560px; margin-bottom: 40px; }
.sv-partners-intro { max-width: 620px; margin: 0 auto 8px; }
.cta-inner-wide { max-width: 760px; }
