/* =========================================
   SHARED PAGE STYLES — pages.css
   Covers: product-detail, news, news-detail,
           about, contact pages
   ========================================= */

/* ---- BREADCRUMB ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 24px 0 0;
}
.breadcrumb__item {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.6px;
  color: var(--color-body);
  text-transform: uppercase;
  transition: color .2s;
}
.breadcrumb__item:hover { color: var(--color-primary-dk); }
.breadcrumb__item--active {
  color: var(--color-primary-dk);
  font-weight: 700;
}
.breadcrumb__sep {
  width: 4px; height: 7px;
  display: inline-flex;
  align-items: center;
}
.breadcrumb__sep::after {
  content: '›';
  font-size: 12px;
  color: var(--color-body);
}

/* ---- PAGE WRAPPER ---- */
.page-main {
  background: #f9f9f9;
  border-top: 1px solid rgba(0,0,0,.12);
  padding-top: 0;
  padding-bottom: 80px;
  min-height: calc(100vh - var(--nav-h));
}

/* ===========================================
   LEGAL PAGES (privacy / terms)
   =========================================== */
.legal-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px var(--section-px) 0;
}

.legal-article {
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 48px 56px;
  margin-top: 24px;
}

.legal-article__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -0.5px;
  color: var(--color-dark);
  line-height: 1.2;
  margin-bottom: 32px;
}

.legal-article__body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-body);
}

.legal-article__body p { margin-bottom: 20px; }

.legal-article__body h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 26px;
  color: var(--color-dark);
  margin: 40px 0 16px;
  letter-spacing: -0.3px;
}

.legal-article__body ul,
.legal-article__body ol {
  margin: 0 0 20px 1.25em;
}

.legal-article__body li { margin-bottom: 8px; }

@media (max-width: 768px) {
  .legal-wrap { padding-top: 24px; }
  .legal-article { padding: 28px 20px; margin-top: 16px; }
  .legal-article__title { font-size: 26px; margin-bottom: 24px; }
  .legal-article__body { font-size: 15px; }
  .legal-article__body h2 { font-size: 20px; margin-top: 28px; }
  .breadcrumb { flex-wrap: wrap; padding-top: 16px; }
}

/* ===========================================
   PRODUCT DETAIL PAGE (31:255)
   =========================================== */
.pd-wrap {
  padding: 48px var(--section-px);
  max-width: var(--max-w);
  margin: 0 auto;
}

.pd-section {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 24px;
  margin-bottom: 48px;
}

/* Gallery */
.pd-gallery {
  display: flex;
  gap: 16px;
  height: 600px;
}

.pd-thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 80px;
  flex-shrink: 0;
  overflow-y: auto;
}

.pd-thumb {
  width: 80px; height: 80px;
  background: #f3f3f4;
  border: 1px solid var(--color-border);
  cursor: pointer;
  overflow: hidden;
  flex-shrink: 0;
  transition: border-color .2s;
}
.pd-thumb--active { border: 2px solid var(--color-primary-dk); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }

.pd-main-img {
  flex: 1;
  height: 600px;
  background: #f3f3f4;
  border: 1px solid var(--color-border);
  overflow: hidden;
  position: relative;
}
.pd-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Info */
.pd-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pd-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.32px;
  text-transform: uppercase;
  color: var(--color-dark);
  line-height: 1.2;
}

.pd-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-body);
}

.pd-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 25px 0;
}

.pd-spec-label {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.6px;
  color: var(--color-body);
  display: block;
  margin-bottom: 4px;
}

.pd-spec-value {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 24px;
  color: var(--color-dark);
  line-height: 1.3;
  display: block;
}

.pd-quote-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-primary-dk);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  padding: 16px;
  border-radius: 2px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: opacity .2s;
}
.pd-quote-btn:hover { opacity: .9; }
.pd-quote-btn img {
  width: 19px;
  height: 16px;
  flex-shrink: 0;
  object-fit: contain;
}

.pd-badges {
  display: flex;
  gap: 24px;
  background: #f3f3f4;
  padding: 16px;
  border-radius: 4px;
  align-items: center;
}

.pd-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.pd-badge img { width: 22px; height: 22px; object-fit: contain; }

.pd-badge span {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--color-dark);
}

/* Quality Section */
.pd-quality {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 48px;
  margin-bottom: 48px;
}

.pd-quality__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: center;
}

.pd-quality__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.32px;
  text-transform: uppercase;
  color: var(--color-primary-dk);
}

.pd-quality__body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-body);
}

.pd-quality__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pd-quality__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.pd-quality__item img { width: 20px; height: 24px; object-fit: contain; flex-shrink: 0; }

.pd-quality__item-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-dark);
  display: block;
}

.pd-quality__item-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-body);
  display: block;
  margin-top: 2px;
}

.pd-quality__img {
  background: #f3f3f4;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  height: 320px;
  align-self: center;
}
.pd-quality__img img { width: 100%; height: 100%; object-fit: cover; }

/* Related Products */
.pd-related {
  padding-top: 64px;
}

.pd-related__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}

.pd-related__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  line-height: 38.4px;
  letter-spacing: -0.8px;
  text-transform: uppercase;
  color: var(--color-dark);
}

.pd-related__navs {
  display: flex;
  gap: 8px;
}

.pd-nav-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  cursor: pointer;
  transition: background .2s;
}
.pd-nav-btn:hover { background: #f0f0f0; }
.pd-nav-btn.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}
.pd-nav-btn.swiper-button-disabled:hover { background: #fff; }
.pd-nav-btn img {
  width: 7px;
  height: 12px;
  flex-shrink: 0;
  object-fit: contain;
}

.pd-related-swiper {
  overflow: hidden;
}
.pd-related-swiper .swiper-slide {
  height: auto;
}

.pd-related-card {
  background: #fff;
  border: 1px solid var(--color-border);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .2s;
}
.pd-related-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }

.pd-related-card__img {
  height: 256px;
  overflow: hidden;
  background: #f3f3f4;
}
.pd-related-card__img img { width: 100%; height: 100%; object-fit: cover; }

.pd-related-card__body {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 24px;
}

.pd-related-card__cat {
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-body);
  font-weight: 400;
  display: block;
}

.pd-related-card__name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  line-height: 28.8px;
  color: var(--color-dark);
  margin: 0;
}

.pd-related-card__link {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 20px;
  color: var(--color-primary-dk);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding-top: 9px;
}
.pd-related-card__link img {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  object-fit: contain;
}

/* ===========================================
   NEWS LIST PAGE (36:449)
   =========================================== */

/* News Hero Banner */
.news-hero {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #002a5c;
  margin-top: var(--nav-h);
  display: flex;
  align-items: center;
}
.news-hero__bg {
  position: absolute;
  inset: 0;
}
.news-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
  mix-blend-mode: luminosity;
}
.news-hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--section-px);
}
.news-hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  color: #fff;
  letter-spacing: -0.5px;
}

/* News Latest Updates */
.news-main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px var(--section-px);
}

.news-main__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.news-main__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.32px;
  color: var(--color-dark);
}

.news-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.6px;
  color: var(--color-body);
  cursor: pointer;
}
.news-sort img { width: 16px; height: 16px; object-fit: contain; }

/* Featured Article (big) */
.news-featured {
  display: grid;
  grid-template-columns: 4fr 5fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--color-border);
  margin-bottom: 24px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.news-featured:hover { box-shadow: 0 4px 20px rgba(0,0,0,.08); }

.news-featured__img {
  height: 100%;
  min-height: 350px;
  overflow: hidden;
}
.news-featured__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.news-featured:hover .news-featured__img img { transform: scale(1.03); }

.news-featured__body {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.news-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(0,86,179,.08);
  padding: 3px 8px;
}

.news-tag + time, .news-tag + .news-date {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.6px;
  color: var(--color-muted);
  margin-left: 8px;
}

.news-featured__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.5px;
  color: var(--color-primary-dk);
  line-height: 1.2;
}

.news-featured__excerpt {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-body);
}

.news-featured__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-primary-dk);
  margin-top: 8px;
  transition: gap .2s;
}
.news-featured__link:hover { gap: 10px; }
.news-featured__link img { width: 16px; height: 10px; object-fit: contain; }

/* Small article cards grid */
.news-grid-sm {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.news-card-sm {
  background: #fff;
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: box-shadow .2s;
}
.news-card-sm:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }

.news-card-sm__img {
  height: 200px;
  overflow: hidden;
  background: #f0f0f0;
}
.news-card-sm__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.news-card-sm:hover .news-card-sm__img img { transform: scale(1.04); }

.news-card-sm__body {
  padding: 20px;
}

.news-card-sm__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.news-card-sm__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 22px;
  color: var(--color-dark);
  line-height: 1.25;
  margin-bottom: 10px;
}

.news-card-sm__excerpt {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-body);
  margin-bottom: 16px;
}

.news-card-sm__link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--color-primary-dk);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s;
}
.news-card-sm__link:hover { gap: 8px; }
.news-card-sm__link::after { content: '›'; font-size: 16px; }

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.page-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--color-border);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-body);
  cursor: pointer;
  border-radius: 2px;
  transition: background .2s, color .2s;
}
.page-btn:hover { background: #f0f0f0; }
.page-btn--active {
  background: var(--color-primary-dk);
  color: #fff;
  border-color: var(--color-primary-dk);
}
.page-btn--prev, .page-btn--next {
  font-size: 16px;
  color: var(--color-dark);
}

/* ===========================================
   NEWS DETAIL PAGE (36:171)
   =========================================== */
.nd-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px var(--section-px);
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}

.nd-article {}

.nd-tag-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.nd-tag {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  background: var(--color-primary);
  color: #fff;
  padding: 4px 10px;
  border-radius: 2px;
}

.nd-date {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-muted);
  letter-spacing: 0.6px;
}

.nd-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -0.5px;
  color: var(--color-dark);
  line-height: 1.2;
  margin-bottom: 24px;
}

.nd-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.nd-author__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: #eee;
}
.nd-author__avatar img { width: 100%; height: 100%; object-fit: cover; }

.nd-author__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-dark);
  display: block;
}

.nd-author__title {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-muted);
  display: block;
}

.nd-cover {
  width: 100%;
  height: 360px;
  overflow: hidden;
  margin-bottom: 40px;
  background: #f0f0f0;
}
.nd-cover img { width: 100%; height: 100%; object-fit: cover; }

.nd-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-body);
}

.nd-body p { margin-bottom: 20px; }

.nd-body h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 26px;
  color: var(--color-dark);
  margin: 40px 0 16px;
  letter-spacing: -0.3px;
}

.nd-blockquote {
  background: rgba(0,63,135,.04);
  border-left: 4px solid var(--color-primary-dk);
  padding: 24px 32px;
  margin: 32px 0;
  font-family: var(--font-body);
  font-size: 18px;
  font-style: italic;
  color: var(--color-dark);
  line-height: 1.6;
  border-radius: 0 4px 4px 0;
}

.nd-img-block {
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin: 32px 0;
  background: #f0f0f0;
}
.nd-img-block img { width: 100%; height: 100%; object-fit: cover; }

/* Sidebar */
.nd-sidebar {}

.nd-sidebar__section {
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 24px;
  margin-bottom: 24px;
}

.nd-sidebar__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-primary-dk);
}

.nd-news-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}
.nd-news-item:last-child { border-bottom: none; padding-bottom: 0; }

.nd-news-item__cat {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 700;
}

.nd-news-item__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-dark);
  line-height: 1.4;
}

.nd-news-item__date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-muted);
}

.nd-related-product {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}
.nd-related-product:last-child { border-bottom: none; padding-bottom: 0; }

.nd-related-product__img {
  width: 56px; height: 56px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  flex-shrink: 0;
}
.nd-related-product__img img { width: 100%; height: 100%; object-fit: cover; }

.nd-related-product__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--color-dark);
  display: block;
  margin-bottom: 4px;
}

.nd-related-product__link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.6px;
  color: var(--color-primary-dk);
  text-transform: uppercase;
  font-weight: 700;
}
.nd-related-product__link::after { content: ' →'; }

/* ===========================================
   ABOUT US PAGE (40:1163)
   =========================================== */

/* Hero */
.about-hero {
  position: relative;
  height: 500px;
  background: #002a5c;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: var(--nav-h);
}

.about-hero__bg {
  position: absolute;
  inset: 0;
}
.about-hero__bg img {
  position: absolute;
  left: 0; top: -23.25%;
  width: 100%; height: 146.5%;
  max-width: none;
  object-fit: cover;
  opacity: .4;
  mix-blend-mode: luminosity;
}

.about-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 672px;
  padding: 0 40px;
}

.about-hero__title {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 48px;
  letter-spacing: -0.96px;
  color: #fff;
  line-height: 1.1;
}

.about-hero__bar {
  width: 96px; height: 4px;
  background: #115cb9;
}

.about-hero__sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  color: #d7e3ff;
  line-height: 1.6;
}

/* Company Intro */
.about-intro {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px var(--section-px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-intro__eyebrow {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #115cb9;
  margin-bottom: 16px;
  display: block;
}

.about-intro__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  color: #191c1d;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-intro__text {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.625;
  color: #434751;
  margin-bottom: 16px;
}

.about-intro__img {
  border: 1px solid #c3c6d2;
  overflow: hidden;
  height: 313px;
}
.about-intro__img img { width: 100%; height: 100%; object-fit: cover; }

/* Development Timeline */
.about-timeline {
  background: #f3f4f5;
  padding: 80px 0;
}

.about-timeline__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--section-px);
}

.about-timeline__eyebrow {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #115cb9;
  text-align: center;
  display: block;
  margin-bottom: 8px;
}

.about-timeline__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  color: #191c1d;
  text-align: center;
  margin-bottom: 56px;
}

.about-timeline__track {
  position: relative;
  display: flex;
  justify-content: space-around;
  padding: 0 40px;
}

.about-timeline__track::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 40px;
  right: 40px;
  height: 4px;
  background: rgba(0,42,92,.2);
}

.about-timeline__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 260px;
  position: relative;
  z-index: 1;
}

.about-timeline__dot {
  width: 40px; height: 40px;
  background: #002a5c;
  border: 4px solid #f3f4f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px #002a5c;
}

.about-timeline__dot-inner {
  width: 12px; height: 12px;
  background: #fff;
  border-radius: 50%;
}

.about-timeline__year {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: #002a5c;
  text-align: center;
}

.about-timeline__desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: #434751;
  text-align: center;
  line-height: 1.5;
}

/* Certifications */
.about-certs {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px var(--section-px);
}

.about-certs__eyebrow {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #115cb9;
  text-align: center;
  display: block;
  margin-bottom: 8px;
}

.about-certs__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  color: #191c1d;
  text-align: center;
  margin-bottom: 48px;
}

.about-certs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-cert-card {
  border: 1px solid #c3c6d2;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.about-cert-card__img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #edeeef;
}
.about-cert-card__img img { width: 100%; height: 100%; object-fit: cover; }

.about-cert-card__label {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-align: center;
  color: #434751;
}

/* Global Partners */
.about-partners {
  background: var(--color-primary-dk);
  padding: 64px 0;
}

.about-partners__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--section-px);
  display: flex;
  align-items: center;
  gap: 48px;
}

.about-partners__label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  color: #fff;
  flex-shrink: 0;
  white-space: nowrap;
}

.about-partners__desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}

.about-partners__logos {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
}

.about-partner-logo {
  width: 100px; height: 48px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 2px;
}
.about-partner-logo img {
  max-width: 80px;
  max-height: 36px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .8;
}

/* CTA Section */
.about-cta {
  background: #f9f9f9;
  padding: 80px var(--section-px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.about-cta__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 36px;
  color: var(--color-dark);
  letter-spacing: -0.5px;
}

.about-cta__sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-body);
  margin-bottom: 16px;
}

.about-cta__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn--cta-primary {
  background: var(--color-primary-dk);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity .2s;
}
.btn--cta-primary:hover { opacity: .88; }

.btn--cta-outline {
  background: transparent;
  color: var(--color-primary-dk);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border: 1.5px solid var(--color-primary-dk);
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.btn--cta-outline:hover { background: rgba(0,63,135,.06); }

/* ===========================================
   CONTACT US PAGE (40:1756)
   =========================================== */
.contact-page {
  background: #f9f9f9;
  min-height: calc(100vh - var(--nav-h));
  margin-top: var(--nav-h);
}

/* Reuse shared .contact section from style.css */

/* ===========================================
   RESPONSIVE — TABLET (≤1100px)
   =========================================== */
@media (max-width: 1100px) {
  .pd-section { grid-template-columns: 1fr; }
  .pd-gallery { height: 400px; }
  .pd-main-img { height: 400px; }
  .news-featured { grid-template-columns: 1fr; }
  .news-featured__img { min-height: 240px; }
  .nd-layout { grid-template-columns: 1fr; }
  .nd-sidebar { display: none; }
  .about-intro { grid-template-columns: 1fr; gap: 40px; }
  .about-certs__grid { grid-template-columns: repeat(2, 1fr); }
  .about-partners__inner { flex-direction: column; gap: 32px; }
  .about-partners__logos { justify-content: flex-start; }
}

/* ===========================================
   RESPONSIVE — MOBILE (≤768px)
   =========================================== */
@media (max-width: 768px) {
  .pd-wrap { padding: 24px var(--section-px); }
  .pd-section { gap: 16px; margin-bottom: 32px; }
  .pd-gallery { flex-direction: column; height: auto; }
  .pd-thumbs { flex-direction: row; width: 100%; height: 70px; overflow-x: auto; overflow-y: hidden; }
  .pd-thumb { width: 70px; height: 70px; flex-shrink: 0; }
  .pd-main-img { height: 280px; }
  .pd-name { font-size: 26px; }
  .pd-quality { grid-template-columns: 1fr; }

  .news-hero { height: 160px; }
  .news-hero__title { font-size: 28px; }
  .news-grid-sm { grid-template-columns: 1fr; }
  .news-featured__title { font-size: 24px; }
  .pagination { flex-wrap: wrap; justify-content: center; gap: 6px; }

  .nd-layout { padding: 32px var(--section-px); gap: 32px; }
  .nd-title { font-size: 26px; }
  .nd-cover { height: 200px; }

  .about-hero { height: 280px; }
  .about-hero__title { font-size: 28px; }
  .about-hero__sub { font-size: 15px; }
  .about-intro { gap: 28px; }
  .about-intro__title { font-size: 26px; }
  .about-timeline__track { flex-direction: column; gap: 32px; align-items: center; }
  .about-timeline__track::before { display: none; }
  .about-certs__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .about-partners__logos { flex-wrap: wrap; gap: 16px; }
  .about-cta { padding: 48px var(--section-px); }
  .about-cta__title { font-size: 26px; }
  .about-cta__btns {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .about-cta__btns .btn--cta-primary,
  .about-cta__btns .btn--cta-outline {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .about-certs__grid { grid-template-columns: 1fr; }
  .pd-main-img { height: 240px; }
  .about-hero__title { font-size: 24px; }
}
