/* ═══════════════════════════════════════════════════════════════════════
   Batsons Industries — Page-Specific Styles
   All inline <style> blocks from HTML pages consolidated here.
   Load order:  common.css  →  style.css
═══════════════════════════════════════════════════════════════════════ */


/* ══════════════════════════════════════════════════════
   HOME PAGE (index)
══════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════
   2. HERO SLIDER
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 705px;
  min-height: 600px;
  margin-top: 80px;
  overflow: hidden;
}

/* Background slides — cross-fade */
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  will-change: opacity;
}
.hero__slide.active { opacity: 1; z-index: 1; }

/* Gradient overlay — always above slide images */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0,0,0,0.5);
  pointer-events: none;
}

/* Stage — full-size, vertically centres content, pads left per Figma px-[100px] */
.hero__stage {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  padding: 0 var(--pad-x);
}

/* Individual text blocks — stacked; only .active is visible */
.hero__content {
  position: absolute;
  width: 820px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}
.hero__content.active {
  opacity: 1;
  transform: none;
  position: relative; /* participates in flex-height so stage centres correctly */
  pointer-events: auto;
}

.hero__title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -1.28px;
  margin-bottom: 24px;
  max-width: 820px;
}
.hero__body {
  font-size: 24px;
  color: rgba(255,255,255,.9);
  line-height: 1.5;
  letter-spacing: -0.48px;
  margin-bottom: 48px;
  max-width: 628px;
}
.hero__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Dot navigation — bottom-left, mirrors Figma dot bar design */
.hero__dots {
  position: absolute;
  bottom: 40px;
  left: var(--pad-x);
  z-index: 4;
  display: flex;
  gap: 16px;
  align-items: center;
}
.hero__dot {
  height: 4px;
  border-radius: 2px;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width 0.4s ease, background-color 0.4s ease;
  width: 28px;
  background: var(--yellow);
}
.hero__dot.active {
  width: 48px;
  background: #fff;
}

/* Hero buttons — 48px tall, bold */
.hero__btn-primary,
.hero__btn-secondary {
  height: 48px;
  font-weight: 700;
  padding-top: 0;
  padding-bottom: 0;
}

/* ═══════════════════════════════════════════════
   3. ABOUT + STATS
═══════════════════════════════════════════════ */
.about {
  background: #fff;
  padding: 48px 0 32px;
}

/* Header: subtitle + centered heading */
.about__header {
  margin-bottom: 48px;
}
.about__new-heading {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.15;
  color: #111125;
  letter-spacing: -0.84px;
  margin-top: 16px;
  text-align: center;
}

/* Two images side by side */
.about__images-row {
  display: flex;
  gap: 48px;
  margin-bottom: 40px;
}
.about__image-item {
  flex: 1;
  height: 328px;
  background: #f3ecff;
  border-radius: 16px;
  overflow: hidden;
}
.about__image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s ease-in-out;
}
.about__image-item img:hover {
  transform: scale(1.04);
}

/* Body text paragraphs */
.about__body-texts {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}
.about__body-para {
  font-size: 16px;
  color: #5c5c6f;
  line-height: 1.5;
  letter-spacing: -0.32px;
  text-align: center;
  max-width: 1141px;
  margin: 0 auto;
}
.about__body-para strong {
  font-weight: 700;
  color: #303044;
}

/* Stats row */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 264px);
  gap: 64px;
  margin-top: 0;
  padding-top: 0;
  justify-content: center;
}
/* 5-column override for home page */
.stats--5col {
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}
.stat {
  padding: 16px 0 16px 32px;
  border-left: 4px solid var(--yellow);
}
.stat__num {
  font-size: 54px;
  font-weight: 600;
  color: #303044;
  line-height: 1.2;
  letter-spacing: -1.08px;
  margin-bottom: 8px;
}
.stat__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--body-2);
}

/* ═══════════════════════════════════════════════
   4. SEGMENTS
═══════════════════════════════════════════════ */
.segments {
  position: relative;
  padding: var(--pad-y) 0;
  background: var(--teal);
  overflow: hidden;
}
.segments__bg {
  position: absolute;
  inset: 0;
  background-image: url('../bg-green.png');
  background-size: cover;
  background-position: center;
  opacity: 1;
}
.segments .section-header {
  position: relative;
  z-index: 1;
}
.segments .section-header h2 {
  font-weight: 600;
  letter-spacing: -0.96px;
}
.segments__cards {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ── Segment cards — light card with dark content area ── */
.seg-card {
  background: transparent;
  border: none;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 0;
  overflow: hidden;
  height: 560px;
}
.seg-card__img {
  width: 593px;
  flex-shrink: 0;
  
  background: var(--Colors-Neutral-Colors-Neutral-100, rgba(248, 249, 252, 0.20));
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.seg-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.seg-card__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 48px;
background: var(--Colors-Neutral-Colors-Neutral-100, rgba(248, 249, 252, 0.20));
  padding: 48px;
}
.seg-card__headings {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.seg-card__title-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.seg-card__icon {
  width: 56px;
  height: 56px;
  background: var(--yellow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.seg-card__icon img { width: 28px; height: 28px; }
.seg-card__subtitle {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2.56px;
  text-transform: uppercase;
  color: #f9b100;
  padding: 4px 0;
}
.seg-card__title {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.72px;
}
.seg-card__body {
  font-size: 16px;
  font-weight: 400;
  color: #e7e7e7;
  line-height: 1.5;
  letter-spacing: -0.32px;
  max-width: 430px;
}
.btn-seg-explore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #111125;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  letter-spacing: -0.32px;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity .2s;
  align-self: flex-start;
}
.btn-seg-explore:hover { opacity: .88; }

/* ═══════════════════════════════════════════════
   5. FEATURES / WHY US
═══════════════════════════════════════════════ */
.features {
  background: #fff;
  padding: 64px 0;
}
.features .section-header h2 {
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -1.12px;
}
.features .section-header p {
  font-size: 18px;
  max-width: 768px;
}
/* Feature sub-sections */
.features-group {
  margin-bottom: 48px;
}
.features-group:last-child {
  margin-bottom: 0;
}
.features-group__title {
  font-size: 36px;
  font-weight: 600;
  color: #111125;
  text-align: center;
  letter-spacing: -0.72px;
  margin-bottom: 24px;
  line-height: 1.15;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 300px);
  gap: 24px;
  margin-bottom: 0;
  justify-content: center;
}
.feat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  /* box-shadow: 0 2px 16px rgba(0,0,0,.07); */
  transition: box-shadow .2s, transform .2s;
}
.feat-card:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,.12);
  transform: translateY(-2px);
}
.feat-card__icon {
  width: 48px;
  height: 48px;
  background: var(--yellow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #fff;
}
.feat-card__icon svg { display: block; }
.feat-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-2);
  line-height: 1.15;
  letter-spacing: -0.4px;
  margin-bottom: 8px;
  text-transform: capitalize;
}
.feat-card__body {
  font-size: 12px;
  color: var(--body-2);
  line-height: 1.5;
  letter-spacing: -0.24px;
}

/* ═══════════════════════════════════════════════
   6. WHAT SETS US APART
═══════════════════════════════════════════════ */
.sets-apart {
  padding: 0 0 48px;
  background: #fff;
}
.sets-apart__box {
  background: #f9b100;
  border-radius: 16px;
  padding: 48px;
  display: flex;
  gap: 48px;
  align-items: center;
}
.sets-apart__img {
  width: 136px;
  height: 118px;
  flex-shrink: 0;
}
.sets-apart__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sets-apart__content {
  flex: 1;
  min-width: 0;
}
.sets-apart__heading {
  font-size: 40px;
  font-weight: 600;
  color: #000;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.sets-apart__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 16px;
  color: #434343;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.32px;
}
.sets-apart__list li::before {
  content: '• ';
}
.sets-apart__btn-wrap {
  flex-shrink: 0;
}
.sets-apart__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #111125;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 8px;
  white-space: nowrap;
  height: 48px;
  cursor: pointer;
  transition: opacity .2s;
  letter-spacing: -0.32px;
}
.sets-apart__btn:hover { opacity: .88; }

/* ═══════════════════════════════════════════════
   7. CTA FORM
═══════════════════════════════════════════════ */
.cta-form {
  background: #f8f9fc;
  padding: 48px 0 96px;
}
.cta-form__header {
  text-align: center;
  margin-bottom: 48px;
}
.cta-form__title {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy-2);
  letter-spacing: -1.12px;
  max-width: 780px;
  margin: 0 auto 20px;
}
.cta-form__desc {
  font-size: 16px;
  color: var(--body-2);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.65;
}
.cta-form__box {
  background: #e9eaf0;
  border-radius: var(--radius-lg);
  padding: 40px 48px 48px;
}
.cta-form__fields {
  max-width: 768px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--body);
}
.form-group input,
.form-group select,
.form-group textarea {
  height: 50px;
  background: #fff;
  border: 1.5px solid #dde1ea;
  border-radius: var(--radius-sm);
  padding: 0 16px;
  font-size: 14px;
  color: var(--body);
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal-sec);
}
.form-group textarea {
  height: 146px;
  padding: 14px 16px;
  resize: vertical;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}
.form-radio-row {
  display: flex;
  gap: 32px;
  margin-bottom: 24px;
}
.form-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--body);
}
.form-radio input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--teal-sec);
  cursor: pointer;
}
.form-submit-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.btn-submit {
  width: 200px;
  height: 56px;
  background: var(--yellow);
  color: #111;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: opacity .2s;
}
.btn-submit:hover { opacity: .88; }

/* ═══════════════════════════════════════════════
   8. TESTIMONIALS CAROUSEL
═══════════════════════════════════════════════ */
.testimonials-new .section-header h2 {
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -1.12px;
}
.testimonials-new {
  position: relative;
  padding: 64px 0 80px;
  background: #006466;
  overflow: hidden;
}
.testimonials-new__bg {
  position: absolute;
  inset: 0;
  background-image: url('../bg-green.png');
  background-size: cover;
  background-position: center;
  opacity: .7;
}
.testimonials-new__header {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}

/* Carousel wrapper */
.test-carousel {
  position: relative;
  z-index: 1;
}
.test-carousel__track {
  position: relative;
  height: 310px;
  overflow: visible;
}

/* Nav buttons */
.test-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}
.test-carousel__btn:hover { background: rgba(255,255,255,0.35); }
.test-carousel__btn--prev { left: -24px; }
.test-carousel__btn--next { right: -24px; }

/* Dots */
.test-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}
.test-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.25s;
  padding: 0;
}
.test-dot.is-active {
  background: #fff;
  width: 24px;
  border-radius: 4px;
}

/* Cards — base */
.test-card {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  padding: 32px;
  transition:
    left 0.5s ease,
    width 0.5s ease,
    height 0.5s ease,
    background-color 0.5s ease,
    opacity 0.4s ease;
}

/* Card states */
.test-card.is-prev {
  left: calc(50% - 730px);
  width: 420px;
  height: 260px;
  background: rgba(255,255,255,0.1);
  opacity: 1;
  z-index: 2;
  cursor: pointer;
}
.test-card.is-active {
  left: calc(50% - 278px);
  width: 556px;
  height: 300px;
  background: #fff;
  opacity: 1;
  z-index: 3;
}
.test-card.is-next {
  left: calc(50% + 310px);
  width: 420px;
  height: 260px;
  background: rgba(255,255,255,0.1);
  opacity: 1;
  z-index: 2;
  cursor: pointer;
}
.test-card.is-pre-left {
  left: -500px;
  width: 420px;
  height: 260px;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}
.test-card.is-pre-right {
  left: calc(100% + 100px);
  width: 420px;
  height: 260px;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

/* Text — active card (white bg) */
.test-card.is-active .test-card__quote {
  font-size: 18px;
  font-weight: 600;
  color: #5c5c6f;
  line-height: 1.5;
  letter-spacing: -0.36px;
  flex: 1;
}
/* Text — side cards (glass) */
.test-card.is-prev .test-card__quote,
.test-card.is-next .test-card__quote {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
  letter-spacing: -0.32px;
  flex: 1;
}
/* Author row */
.test-card__author {
  display: flex;
  gap: 16px;
  align-items: center;
}
.test-card__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.test-card.is-active .test-card__avatar { background: #ece2fe; }
.test-card.is-prev .test-card__avatar,
.test-card.is-next .test-card__avatar { background: rgba(255,255,255,0.2); }
.test-card__avatar img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.test-card__name {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 1.15;
  margin-bottom: 6px;
}
.test-card.is-active .test-card__name { color: #303044; }
.test-card.is-prev .test-card__name,
.test-card.is-next .test-card__name { color: #f9b100; }
.test-card__role {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.32px;
}
.test-card.is-active .test-card__role { color: #5c5c6f; }
.test-card.is-prev .test-card__role,
.test-card.is-next .test-card__role { color: rgba(255,255,255,0.8); }

/* ═══════════════════════════════════════════════
   9. AFFILIATIONS
═══════════════════════════════════════════════ */
.affiliations {
  background: #eee;
  padding: 20px 0 48px;
}
.affiliations__heading {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #000;
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: -0.72px;
  line-height: 45px;
}
.affiliations__logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 174px;
}
.affiliations__logos--blend {
  mix-blend-mode: multiply;
}
.affiliations__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.affiliations__logo img {
  max-height: 148px;
  max-width: 200px;
  object-fit: contain;
  transition: opacity .2s;
}
.affiliations__logo img:hover { opacity: .85; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1280px) {
  :root { --pad-x: 48px; }
  .seg-card__img { width: 380px; padding: 32px; }
  .seg-card__content { padding: 32px; }
  .test-card.is-prev { left: calc(50% - 610px); width: 340px; }
  .test-card.is-next { left: calc(50% + 270px); width: 340px; }
  .test-card.is-active { left: calc(50% - 230px); width: 460px; }
}
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 300px); }
  .stats--5col { grid-template-columns: repeat(3, 1fr); }
  .test-carousel__track { height: 340px; }
  .test-card.is-prev, .test-card.is-next { opacity: 0.4; }
  .sets-apart__box { flex-wrap: wrap; gap: 32px; }
}
@media (max-width: 900px) {
  :root { --pad-x: 32px; --pad-y: 64px; }
  .hero__stage { padding: 0 48px; }
  .hero__title { font-size: 44px; max-width: 100%; }
  .hero__body { font-size: 18px; }
  .hero__content { width: 100%; max-width: 560px; }
  .hero__dots { left: 48px; }
  .section-header h2 { font-size: 36px; }
  .features .section-header h2 { font-size: 40px; }
  .testimonials-new .section-header h2 { font-size: 40px; }
  .about__new-heading { font-size: 32px; }
  .about__images-row { gap: 24px; }
  .about__image-item { height: 240px; }
  .stats--5col { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stats { grid-template-columns: repeat(2, 264px); gap: 32px; }
  .seg-card { flex-direction: column; height: auto; }
  .seg-card__img { width: 100%; height: 260px; padding: 24px; }
  .seg-card--right .seg-card__content { order: 2; }
  .seg-card--right .seg-card__img     { order: 1; }
  .seg-card__title { font-size: 28px; }
  .seg-card__content { gap: 32px; padding: 32px; }
  .features-group__title { font-size: 28px; }
  .sets-apart__heading { font-size: 32px; }
  .cta-form__title { font-size: 36px; }
  .affiliations__heading { font-size: 32px; }
}
@media (max-width: 768px) {
  .hero__stage { padding: 0 32px; }
  .hero__title { font-size: 36px; }
  .hero__body { font-size: 16px; }
  .hero__content { width: 100%; }
  .hero__dots { left: 32px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .about__images-row { flex-direction: column; }
  .about__image-item { height: 200px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-form__box { padding: 24px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stats--5col { grid-template-columns: repeat(2, 1fr); }
  .sets-apart__box { flex-direction: column; align-items: flex-start; gap: 24px; }
  .test-carousel__track { height: 360px; }
  .test-card.is-prev, .test-card.is-next { opacity: 0; pointer-events: none; }
  .test-card.is-active { left: 50%; transform: translateX(-50%) translateY(-50%); width: 90%; max-width: 480px; height: auto; min-height: 280px; }
}
@media (max-width: 480px) {
  :root { --pad-x: 20px; --pad-y: 48px; }
  .hero__stage { padding: 0 20px; }
  .hero__title { font-size: 28px; }
  .hero__btns { flex-direction: column; }
  .hero__dots { left: 20px; bottom: 24px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stats--5col { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .about__new-heading { font-size: 24px; }
  .section-header h2 { font-size: 28px; }
  .cta-form__title { font-size: 28px; }
  .affiliations__logos { gap: 16px; height: auto; flex-wrap: wrap; }
  .affiliations__logo img { max-height: 60px; max-width: 100px; }
  .sets-apart__heading { font-size: 24px; }
  .sets-apart__img { width: 100px; height: 90px; }
  .features-group__title { font-size: 22px; }
}


/* ══════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════ */

/* Shared label */
.ab-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 2.56px;
  text-transform: uppercase;
  color: #14a098;
}
.ab-label--yellow { color: #f9b100; }

/* Blue accent text */
.ab-blue { color: #1e5f8c; }

/* ═══════════════════════════════════════════════
   1. HERO
═══════════════════════════════════════════════ */
.ab-hero {
  margin-top: 80px;
  background: #fff;
  padding: 48px var(--pad-x) 48px;
}
.ab-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.ab-hero__title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.ab-hero__h1 {
  font-size: 42px;
  font-weight: 600;
  color: #111125;
  line-height: 1.15;
  letter-spacing: -0.84px;
  text-align: center;
  max-width: 952px;
  margin: 0;
}
/* Banner image */
.ab-hero__banner {
  width: 100%;
  max-width: var(--container);
  height: 328px;
  background: #f3ecff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ab-hero__banner img {
  width: 1536px;
  max-width: none;
  position: relative;
  top: 77%;
  object-fit: cover;
}

/* Founder's Message — full-width standalone section */
.ab-founder {
  width: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: var(--pad-y) var(--pad-x);
  box-sizing: border-box;
}
.ab-founder__h2 {
  font-size: 48px;
  font-weight: 600;
  color: #111125;
  line-height: 1.15;
  letter-spacing: -0.96px;
  margin: 0;
  width: 100%;
  text-align: left;
}
.ab-founder__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.ab-founder__text {
  flex: 0 0 584px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ab-founder__text p {
  font-size: 16px;
  color: #364153;
  line-height: 22px;
  letter-spacing: -0.31px;
  margin: 0;
  width: 584px;
}
.ab-founder__sig {
  font-weight: 700 !important;
}
.ab-founder__img {
  flex: 0 0 569px;
  height: 379px;
  border-radius: 16px;
  overflow: hidden;
}
.ab-founder__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.ab-founder__quote {
  font-size: 48px;
  font-weight: 600;
  color: #14a098;
  line-height: 1.15;
  letter-spacing: -0.96px;
  text-align: center;
  text-transform: capitalize;
  margin: 0;
  width: 100%;
}

/* ═══════════════════════════════════════════════
   2. OUR TEAM
═══════════════════════════════════════════════ */
.ab-team {
  position: relative;
  height: 783px;
  overflow: hidden;
}
.ab-team__bg {
  position: absolute;
  inset: 0;
  background: #006466;
}
.ab-team__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/images/1d4cb215-a4c0-45d0-832b-d36f1574255b.png') center/cover no-repeat;
  opacity: 0.7;
}
.ab-team__inner {
  position: absolute;
  left: 0; top: 36px;
  width: 100%;
  height: 712px;
  overflow: hidden;
  padding: 64px var(--pad-x);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.ab-team__heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.ab-team__heading h2 {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.64px;
  text-align: center;
  max-width: 1080px;
  margin: 0;
}
.ab-team__cards {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: var(--container);
}
.ab-person-card {
  flex: 0 0 395px;
  height: 493px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
}
.ab-person-card__photo {
  flex-shrink: 0;
  width: 100%;
  height: 234px;
  background: #f3ecff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ab-person-card__photo img {
  /* width: 396px;
  height: 302px; */
  max-width: none;
  /* object-fit: cover; */
  object-position: center top;
}
.ab-person-card__body {
  flex: 1;
  width: 100%;
  padding: 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.ab-person-card__name {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  line-height: 32px;
  letter-spacing: 0.07px;
  text-align: center;
  margin: 0;
}
.ab-person-card__role {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.ab-person-card__role p {
  font-size: 14px;
  color: #1e5f8c;
  line-height: 20px;
  letter-spacing: 0.2px;
  text-align: center;
  margin: 0;
}
.ab-person-card__desc {
  font-size: 16px;
  font-style: italic;
  color: #4a5565;
  line-height: 26px;
  letter-spacing: -0.31px;
  text-align: center;
  margin: 0;
  max-width: 355px;
}

/* ═══════════════════════════════════════════════
   3. JOURNEY / STORY
═══════════════════════════════════════════════ */
.ab-story-wrap {
  position: relative;
  background: #e6e6e6;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ab-story__teal-bg {
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 900px;
  background: #006466;
  pointer-events: none;
  position: absolute;
  inset: 0;
  background-image: url(../bg-green.png);
  background-size: cover;
  background-position: center;
  opacity: 1;
}
.ab-story__teal-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/images/1d4cb215-a4c0-45d0-832b-d36f1574255b.png') center/cover no-repeat;
  opacity: 0.7;
}
.ab-story__stack {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42px;
  padding-top: 40px;
  padding-bottom: 0;
}

/* 3a — Our Journey block */
.ab-journey-block {
  width: 100%;
  height: 642px;
  padding: 64px var(--pad-x);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  overflow: hidden;
}
.ab-journey-block__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.ab-journey-block__h1 {
  font-size: 56px;
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -1.12px;
  text-align: center;
  margin: 0;
}

/* White story card */
.ab-story-card {
  width: 100%;
  max-width: var(--container);
  background: #fff;
  padding: 40px 40px 32px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ab-story-card p {
  font-size: 18px;
  color: #364153;
  line-height: 29.25px;
  letter-spacing: -0.44px;
  margin: 0;
}
.ab-story-card__bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  height: 128px;
}
.ab-bullet {
  background: #e8ecef;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 16px;
  font-size: 16px;
  color: #364153;
  line-height: 24px;
  letter-spacing: -0.31px;
}
.ab-bullet__dot {
  width: 8px; height: 8px;
  background: #1e5f8c;
  flex-shrink: 0;
}
.ab-story-card__italic {
  font-style: italic;
  color: #4a5565 !important;
  font-size: 16px !important;
  line-height: 24px !important;
}

/* 3b — Yellow box */
.ab-yellow-box {
  width: 100%;
  max-width: var(--container);
  background: #f9b100;
  padding: 40px 40px 32px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ab-yellow-box h3 {
  font-size: 30px;
  font-weight: 700;
  color: #000;
  line-height: 36px;
  letter-spacing: -0.35px;
  margin: 0;
}
.ab-yellow-box p {
  font-size: 16px;
  color: #000;
  line-height: 26px;
  letter-spacing: -0.31px;
  margin: 0;
}

/* 3c — White border-left box */
.ab-border-box {
  width: 100%;
  max-width: var(--container);
  background: #fff;
  border-left: 4px solid #f9b100;
  padding: 40px 40px 40px 44px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ab-border-box h3 {
  font-size: 30px;
  font-weight: 700;
  color: #000;
  line-height: 36px;
  letter-spacing: -0.35px;
  margin: 0;
}
.ab-border-box__intro {
  font-size: 18px;
  color: #364153;
  line-height: 29.25px;
  letter-spacing: -0.44px;
  margin: 0;
}
.ab-ent-box {
  background: #e8ecef;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ab-ent-box h4 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  line-height: 28px;
  letter-spacing: -0.45px;
  margin: 0;
}
.ab-ent-box p {
  font-size: 16px;
  color: #364153;
  line-height: 26px;
  letter-spacing: -0.31px;
  margin: 0;
}
.ab-border-box__note {
  font-size: 16px;
  color: #4a5565;
  line-height: 24px;
  letter-spacing: -0.31px;
  margin: 0;
}

/* 3d — Group Structure Today */
.ab-group {
  width: 100%;
  max-width: var(--container);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.ab-group__h1 {
  font-size: 56px;
  font-weight: 600;
  color: #000;
  line-height: 1.15;
  letter-spacing: -1.12px;
  text-align: center;
  margin: 0;
}
.ab-group__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  width: 100%;
  height: 208px;
}
.ab-group-card {
  background: #fff;
  padding: 32px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}
.ab-group-card--blue { border-top: 4px solid #1e5f8c; }
.ab-group-card--navy { border-top: 4px solid #0a2463; }
.ab-group-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.ab-group-card__icon { width: 32px; height: 32px; display: block; }
.ab-group-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.45px;
}
.ab-group-card__title--blue { color: #1e5f8c; }
.ab-group-card__title--navy { color: #0a2463; }
.ab-group-card__desc {
  font-size: 16px;
  color: #364153;
  line-height: 26px;
  letter-spacing: -0.31px;
  margin: 0 0 16px;
  max-width: 520px;
}
.ab-group-card__link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.15px;
  text-decoration: none;
}
.ab-group-card__link--blue { color: #1e5f8c; }
.ab-group-card__link--navy { color: #0a2463; }
.ab-group-card__link img { width: 16px; height: 16px; }

/* Legacy banner */
.ab-legacy-banner {
  width: 100%;
  background: #14a098;
  padding: 40px 40px 32px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 100px;
}
.ab-legacy-banner h3 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  line-height: 36px;
  letter-spacing: -0.35px;
  text-align: center;
  margin: 0;
}
.ab-legacy-banner p {
  font-size: 18px;
  color: #f3f4f6;
  line-height: 29.25px;
  letter-spacing: -0.44px;
  text-align: center;
  margin: 0;
  max-width: 1168px;
}

/* ═══════════════════════════════════════════════
   4. CORE VALUES
═══════════════════════════════════════════════ */
.ab-values {
  background: #fff;
  padding: 64px var(--pad-x);
}
.ab-values__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.ab-values__heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 var(--pad-x) 32px;
}
.ab-values__heading h2 {
  font-size: 48px;
  font-weight: 600;
  color: #111125;
  line-height: 1.15;
  letter-spacing: -0.96px;
  text-align: center;
  margin: 0;
}
.ab-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 32px;
  height: 408px;
}
.ab-value-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}
.ab-value-card__icon {
  width: 80px; height: 80px;
  background: #f9b100;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 16px;
}
.ab-value-card__icon img { width: 36px; height: 36px; display: block; }
.ab-value-card__name {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  line-height: 28px;
  letter-spacing: -0.45px;
  text-align: center;
  margin: 0 0 8px;
}
.ab-value-card__desc {
  font-size: 16px;
  color: #4a5565;
  line-height: 26px;
  letter-spacing: -0.31px;
  text-align: center;
  margin: 0;
  max-width: 360px;
}

/* ═══════════════════════════════════════════════
   ABOUT RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1280px) {
  .ab-hero__banner { width: 100%; }
  .ab-founder__text { flex: 1; }
  .ab-founder__text p { width: 100%; }
  .ab-story__stack { padding: 40px var(--pad-x) 0; }
}
@media (max-width: 1024px) {
  .ab-hero__h1 { font-size: 34px; }
  .ab-founder__h2 { font-size: 36px; }
  .ab-founder__row { gap: 32px; }
  .ab-founder__img { flex: 0 0 440px; }
  .ab-founder__text { flex: 1; }
  .ab-founder__quote { font-size: 36px; }
  .ab-team__heading h2 { font-size: 26px; }
  .ab-person-card { flex: 0 0 300px; }
  .ab-journey-block__h1 { font-size: 42px; }
  .ab-group__h1 { font-size: 42px; }
  .ab-values__heading h2 { font-size: 36px; }
}
@media (max-width: 900px) {
  .ab-hero__h1 { font-size: 28px; }
  .ab-hero__banner { height: 220px; }
  .ab-hero__banner img { width: 100%; height: auto; top: 0; object-fit: cover; }
  .ab-founder__row { flex-direction: column; }
  .ab-founder__text { flex: none; width: 100%; }
  .ab-founder__text p { width: 100%; }
  .ab-founder__img { flex: none; width: 100%; height: 320px; }
  .ab-founder__h2 { font-size: 28px; }
  .ab-founder__quote { font-size: 28px; }
  .ab-team { height: auto; overflow: visible; }
  .ab-team__inner { position: relative; top: 0; height: auto; }
  .ab-team__cards { flex-direction: column; }
  .ab-person-card { flex: none; width: 100%; max-width: 395px; }
  .ab-story__teal-bg { height: 700px; }
  .ab-journey-block { height: auto; padding: 48px var(--pad-x); }
  .ab-journey-block__h1 { font-size: 32px; }
  .ab-story-card__bullets { grid-template-columns: 1fr; height: auto; }
  .ab-group__cards { grid-template-columns: 1fr; height: auto; }
  .ab-values__heading { padding: 0 0 32px; }
  .ab-values__grid { grid-template-columns: repeat(2, 1fr); height: auto; }
}
@media (max-width: 600px) {
  .ab-hero__h1 { font-size: 22px; }
  .ab-journey-block__h1 { font-size: 26px; }
  .ab-group__h1 { font-size: 30px; }
  .ab-values__grid { grid-template-columns: 1fr; height: auto; }
  .ab-values__heading h2 { font-size: 28px; }
}

/* ══════════════════════════════════════════════════════
   AVIATION PAGE
══════════════════════════════════════════════════════ */

/* ── 1. HERO ─────────────────────────────────────── */
.av-hero2 {
  margin-top: 80px;
  background: #fff;
  height: 752px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-top: 48px;
}
.av-hero2__text-wrap {
  flex-shrink: 0;
  padding: 0 var(--pad-x);
}
.av-hero2__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.av-hero2__title {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.15;
  color: #111125;
  letter-spacing: -1.12px;
  margin: 0;
  max-width: 1250px;
}
.av-hero2__body {
  font-size: 16px;
  color: #5c5c6f;
  line-height: 1.5;
  letter-spacing: -.32px;
  margin: 0;
  max-width: 912px;
}
.av-hero2__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  letter-spacing: -.32px;
  transition: opacity .2s;
}
.av-hero2__btn:hover { opacity: .88; }
.av-hero2__btn img { width: 12px; height: 12px; }
.av-hero2__img-wrap {
  flex: 1 0 0;
  min-height: 0;
  background: #f3ecff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.av-hero2__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  top: -5%;
  object-fit: cover;
  object-position: center top;
}

/* ── 2. CONTENT (alternating cards + strengths banner) ── */
.av-content {
  background: #fff;
  padding: 64px var(--pad-x);
}
.av-content__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.av-content__card {
  background: #f8f9fc;
  border-radius: 24px;
  padding: 48px;
  display: flex;
  align-items: center;
  gap: 48px;
}
.av-content__card--flip {
  flex-direction: row-reverse;
}
.av-content__img-box {
  width: 593px;
  height: 460px;
  flex-shrink: 0;
  background: #f3ecff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.av-content__img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.av-content__text {
  flex: 1;
}
.av-content__text h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.15;
  color: #303044;
  letter-spacing: -.64px;
  margin-bottom: 24px;
}
.av-content__text p {
  font-size: 14px;
  color: #5c5c6f;
  line-height: 1.5;
  letter-spacing: -.28px;
  margin-bottom: 12px;
}
.av-strengths-banner {
  background: #006466;
  border-radius: 24px;
  padding: 48px;
  text-align: center;
}
.av-strengths-banner__title {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -1.12px;
  text-transform: capitalize;
  margin-bottom: 16px;
}
.av-strengths-banner__sub {
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 6.5px;
}

/* ── 3. MANUFACTURING & CUSTOMIZATION ───────────── */
.av-mfg {
  background: #fff;
  padding: 64px var(--pad-x);
}
.av-mfg__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.av-mfg__heading {
  text-align: center;
  padding: 0 var(--pad-x);
}
.av-mfg__heading .s-label {
  display: inline-block;
  margin-bottom: 16px;
}
.av-mfg__heading h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.15;
  color: #111125;
  letter-spacing: -.96px;
  margin-bottom: 32px;
}
.av-mfg__heading p {
  font-size: 16px;
  color: #828294;
  line-height: 1.5;
  letter-spacing: -.32px;
  max-width: 1197px;
  margin: 0 auto 16px;
}
.av-mfg__row1 {
  display: flex;
  gap: 64px;
  align-items: center;
}
.av-mfg__img-box {
  width: 584px;
  height: 346px;
  flex-shrink: 0;
  background: #f3ecff;
  border-radius: 16px;
  overflow: hidden;
}
.av-mfg__img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.av-mfg__text { flex: 1; }
.av-mfg__text p {
  font-size: 16px;
  color: #828294;
  line-height: 1.5;
  letter-spacing: -.32px;
  margin-bottom: 16px;
}
.av-mfg__row2 {
  display: flex;
  gap: 48px;
  align-items: center;
}
.av-mfg__text2 {
  flex: 0 0 628px;
}
.av-mfg__text2 h3 {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  letter-spacing: -.44px;
  line-height: 1.5;
  margin-bottom: 30px;
}
.av-mfg__text2 p {
  font-size: 16px;
  color: #828294;
  line-height: 1.5;
  letter-spacing: -.32px;
  margin-bottom: 16px;
}
.av-mfg__img-box2 {
  flex: 1;
  height: 520px;
  border-radius: 16px;
  overflow: hidden;
  background: #f3ecff;
  position: relative;
}
.av-mfg__slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.av-mfg__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.av-mfg__slide.active { opacity: 1; }
.av-mfg__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.av-mfg__slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  color: #1A1B26;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
}
.av-mfg__slider-btn:hover { background: #fff; }
.av-mfg__slider-btn--prev { left: 16px; }
.av-mfg__slider-btn--next { right: 16px; }

/* ── 4. PRODUCT FEATURES (dark teal bg) ─────────── */
.av-pf {
  position: relative;
  background: #006466;
  padding: 72px var(--pad-x);
  overflow: hidden;
}
.av-pf__bg {
  position: absolute;
  inset: 0;
  background-image: url('../bg-green.png');
  background-size: cover;
  background-position: center;
  opacity: .70;
  pointer-events: none;
}
.av-pf__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 42px;
}
.av-pf__heading {
  text-align: center;
}
.av-pf__heading h2 {
  font-size: 45px;
  font-weight: 500;
  color: #fff;
  line-height: 52px;
  letter-spacing: 0;
}
.av-pf__row {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.av-pf__table-wrap {
  flex: 0 0 600px;
  background: #f9fafb;
  border-radius: 10px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
  overflow: hidden;
}
.av-pf__table-header {
  background: var(--yellow);
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 24px;
}
.av-pf__table-header span {
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -.95px;
  text-transform: uppercase;
}
.av-pf__bullets {
  flex: 1;
  list-style: disc;
  padding-left: 38px;
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -.5px;
  display: flex;
  flex-direction: column;
  align-self: center;
}
.av-pf__bullets li { line-height: 2.75; }

/* Specs table inside the yellow-header card */
.av-specs__table {
  width: calc(100% - 48px);
  margin: 16px 24px 24px;
  border-collapse: collapse;
}
.av-specs__table td {
  padding: 12px 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.3125px;
  border-bottom: 1px solid #d1d5dc;
  vertical-align: middle;
}
.av-specs__table td:first-child {
  color: #101828;
  width: 36%;
}
.av-specs__table td:last-child {
  color: #364153;
}
.av-specs__table tr:last-child td { border-bottom: none; }

.av-pf__custom-section { display: flex; flex-direction: column; gap: 32px;    margin-top: 30px; }
.av-pf__custom-heading {
  font-size: 45px;
  font-weight: 500;
  color: #fff;
  line-height: 52px;
  letter-spacing: 0;
  text-align: center;
}
.av-pf__row2 {
  display: flex;
  gap: 48px;
  align-items: center;
}
.av-pf__col-left {
  flex: 0 0 640px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.av-pf__custom-bullets {
  list-style: disc;
  padding-left: 38px;
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -.5px;
}
.av-pf__custom-bullets li {
  line-height: 1.5;
  margin-bottom: 30px;
}
.av-pf__custom-bullets li:last-child { margin-bottom: 0; }
.av-pf__custom-note {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
  letter-spacing: -.4px;
  padding: 0 15px;
}
.av-pf__img-box {
  flex: 1;
  height: 600px;
  border-radius: 16px;
  overflow: hidden;
  background: #f3ecff;
}
.av-pf__img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── 5. CUSTOMIZATION CAPABILITIES CARDS ────────── */
.av-caps {
  background: #fff;
  padding: 64px var(--pad-x);
}
.av-caps__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.av-caps__heading { text-align: center; }
.av-caps__heading h2 {
  font-size: 27px;
  font-weight: 600;
  color: #111125;
  line-height: 1.5;
  letter-spacing: -0.54px;
  text-align: center;
}
.av-caps__grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.av-caps__row {
  display: flex;
  gap: 24px;
}
.av-cap-card {
  flex: 1;
  background: #fff;
  border: 2px solid #f2f4fc;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.av-cap-card__img {
  height: 272px;
  background: #f3ecff;
  overflow: hidden;
  flex-shrink: 0;
}
.av-cap-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.av-cap-card__content {
  padding: 24px;
  flex: 1;
}
.av-cap-card__title {
  font-size: 20px;
  font-weight: 600;
  color: #303044;
  letter-spacing: -.4px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.av-cap-card__desc {
  font-size: 16px;
  color: #5c5c6f;
  line-height: 1.5;
  letter-spacing: -.32px;
}

/* ── 6. CTA ──────────────────────────────────────── */
.av-cta {
  position: relative;
  background: var(--teal);
  padding: 64px var(--pad-x);
  overflow: hidden;
}
.av-cta__bg {
  position: absolute;
  inset: 0;
  background-image: url('../bg-green.png');
  background-size: cover;
  background-position: center;
  opacity: .70;
  pointer-events: none;
}
.av-cta__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  min-height: 348px;
  justify-content: center;
}
.av-cta__title {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -1.12px;
}
.av-cta__desc {
  font-size: 18px;
  color: rgba(255,255,255,.9);
  letter-spacing: -.44px;
}
.av-cta__btns {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 18px;
  font-weight: 500;
  height: 64px;
  padding: 0 36px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  letter-spacing: -.44px;
  white-space: nowrap;
  transition: opacity .2s;
}
.btn-cta-primary:hover { opacity: .88; }
.btn-cta-primary svg { width: 24px; height: 24px; flex-shrink: 0; }
.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  height: 64px;
  padding: 0 36px;
  border-radius: var(--radius-sm);
  border: 2px solid #fff;
  cursor: pointer;
  letter-spacing: -.44px;
  white-space: nowrap;
  transition: background .2s;
}
.btn-cta-outline:hover { background: rgba(255,255,255,.1); }

/* ── 7. AIRPORT PROJECTS ─────────────────────────── */
.av-airports {
  background: #fff;
  padding: 64px var(--pad-x);
}
.av-airports__outer {
  max-width: var(--container);
  margin: 0 auto;
}
.av-airports__inner {
  background: #f8f9fc;
  border-radius: 24px;
  padding: 48px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.av-airports__left {
  flex: 0 0 630px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.av-airports__left .s-label {
  display: inline-block;
}
.av-airports__heading {
  font-size: 18px;
  font-weight: 600;
  color: #303044;
  line-height: 1.4;
  letter-spacing: -.36px;
  text-transform: capitalize;
}
.av-airports__table-wrap { margin-top: 8px; }
.av-airports__table {
  width: 100%;
  border-collapse: collapse;
}
.av-airports__table th {
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: #111125;
  border-bottom: 1px solid #d1d5dc;
  padding: 8px 16px 8px 0;
}
.av-airports__table td {
  font-size: 14px;
  color: #5c5c6f;
  border-bottom: 1px solid #f2f4fc;
  padding: 6px 16px 6px 0;
  vertical-align: top;
}
.av-airports__map {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
}
.av-airports__map object {
  width: 100%;
  max-width: 474px;
  aspect-ratio: 886 / 1029;
  display: block;
}

/* ── 8. AFFILIATIONS ─────────────────────────────── */
.av-affiliations {
  background: var(--gray-bg);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  min-height: 455px;
  justify-content: center;
}
.av-affiliations__title {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #000;
  text-align: center;
  letter-spacing: -.72px;
}
.av-affiliations__logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  width: 100%;
  max-width: var(--container);
  padding: 0 30px;
  height: 174px;
}
.av-affiliations__logos img {
  max-height: 148px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1280px) {
  :root { --pad-x: 48px; }
  .av-hero2__title { font-size: 48px; }
  .av-content__img-box { width: 440px; }
  .av-mfg__img-box { width: 440px; }
  .av-mfg__text2 { flex: 0 0 500px; }
  .av-pf__table-wrap { flex: 0 0 480px; }
  .av-pf__col-left { flex: 0 0 520px; }
  .av-airports__left { flex: 0 0 500px; }
}

@media (max-width: 1100px) {
  .av-content__img-box { width: 380px; height: 380px; }
}

@media (max-width: 960px) {
  :root { --pad-x: 32px; }
  .av-hero2 { height: auto; min-height: auto; }
  .av-hero2__title { font-size: 38px; }
  .av-hero2__img-wrap { min-height: 300px; }
  .av-content__card { flex-direction: column; }
  .av-content__card--flip { flex-direction: column; }
  .av-content__img-box { width: 100%; height: 300px; }
  .av-strengths-banner__title { font-size: 40px; }
  .av-strengths-banner__sub { font-size: 20px; }
  .av-mfg__heading { padding: 0; }
  .av-mfg__heading h2 { font-size: 36px; }
  .av-mfg__row1, .av-mfg__row2 { flex-direction: column; }
  .av-mfg__img-box, .av-mfg__img-box2 { width: 100%; height: 300px; flex: none; }
  .av-mfg__text2 { flex: none; width: 100%; }
  .av-pf__heading h2, .av-pf__custom-heading { font-size: 36px; line-height: 1.2; }
  .av-pf__row, .av-pf__row2 { flex-direction: column; }
  .av-pf__table-wrap { flex: none; width: 100%; }
  .av-pf__col-left { flex: none; width: 100%; }
  .av-pf__img-box { width: 100%; height: 360px; flex: none; }
  .av-caps__row { flex-wrap: wrap; }
  .av-cap-card { flex: 0 0 calc(50% - 12px); }
  .av-airports__inner { flex-direction: column; }
  .av-airports__left { flex: none; width: 100%; }
  .av-airports__map { width: 100%; }
  .av-airports__map object { max-width: 100%; }
  .av-cta__title { font-size: 42px; }
}

@media (max-width: 768px) {
  :root { --pad-x: 24px; }
  .av-hero2 { padding-top: 32px; }
  .av-hero2__title { font-size: 28px; }
  .av-hero2__img-wrap { min-height: 220px; }
  .av-content__card { padding: 24px; gap: 24px; }
  .av-strengths-banner { padding: 32px 24px; }
  .av-strengths-banner__title { font-size: 32px; }
  .av-strengths-banner__sub { font-size: 16px; letter-spacing: 3px; }
  .av-mfg__heading h2 { font-size: 28px; }
  .av-pf__bullets { font-size: 18px; }
  .av-pf__custom-bullets { font-size: 18px; }
  .av-pf__custom-note { font-size: 16px; }
  .av-caps__row { flex-direction: column; }
  .av-cap-card { flex: 0 0 auto; }
  .av-airports__inner { padding: 24px; }
  .av-cta__title { font-size: 32px; }
  .av-affiliations__title { font-size: 28px; }
  .av-affiliations__logos { height: auto; justify-content: center; }
}

@media (max-width: 540px) {
  .av-cta__btns { flex-direction: column; }
  .btn-cta-primary, .btn-cta-outline { width: 100%; justify-content: center; }
  .av-affiliations__logos img { max-height: 70px; max-width: 110px; }
}

/* PLACEHOLDER so old selectors don't break other pages */
.av-hero { display: none; }


/* ══════════════════════════════════════════════════════
   AUTOMOTIVE PAGE
══════════════════════════════════════════════════════ */

/* Shared label for automotive page */
.au-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 2.56px;
  text-transform: uppercase;
  color: #14a098;
}
.au-label--yellow { color: #f9b100; }

/* ═══════════════════════════════════════════════
   1. HERO
═══════════════════════════════════════════════ */
.au-hero {
  margin-top: 80px;
  background: #fff;
  height: 752px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-top: 48px;
}
.au-hero__text-wrap {
  flex-shrink: 0;
  padding: 0 var(--pad-x);
}
.au-hero__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.au-hero__title {
  font-size: 56px;
  font-weight: 600;
  color: #111125;
  line-height: 1.15;
  letter-spacing: -1.12px;
  margin: 0;
  max-width: 1250px;
}
.au-hero__body {
  font-size: 16px;
  font-weight: 400;
  color: #5c5c6f;
  line-height: 1.5;
  letter-spacing: -0.32px;
  margin: 0;
  max-width: 912px;
}
.au-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f9b100;
  color: #111125;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.32px;
  line-height: 1.2;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  height: 48px;
  transition: opacity 0.2s;
}
.au-hero__btn img { width: 12px; height: 12px; }
.au-hero__btn:hover { opacity: 0.88; }
.au-hero__img-wrap {
  flex: 1 0 0;
  min-height: 0;
  background: #f3ecff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.au-hero__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  top: -27%;
  object-fit: cover;
  object-position: center top;
}

/* ═══════════════════════════════════════════════
   2. PRODUCT OVERVIEW
═══════════════════════════════════════════════ */
.au-overview {
  position: relative;
  padding: 64px var(--pad-x);
}
.au-overview__bg {
  position: absolute;
  inset: 0;
  /* background: #f5f5f5; */
  pointer-events: none;
  position: absolute;
  inset: 0;
  background-image: url(../images/light-bg.png);
  background-size: cover;
  background-position: center;
  opacity: 1;
}
.au-overview__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/images/e2716b0f-f8f7-4478-8748-16992900e9de.jpg');
  background-size: cover;
  mix-blend-mode: luminosity;
  opacity: 0.1;
}
.au-overview__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 520px;
  overflow: hidden;
}
.au-overview__img-side {
  position: relative;
  flex: 0 0 572px;
  height: 520px;
  border-radius: 16px;
  overflow: hidden;
}
.au-overview__slider {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}
.au-overview__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.au-overview__slide.active {
  opacity: 1;
}
.au-overview__slide img {
  width: 100%;
  height: 110.34%;
  object-fit: cover;
  display: block;
  margin-top: -5.17%;
}
.au-overview__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  transition: background 0.2s;
  z-index: 2;
  padding: 0;
}
.au-overview__arrow img { width: 48px; height: 48px; display: block; }
.au-overview__arrow:hover { background: #f0f0f0; }
.au-overview__arrow--prev { left: 16px; }
.au-overview__arrow--next { left: 512px; }
.au-overview__card {
  flex: 0 0 600px;
  height: 520px;
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  box-sizing: border-box;
}
.au-overview__card-head {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.au-overview__heading {
  font-size: 35px;
  font-weight: 600;
  color: #111125;
  line-height: 1.15;
  letter-spacing: -0.7px;
  margin: 0;
}
.au-overview__body {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.au-overview__body p {
  font-size: 16px;
  font-weight: 400;
  color: #5c5c6f;
  line-height: 1.5;
  letter-spacing: -0.32px;
  margin: 0;
  width: 524px;
}
.au-overview__cater {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.au-overview__cater h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1b26;
  letter-spacing: -0.95px;
  line-height: 28px;
  margin: 0;
}
.au-overview__list-row {
  display: flex;
  gap: 32px;
}
.au-ov-li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  color: #364153;
  line-height: 24px;
  letter-spacing: -0.31px;
}
.au-ov-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #14a098;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   3. PRODUCT RANGE
═══════════════════════════════════════════════ */
.au-range {
  background: #fff;
  padding: 64px var(--pad-x);
}
.au-range__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.au-range__heading {
  text-align: center;
  padding: 0 var(--pad-x) 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.au-range__heading h2 {
  font-size: 48px;
  font-weight: 600;
  color: #111125;
  line-height: 1.15;
  letter-spacing: -0.96px;
  margin: 0;
}
.au-range__heading p {
  font-size: 16px;
  color: #5c5c6f;
  line-height: 1.5;
  letter-spacing: -0.32px;
  margin: 0;
  max-width: 653px;
  text-align: center;
}

/* Product card shared */
.au-pcard {
  background: #f8f9fc;
  border-radius: 24px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  overflow: hidden;
}
/* Figma-exact card heights */
.au-range__inner > .au-pcard:nth-child(2) { height: 568px; }
.au-range__inner > .au-pcard:nth-child(3) { height: 541px; }
.au-range__inner > .au-pcard:nth-child(4) { height: 577px; }
.au-pcard--flip { flex-direction: initial; }
/* Cards 1 & 3: gap-56px between text-group and footer-text */
.au-pcard__content {
  flex: 0 0 657px;
  padding: 64px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  justify-content: center;
}
/* Card 2: gap-32px between headings-block and list-block */
.au-pcard__content--mono {
  gap: 32px;
}
/* text-group: label+h3+intro+checklist, gap-24px */
.au-pcard__text-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
/* title-block: label + h3, gap-16px */
.au-pcard__title-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
/* Card 2 headings block: label+h3+intro, gap-24px */
.au-pcard__headings-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
/* Card 2 list block: sub-heading + checklist, gap-12px */
.au-pcard__list-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.au-pcard__content h3 {
  font-size: 32px;
  font-weight: 600;
  color: #303044;
  line-height: 1.15;
  letter-spacing: -0.64px;
  margin: 0;
}
/* Image right — rounded only on right side, stretches to card height */
.au-pcard__img--round-right {
  flex: 0 0 572px;
  align-self: stretch;
  border-radius: 0 24px 24px 0;
  overflow: hidden;
  min-height: 568px;
}
.au-pcard__img--round-left {
  flex: 0 0 572px;
  align-self: stretch;
  border-radius: 0;
  overflow: hidden;
  min-height: 568px;
}
.au-pcard__img--round-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Purple image side (for card 2 and 3) */
.au-pcard__img-purple {
  flex: 1;
  background: #f3ecff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 96px;
  min-height: 434px;
}
.au-pcard__img-purple img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  max-width: 641px;
  max-height: 641px;
}
/* Card intro body text */
.au-pcard__intro {
  font-size: 14px;
  color: #828294;
  line-height: 1.5;
  letter-spacing: -0.28px;
  margin: 0;
}
/* Card 3 (stickers) intro + footer text are narrower per Figma */
.au-pcard__content--stickers .au-pcard__intro,
.au-pcard__content--stickers .au-pcard__footer-text { max-width: 429px; }
.au-pcard__checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.au-pcard__checklist li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  font-weight: 500;
  color: #5c5c6f;
  line-height: 1.5;
  letter-spacing: -0.54px;
}
.au-check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ece2fe;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.au-check-icon img { width: 100%; height: auto; display: block; }
.au-pcard__footer-text {
  font-size: 16px;
  color: #828294;
  line-height: 1.5;
  letter-spacing: -0.32px;
  margin: 0;
  /* max-width: 429px; */
}
.au-pcard__list-heading {
  font-size: 24px;
  font-weight: 600;
  color: #303044;
  line-height: 1.15;
  letter-spacing: -0.48px;
  margin: 0;
}
.au-range__note {
  font-size: 12px;
  color: #f9b100;
  line-height: 1.5;
  letter-spacing: -0.32px;
  text-align: right;
  margin: 0;
  max-width: 896px;
  align-self: flex-end;
  margin-left: auto;
  margin-top: -40px;
}

/* ═══════════════════════════════════════════════
   4. DISTRIBUTION & SUPPLY NETWORK
═══════════════════════════════════════════════ */
.au-dist {
  background: #fff;
  padding: 64px var(--pad-x);
}
.au-dist__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.au-dist__heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 var(--pad-x);
}
.au-dist__heading h2 {
  font-size: 48px;
  font-weight: 600;
  color: #111125;
  line-height: 1.15;
  letter-spacing: -0.96px;
  text-align: center;
  margin: 0;
}
.au-dist__row {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  overflow: hidden;
}
.au-dist__text {
  flex: 0 0 584px;
  height: 214px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.au-dist__text p {
  font-size: 16px;
  color: #828294;
  line-height: 1.5;
  letter-spacing: -0.32px;
  margin: 0;
}
.au-dist__img-clip {
  flex: 0 0 608px;
  height: 214px;
  position: relative;
  overflow: hidden;
}
.au-dist__img-inner {
  position: absolute;
  left: 0;
  top: -107px;
  width: 608px;
  height: 406px;
}
.au-dist__img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ═══════════════════════════════════════════════
   5. COMPATIBLE BRANDS
═══════════════════════════════════════════════ */
.au-brands {
  position: relative;
  height: 766px;
  overflow: hidden;
}
.au-brands__bg {
  position: absolute;
  inset: 0;
  background: #006466;
}
.au-brands__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/images/18ecd242-5bcb-4dfa-9912-d5e8bf068c7c.png') center/cover no-repeat;
  opacity: 0.7;
}
.au-brands__inner {
  position: absolute;
  left: 0;
  top: 48px;
  width: 100%;
  height: 670px;
  overflow: hidden;
  padding: 64px var(--pad-x);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.au-brands__heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.au-brands__heading h2 {
  font-size: 56px;
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -1.12px;
  text-align: center;
  margin: 0;
  max-width: 858px;
}
.au-brands__sub {
  font-size: 18px;
  color: #fff;
  line-height: 1.625;
  letter-spacing: -0.44px;
  text-align: center;
  margin: 0;
}
.au-brands__grid {
  width: 100%;
  max-width: var(--container);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.au-brands__row {
  display: flex;
  gap: 24px;
}
.brand-card {
  flex: 0 0 294px;
  height: 76px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  box-sizing: border-box;
}
.brand-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 50px;
  flex-shrink: 0;
}
.brand-card__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.brand-card__name {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  text-align: center;
  letter-spacing: -0.95px;
  line-height: 28px;
  text-transform: uppercase;
  flex: 1;
  padding: 0 8px;
}
.brand-card__dl {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.brand-card__dl img { width: 24px; height: 24px; display: block; }
.au-brands__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9b100;
  color: #1a1b26;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.44px;
  text-decoration: none;
  border-radius: 4px;
  width: 323px;
  padding: 18px 100px;
  box-sizing: border-box;
  transition: opacity 0.2s;
  text-align: center;
}
.au-brands__cta:hover { opacity: 0.88; }

/* ═══════════════════════════════════════════════
   AUTOMOTIVE RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1280px) {
  .au-hero { padding-top: 48px; }
  .au-hero__title { font-size: 44px; }
  .au-overview__arrow--next { left: calc(572px - 72px); }
  .brand-card { flex: 0 0 calc(25% - 18px); }
  .au-brands__row { flex-wrap: nowrap; }
}
@media (max-width: 1100px) {
  .au-hero__title { font-size: 38px; }
  .au-overview__inner { gap: 32px; height: auto; padding: 32px 0; }
  .au-overview__img-side { flex: 0 0 440px; }
  .au-overview__arrow--next { left: calc(440px - 52px); }
  .au-overview__card { flex: 1; height: auto; }
  .au-pcard__content { flex: 0 0 540px; padding: 48px; }
  .au-pcard__img--round-right { flex: 1; height: 500px; }
}
@media (max-width: 900px) {
  .au-hero { height: auto; min-height: auto; }
  .au-hero__img-wrap { min-height: 300px; }
  .au-overview { padding: 48px var(--pad-x); }
  .au-overview__inner { flex-direction: column; height: auto; }
  .au-overview__img-side { flex: none; width: 100%; height: 360px; }
  .au-overview__arrow--next { left: calc(100% - 72px); }
  .au-overview__card { flex: none; width: 100%; height: auto; }
  .au-overview__body p { width: 100%; }
  .au-range { padding: 48px var(--pad-x); }
  .au-range__heading { padding: 0 0 32px; }
  .au-range__heading h2 { font-size: 36px; }
  .au-pcard { flex-direction: column; }
  .au-pcard--flip { flex-direction: column; }
  .au-pcard__content { flex: none; width: 100%; padding: 40px; }
  .au-pcard__img--round-right { flex: none; width: 100%; height: 320px; border-radius: 0 0 24px 24px; }
  .au-pcard__img-purple { flex: none; width: 100%; min-height: 280px; padding: 48px; }
  .au-dist { padding: 48px var(--pad-x); }
  .au-dist__heading { padding: 0; }
  .au-dist__heading h2 { font-size: 36px; }
  .au-dist__row { flex-direction: column; }
  .au-dist__text { flex: none; width: 100%; height: auto; }
  .au-dist__img-clip { flex: none; width: 100%; height: 280px; }
  .au-dist__img-inner { position: relative; top: 0; width: 100%; height: 100%; }
  .au-brands { height: auto; overflow: visible; }
  .au-brands__inner { position: relative; top: 0; height: auto; padding: 48px var(--pad-x); }
  .au-brands__heading h2 { font-size: 32px; }
  .au-brands__row { flex-wrap: wrap; }
  .brand-card { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 600px) {
  .au-hero__title { font-size: 28px; }
  .au-range__heading h2 { font-size: 26px; }
  .au-pcard__content h3 { font-size: 24px; }
  .au-pcard__checklist li { font-size: 15px; }
  .au-dist__heading h2 { font-size: 28px; }
  .au-brands__heading h2 { font-size: 26px; }
  .brand-card { flex: 0 0 100%; }
  .au-brands__cta { width: 100%; padding: 18px 24px; }
}

/* ══════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════
   SHARED LABEL
═══════════════════════════════════════════════ */
.ct-label {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2.56px;
  text-transform: uppercase;
  color: var(--teal-sec);
  line-height: 1.5;
}
.ct-label--yellow { color: var(--yellow); }

/* ═══════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════ */
.ct-hero {
  background: #fff;
  padding: 48px var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  margin-top: 80px;
}
.ct-hero__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.ct-hero__title {
  font-size: 56px;
  font-weight: 600;
  color: #111125;
  text-align: center;
  letter-spacing: -1.12px;
  line-height: 1.15;
}
.ct-hero__body {
  font-size: 16px;
  font-weight: 400;
  color: #5C5C6F;
  text-align: center;
  letter-spacing: -0.32px;
  line-height: 1.5;
  max-width: 1141px;
}
.ct-hero__banner {
  width: var(--container);
  max-width: 100%;
  height: 328px;
  border-radius: 16px;
  overflow: hidden;
  background: #F3ECFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ct-hero__banner-inner {
  width: 1290px;
  height: 860px;
  flex-shrink: 0;
  position: relative;
}
.ct-hero__banner-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ═══════════════════════════════════════════════
   INFO CARDS ROW
═══════════════════════════════════════════════ */
.ct-info {
  background: #fff;
  padding: 0 94px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ct-info__card {
  background: #E8ECEF;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-height: 176px;
}
.ct-info__icon {
  background: var(--teal);
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}
.ct-info__icon img { width: 24px; height: 24px; }
.ct-info__body { flex: 1; min-width: 0; }
.ct-info__title {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  letter-spacing: -0.44px;
  line-height: 28px;
  margin-bottom: 12px;
  white-space: nowrap;
}
.ct-info__text {
  font-size: 14px;
  color: #364153;
  line-height: 20px;
  letter-spacing: -0.15px;
}
.ct-info__name {
  font-weight: 600;
}
.ct-info__text p { margin-bottom: 16px; }
.ct-info__text p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════════
   CONTACT FORM SECTION
═══════════════════════════════════════════════ */
.ct-form-section {
  position: relative;
  padding: 40px var(--pad-x) 30px;
}
.ct-form-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ct-form-section__bg-teal {
  position: absolute;
  inset: 0;
  background: #006466;
}
.ct-form-section__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.70;
}
.ct-form-section__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
.ct-form-section__heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.ct-form-section__title {
  font-size: 56px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -1.12px;
  line-height: 1.15;
  text-align: center;
}
.ct-form-section__subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.44px;
  line-height: 1.625;
  text-align: center;
  max-width: 768px;
}
.ct-form-section__cols {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  width: 100%;
}

/* Left column */
.ct-form-left {
  width: 584px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.ct-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ct-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  position: relative;
}
.ct-feature-item__icon {
  background: var(--yellow);
  width: 45px;
  height: 45px;
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.ct-feature-item__icon img { width: 24px; height: 24px; }
.ct-feature-item__text { flex: 1; }
.ct-feature-item__title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3125px;
  line-height: 24px;
  margin-bottom: 4px;
}
.ct-feature-item__desc {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.15px;
  line-height: 20px;
}
.ct-office-img {
  width: 100%;
  height: 594px;
  overflow: hidden;
  border-radius: 0;
  position: relative;
}
.ct-office-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right column — Form card */
.ct-form-card {
  flex: 1;
  background: #E4E4E4;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ct-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ct-field label {
  font-size: 14px;
  font-weight: 500;
  color: #364153;
  letter-spacing: -0.15px;
  line-height: 20px;
}
.ct-field input,
.ct-field select,
.ct-field textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #D1D5DC;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #364153;
  padding: 0 16px;
  outline: none;
  border-radius: 0;
  transition: border-color 0.2s;
}
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus { border-color: var(--teal); }
.ct-field input,
.ct-field select { height: 50px; }
.ct-field textarea { height: 146px; padding: 12px 16px; resize: vertical; }
.ct-field select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.ct-select-wrap { position: relative; }
.ct-select-wrap select { padding-right: 40px; }
.ct-select-wrap::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #364153;
  pointer-events: none;
}

/* Radio pill row */
.ct-radio-row {
  display: flex;
  gap: 16px;
}
.ct-radio-pill {
  flex: 1;
  background: #fff;
  border: 1px solid #D0D5DD;
  border-radius: 999px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(16,24,40,0.05);
  transition: border-color 0.2s;
}
.ct-radio-pill:hover { border-color: var(--teal); }
.ct-radio-pill input[type="radio"] { display: none; }
.ct-radio-pill__dot {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  border: 1px solid #667085;
  background: #fff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.ct-radio-pill__dot::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0;
  transition: opacity 0.2s;
}
.ct-radio-pill.selected { border-color: var(--teal); }
.ct-radio-pill.selected .ct-radio-pill__dot,
.ct-radio-pill__dot--selected {
  border-color: var(--teal) !important;
  background: #fff !important;
}
.ct-radio-pill.selected .ct-radio-pill__dot::after,
.ct-radio-pill__dot--selected::after { opacity: 1; }
.ct-radio-pill__label {
  font-size: 16px;
  font-weight: 400;
  color: #344054;
  line-height: 1.5;
  white-space: nowrap;
}

/* Submit button */
.ct-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--yellow);
  color: #000;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.3125px;
  line-height: 24px;
  height: 56px;
  padding: 0 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  width: 240px;
  transition: opacity 0.2s;
}
.ct-submit-btn:hover { opacity: 0.9; }
.ct-submit-btn img { width: 20px; height: 20px; }

/* ═══════════════════════════════════════════════
   MAP SECTION
═══════════════════════════════════════════════ */
.ct-map {
  background: #fff;
  padding: 64px var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.ct-map__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 0 var(--pad-x);
}
.ct-map__title {
  font-size: 48px;
  font-weight: 600;
  color: #111125;
  letter-spacing: -0.96px;
  line-height: 1.15;
  text-align: center;
  max-width: 860px;
}
.ct-map__container {
  position: relative;
  width: 100%;
  height: 384px;
  border: 2px solid #D1D5DC;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ct-map__container img.ct-map__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ct-map__card {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: 16px;
  padding: 20px;
  width: 326px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  text-align: center;
}
.ct-map__card-icon { width: 48px; height: 48px; }
.ct-map__card-title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.44px;
  line-height: 28px;
  white-space: nowrap;
}
.ct-map__card-addr {
  font-size: 14px;
  font-weight: 400;
  color: #4A5565;
  letter-spacing: -0.15px;
  line-height: 20px;
  width: 270px;
}
.ct-map__card-btn {
  background: var(--yellow);
  color: #000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.3125px;
  line-height: 24px;
  padding: 8px 23px;
  display: inline-block;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1280px) {
  :root { --pad-x: 48px; }
  .ct-info { padding: 0 48px 40px; }
  .ct-hero__title { font-size: 48px; }
  .ct-form-section__title { font-size: 48px; }
  .ct-map__title { font-size: 40px; }
}

@media (max-width: 1100px) {
  .ct-form-section__cols { flex-direction: column; }
  .ct-form-left { width: 100%; }
  .ct-office-img { height: 360px; }
  .ct-info { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .ct-hero__title { font-size: 38px; }
  .ct-form-section__title { font-size: 38px; }
  .ct-hero__banner { height: 220px; }
}

@media (max-width: 768px) {
  :root { --pad-x: 24px; }
  .ct-info { grid-template-columns: 1fr; padding: 0 24px 32px; }
  .ct-radio-row { flex-direction: column; }
  .ct-map__title { font-size: 32px; }
}

@media (max-width: 540px) {
  .ct-hero__title { font-size: 28px; }
  .ct-form-section__title { font-size: 28px; }
  .ct-map__title { font-size: 24px; }
}


/* ══════════════════════════════════════════════════════
   GALLERY PAGE
══════════════════════════════════════════════════════ */
/* ── Filter buttons ───────────── */
.gallery-filters {
  display: flex;
  gap: 16px;
  align-items: center;
}
.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.32px;
  cursor: pointer;
  transition: all .2s;
  border: none;
  white-space: nowrap;
}
.filter-btn--active {
  background: var(--yellow);
  color: var(--navy-2);
  border: none;
}
.filter-btn--active:hover { opacity: .9; }
.filter-btn--outline {
  background: transparent;
  color: var(--navy-2);
  border: 1.5px solid var(--navy-2);
}
.filter-btn--outline:hover {
  background: var(--navy-2);
  color: #fff;
}

/* ════════════════════════════════════════════════
   GALLERY GRID
════════════════════════════════════════════════ */
@keyframes gridFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0);    }
}
.gallery-grid {
  display: none;
  grid-template-columns: 294px 1fr 294px;
  grid-template-rows: 500px 238px;
  gap: 24px;
  width: 100%;
  max-width: var(--container);
}
.gallery-grid.active {
  display: grid;
  animation: gridFadeIn .38s ease both;
}

/* Left tall column */
.gcol-left {
  grid-column: 1;
  grid-row: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Middle sub-grid */
.gcol-middle {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 238px 238px;
  gap: 24px;
}
.gcol-middle-top {
  grid-column: 1 / -1;
  grid-row: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gcol-middle-bl {
  grid-column: 1;
  grid-row: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gcol-middle-br {
  grid-column: 2;
  grid-row: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Right tall column */
.gcol-right {
  grid-column: 3;
  grid-row: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Bottom row – spans all 3 grid cols */
.gcol-bottom {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  gap: 24px;
}
.gcol-bottom-wide {
  flex: 1;
  min-width: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gcol-bottom-narrow {
  width: 294px;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* All gallery cells share the same image treatment */
.gcol-left,
.gcol-middle-top,
.gcol-middle-bl,
.gcol-middle-br,
.gcol-right,
.gcol-bottom-wide,
.gcol-bottom-narrow {
  background: #f3ecff;
}
.gcol-left img,
.gcol-middle-top img,
.gcol-middle-bl img,
.gcol-middle-br img,
.gcol-right img,
.gcol-bottom-wide img,
.gcol-bottom-narrow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.gcol-left:hover img,
.gcol-middle-top:hover img,
.gcol-middle-bl:hover img,
.gcol-middle-br:hover img,
.gcol-right:hover img,
.gcol-bottom-wide:hover img,
.gcol-bottom-narrow:hover img {
  transform: scale(1.04);
}

/* ════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */
@media (max-width: 1280px) {
  .gallery-inner { padding: 64px 48px; }
  .gallery-grid.active  { grid-template-columns: 260px 1fr 260px; }
  .gcol-bottom-narrow { width: 260px; }
}
@media (max-width: 1024px) {
  .gallery-inner { padding: 64px 32px; }
  .gallery-grid.active  {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gcol-left    { grid-column: 1; grid-row: 1; height: 320px; }
  .gcol-middle  {
    grid-column: 2; grid-row: 1;
    grid-template-rows: 148px 148px;
  }
  .gcol-right   { grid-column: 1; grid-row: 2; height: 320px; }
  .gcol-bottom  {
    grid-column: 1 / -1; grid-row: 3;
    flex-direction: column;
  }
  .gcol-bottom-wide   { height: 220px; }
  .gcol-bottom-narrow { width: 100%; height: 220px; }
}
@media (max-width: 768px) {
  .gallery-title  { font-size: 36px; }
  .gallery-inner  { padding: 48px 24px; gap: 32px; }
  .gallery-grid.active   {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 16px;
  }
  .gcol-left,
  .gcol-right   { grid-column: 1; height: 280px; }
  .gcol-left    { grid-row: 1; }
  .gcol-middle  {
    grid-column: 1;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px;
    gap: 12px;
  }
  .gcol-middle-top { height: 180px; }
  .gcol-right   { grid-row: 3; }
  .gcol-bottom  {
    grid-column: 1; grid-row: 4;
    flex-direction: column;
    gap: 12px;
  }
  .gcol-bottom-wide   { height: 200px; }
  .gcol-bottom-narrow { width: 100%; height: 200px; }
}
@media (max-width: 480px) {
  .gallery-filters { flex-direction: column; width: 100%; }
  .filter-btn { width: 100%; justify-content: center; }
  .gallery-grid { gap: 12px; }
  .gcol-middle  { gap: 12px; grid-template-rows: 160px 160px; }
  .gcol-middle-top { height: 160px; }
  .gcol-left, .gcol-right { height: 240px; }
}

/* ════════════════════════════════════════════════
   GALLERY SECTION LAYOUT
════════════════════════════════════════════════ */
.gallery-section {
  padding-top: 80px; /* clear fixed navbar */
}
.gallery-inner {
  max-width: calc(var(--container) + var(--pad-x) * 2);
  margin: 0 auto;
  padding: 64px var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

/* Text header — centered column */
.gallery-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 0 var(--pad-x);
  width: 100%;
}
.gallery-headings {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.gallery-title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.gallery-subtitle {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2.56px;
  text-transform: uppercase;
  color: var(--teal-sec);
  text-align: center;
}
.gallery-title {
  font-size: 48px;
  font-weight: 600;
  color: var(--navy-2);
  line-height: 1.15;
  letter-spacing: -0.96px;
  text-align: center;
  width: 100%;
}
.gallery-desc {
  font-size: 16px;
  color: #5c5c6f;
  line-height: 1.5;
  letter-spacing: -0.32px;
  text-align: center;
  max-width: 653px;
}
/* Filter buttons centered */
.gallery-filters {
  justify-content: center;
}

@media (max-width: 900px) {
  .gallery-inner  { padding-top: 48px; padding-bottom: 48px; gap: 36px; }
  .gallery-header { padding: 0; }
}
@media (max-width: 480px) {
  .gallery-inner  { padding-top: 40px; padding-bottom: 40px; gap: 28px; }
  .gallery-title  { font-size: 32px; }
}


/* ══════════════════════════════════════════════════════
   PRESENCE PAGE
══════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════
   1. HERO
═══════════════════════════════════════════════ */
.pr-hero {
  margin-top: 80px;
  background: #fff;
  padding: 48px var(--pad-x);
}
.pr-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}
.pr-hero__text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pr-hero__title {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy-2);
  letter-spacing: -1.12px;
  margin-bottom: 24px;
}
.pr-hero__body {
  font-size: 16px;
  color: var(--muted-2);
  line-height: 1.5;
  letter-spacing: -.32px;
  max-width: 653px;
  text-align: center;
}
.pr-hero__img {
  width: 100%;
  height: 328px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #F3ECFF;
  position: relative;
}
.pr-hero__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

/* ═══════════════════════════════════════════════
   2. MAP
═══════════════════════════════════════════════ */
.pr-map {
  background: #fff;
  padding: 64px var(--pad-x);
}
.pr-map__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}
.pr-map__heading { text-align: center; }
.pr-map__heading h2 {
  font-size: 56px;
  font-weight: 600;
  color: var(--body-2);
  line-height: 1.15;
  letter-spacing: -1.12px;
}
.pr-map__img-wrap {
  width: 886px;
  max-width: 886px;
  margin: 0 auto;
  display: block;
}
.pr-map__img-wrap object {
  width: 100%;
  aspect-ratio: 886 / 1029;
  display: block;
  border: none;
  outline: none;
}

/* ═══════════════════════════════════════════════
   3. PROJECT SUPPLY LOCATIONS (teal bg)
═══════════════════════════════════════════════ */
.pr-locations {
  position: relative;
  background: var(--teal);
  padding: 64px var(--pad-x);
  overflow: hidden;
}
.pr-locations__bg {
  position: absolute;
  inset: 0;
  background-image: url('../bg-green.png');
  background-size: cover;
  background-position: center;
  opacity: .70;
  pointer-events: none;
}
.pr-locations__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
.pr-locations__heading { text-align: center; }
.pr-locations__heading h2 {
  font-size: 56px;
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -1.12px;
  margin-bottom: 16px;
}
.pr-locations__heading p {
  font-size: 18px;
  color: rgba(255,255,255,.9);
  letter-spacing: -.44px;
  line-height: 1.5;
}

/* 4×2 location cards grid */
.pr-loc-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.loc-card {
  background: #fff;
  border-left: 4px solid var(--yellow);
  padding: 24px 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 152px;
}
.loc-card__header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.loc-card__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.loc-card__icon img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.loc-card__region {
  font-size: 16px;
  font-weight: 500;
  color: var(--teal-sec);
  letter-spacing: -.3px;
  line-height: 1.5;
}
.loc-card__cities {
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.loc-card__cities li {
  font-size: 14px;
  color: var(--body);
  letter-spacing: -.15px;
  line-height: 20px;
  list-style: disc;
  margin-left: 20px;
}

/* CTA row */
.pr-locations__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding-top: 8px;
}
.pr-locations__cta p {
  font-size: 24px;
  color: #fff;
  letter-spacing: -.48px;
  line-height: 1.5;
  max-width: 900px;
}
.btn-get-in-touch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #C1A0FD;
  color: var(--navy-2);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.32px;
  padding: 14px 24px;
  border-radius: var(--r-md);
  height: 48px;
  transition: opacity .2s;
}
.btn-get-in-touch:hover { opacity: .85; }
.btn-get-in-touch img { width: 12px; height: 12px; }

/* ═══════════════════════════════════════════════
   4. STRATEGIC PARTNERSHIPS
═══════════════════════════════════════════════ */
.pr-partners {
  background: #fff;
  padding: 64px var(--pad-x);
}
.pr-partners__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.pr-partners__heading {
  text-align: center;
  padding: 0 var(--pad-x);
}
.pr-partners__heading h2 {
  font-size: 48px;
  font-weight: 600;
  color: var(--navy-2);
  line-height: 1.15;
  letter-spacing: -.96px;
  margin-bottom: 24px;
}
.pr-partners__heading p {
  font-size: 16px;
  color: var(--muted);
  letter-spacing: -.32px;
  max-width: 653px;
  margin: 0 auto;
  line-height: 1.5;
}
.pr-partners__content {
  display: flex;
  align-items: center;
  gap: 48px;
}
.pr-partners__left {
  flex: 0 0 584px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
/* Bullet list */
.pr-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pr-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.pr-bullet-item__icon {
  width: 24px; height: 24px;
  background: var(--yellow);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.pr-bullet-item__icon img { width: 14px; height: 14px; }
.pr-bullet-item p {
  font-size: 16px;
  color: var(--body);
  line-height: 1.625;
  letter-spacing: -.3px;
}
/* Gray quote box */
.pr-quote-box {
  background: #E8ECEF;
  padding: 24px;
}
.pr-quote-box p {
  font-size: 16px;
  color: #000;
  line-height: 1.625;
  letter-spacing: -.3px;
}
/* Right image */
.pr-partners__img {
  flex: 1;
  height: 336px;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  background: #F3ECFF;
}
.pr-partners__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.pr-partners__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,36,99,.4), transparent);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1280px) {
  :root { --pad-x: 48px; }
  .pr-hero__title { font-size: 42px; }
  .pr-map__heading h2 { font-size: 42px; }
  .pr-locations__heading h2 { font-size: 42px; }
  .pr-partners__heading h2 { font-size: 36px; }
  .pr-map__img-wrap { width: 100%; max-width: 886px; }
}

@media (max-width: 1100px) {
  .pr-partners__left { flex: 0 0 460px; }
}

@media (max-width: 960px) {
  :root { --pad-x: 32px; }
  .pr-hero__title { font-size: 32px; }
  .pr-map__heading h2 { font-size: 32px; }
  .pr-loc-grid { grid-template-columns: repeat(2, 1fr); }
  .pr-partners__content { flex-direction: column; }
  .pr-partners__left { flex: 0 0 auto; width: 100%; }
  .pr-partners__img { width: 100%; }
  .pr-partners__heading { padding: 0; }
}

@media (max-width: 768px) {
  :root { --pad-x: 24px; }
  .pr-hero__title { font-size: 26px; }
  .pr-hero__img { height: 220px; }
  .pr-map__heading h2 { font-size: 26px; }
  .pr-locations__heading h2 { font-size: 28px; }
  .pr-locations__cta p { font-size: 18px; }
  .pr-partners__heading h2 { font-size: 28px; }
}

@media (max-width: 540px) {
  :root { --pad-x: 16px; }
  .pr-loc-grid { grid-template-columns: 1fr; }
}
