/*
Theme Name: ZeroY Starter
Author: ZeroY Studio
Description: QINFENG B2B theme — site framework. Design tokens live in assets/css/tokens.css.
Version: 0.2.0
*/

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: var(--leading-body);
  color: var(--color-ink);
  background: var(--color-white);
}

a {
  color: var(--color-deep-green);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover,
a:focus-visible {
  color: var(--color-ink);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4 {
  margin: 0 0 var(--space-sm);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-title);
  font-weight: 700;
}

p {
  margin: 0 0 var(--space-sm);
}

:focus-visible {
  outline: 2px solid var(--color-deep-green);
  outline-offset: 2px;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Header ---------- */

.site-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-mist);
}

.site-header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  min-height: 82px;
  padding: var(--space-xs) 0;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  text-decoration: none;
  color: var(--color-ink);
  font-weight: 700;
  letter-spacing: var(--tracking-title);
}

.site-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-control);
  background: var(--color-navy-dark);
  color: var(--color-signal);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}

.site-brand-name {
  font-size: 19px;
}

.site-nav {
  flex: 1 1 420px;
}

.site-nav .menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 15px;
  font-weight: 600;
}

.site-nav .menu > li {
  position: relative;
}

.site-nav .menu a {
  display: inline-block;
  padding: var(--space-2xs) 0;
  text-decoration: none;
  color: var(--color-ink);
}

.site-nav .menu a:hover,
.site-nav .menu a:focus-visible,
.site-nav .current-menu-item > a,
.site-nav .current-menu-ancestor > a {
  color: var(--color-deep-green);
}

.site-nav .sub-menu {
  position: absolute;
  z-index: 20;
  top: 100%;
  left: 0;
  min-width: 240px;
  margin: var(--space-2xs) 0 0;
  padding: var(--space-xs);
  list-style: none;
  background: var(--color-white);
  border: 1px solid var(--color-mist);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  display: none;
}

.site-nav .menu > li:hover > .sub-menu,
.site-nav .menu > li:focus-within > .sub-menu {
  display: block;
}

.site-nav .sub-menu a {
  display: block;
  padding: var(--space-2xs) var(--space-xs);
  font-weight: 400;
}

.site-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-left: auto;
}

/* ---------- Buttons ---------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xs);
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-button);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}

.button--primary {
  background: var(--color-brand);
  border-color: var(--color-brand);
  color: var(--color-navy-dark);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--color-deep-green);
  border-color: var(--color-deep-green);
  color: var(--color-white);
  transform: translateY(-1px);
}

.site-header .button--primary {
  background: linear-gradient(135deg, #D4FF00 0%, #55C83A 100%);
  border-color: rgba(255, 255, 255, 0.4);
  color: #0B263D;
  font-weight: 850;
  box-shadow: 0 4px 18px rgba(212, 255, 0, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header .button--primary:hover,
.site-header .button--primary:focus-visible {
  background: linear-gradient(135deg, #E2FF4D 0%, #68E04C 100%);
  border-color: rgba(255, 255, 255, 0.6);
  color: #0B263D;
  box-shadow: 0 8px 24px rgba(212, 255, 0, 0.5);
  transform: translateY(-2px);
}

.button--outline {
  background: var(--color-white);
  border-color: var(--color-navy);
  color: var(--color-navy);
}

.button--outline:hover,
.button--outline:focus-visible {
  background: var(--color-navy);
  color: var(--color-white);
}

/* ---------- Main / page structure ---------- */

.site-main {
  padding: 0;
}

body:not(.home):not(.page-template-page-about):not(.page-template-page-thank-you):not(.page-template-page-contact):not(.page-template-page-request-a-quote):not(.page-template-page-manufacturing):not(.page-template-page-export-shipping) .site-main {
  padding: var(--section-y) var(--gutter);
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin: 0 auto;
}

body.page-template-page-about .site-main,
body.page-template-page-thank-you .site-main,
body.page-template-page-contact .site-main,
body.page-template-page-request-a-quote .site-main,
body.page-template-page-manufacturing .site-main,
body.page-template-page-export-shipping .site-main {
  padding: 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.site-main > *:first-child {
  margin-top: 0;
}

.breadcrumbs {
  margin: 0 0 var(--space-md);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--color-slate);
}

.breadcrumbs a {
  color: var(--color-slate);
  text-decoration: none;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--color-deep-green);
}

.breadcrumbs > span {
  padding: 0 var(--space-2xs);
}

.page-hero {
  max-width: 860px;
  margin: 0 0 var(--space-xl);
}

.page-hero__eyebrow {
  margin: 0 0 var(--space-xs);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-deep-green);
}

.page-hero__title {
  margin: 0 0 var(--space-md);
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.02;
}

.page-hero__lead {
  margin: 0;
  font-size: 19px;
  line-height: 1.55;
  color: var(--color-slate);
}

.page-section {
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--color-mist);
}

.page-section__title {
  font-size: clamp(30px, 3.4vw, 40px);
  margin-bottom: var(--space-lg);
}

.entry-content {
  max-width: 820px;
  font-size: 17px;
}

.entry-content h2 {
  margin-top: var(--space-2xl);
  font-size: clamp(28px, 3vw, 34px);
}

.entry-content h3 {
  margin-top: var(--space-xl);
  font-size: 22px;
}

.entry-content h4 {
  margin-top: var(--space-lg);
  font-size: 17px;
}

.entry-content ul,
.entry-content ol {
  margin: 0 0 var(--space-md);
  padding-left: var(--space-md);
}

.entry-content li + li {
  margin-top: var(--space-2xs);
}

.entry-content table {
  width: 100%;
  margin: 0 0 var(--space-md);
  border-collapse: collapse;
  font-size: 15px;
}

.entry-content th,
.entry-content td {
  padding: var(--space-xs) var(--space-sm);
  border: 1px solid var(--color-mist);
  text-align: left;
}

.entry-content th {
  background: var(--color-soft);
  font-weight: 700;
}

.entry-content figure {
  margin: 0 0 var(--space-md);
}

.planning-note {
  display: inline-block;
  margin: 0;
  padding: var(--space-xs) var(--space-sm);
  border: 1px dashed var(--color-mist);
  border-radius: var(--radius-control);
  background: var(--color-soft);
  color: var(--color-slate);
  font-size: 15px;
}

/* ---------- Cards, lists, pagination ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}

.card {
  padding: var(--space-md);
  border: 1px solid var(--color-mist);
  border-radius: var(--radius-card);
  background: var(--color-white);
}

/* A single entry should not stretch across the whole row. */
.card-grid > .card {
  max-width: 420px;
}

.card__title {
  margin: 0 0 var(--space-2xs);
  font-size: 19px;
}

.card__text {
  margin: 0;
  font-size: 15px;
  color: var(--color-slate);
}

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

.post-list__item {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-mist);
}

.post-list__item:first-child {
  padding-top: 0;
}

.post-list__title {
  margin: 0 0 var(--space-2xs);
  font-size: 21px;
}

.post-list__title a {
  text-decoration: none;
}

.post-list__meta {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--color-slate);
}

.pagination {
  margin-top: var(--space-xl);
  font-size: 15px;
}

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm);
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 var(--space-xs);
  border: 1px solid var(--color-mist);
  border-radius: var(--radius-control);
  text-decoration: none;
  color: var(--color-navy);
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
  border-color: var(--color-brand);
  background: var(--color-pale-green);
  color: var(--color-deep-green);
}

/* ---------- CTA band, empty state, search form ---------- */

.cta-band {
  margin-top: var(--section-y);
  padding: var(--space-xl) var(--space-md);
  border-radius: var(--radius-large);
  background: var(--color-navy-dark);
  color: var(--color-white);
}

.cta-band__title {
  color: var(--color-white);
  font-size: clamp(26px, 3vw, 34px);
}

.cta-band__text {
  max-width: 640px;
  margin: 0 0 var(--space-md);
  color: var(--color-pale-blue-gray);
}

.cta-band .button--outline {
  background: transparent;
  border-color: var(--color-pale-blue-gray);
  color: var(--color-white);
}

.cta-band .button--outline:hover,
.cta-band .button--outline:focus-visible {
  background: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-navy-dark);
}

.not-found {
  max-width: 640px;
  padding: var(--space-md);
  border: 1px solid var(--color-mist);
  border-radius: var(--radius-card);
  background: var(--color-soft);
  color: var(--color-slate);
}

.search-form {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: 0 0 var(--space-xl);
}

.search-form input[type="search"] {
  flex: 1 1 260px;
  padding: 12px var(--space-sm);
  border: 1px solid var(--color-mist);
  border-radius: var(--radius-control);
  font: inherit;
}

.search-form input[type="submit"] {
  background: var(--color-brand);
  border: 1px solid var(--color-brand);
  border-radius: var(--radius-button);
  color: var(--color-navy-dark);
  font: inherit;
  font-weight: 700;
  padding: 12px 22px;
  cursor: pointer;
}

/* ---------- Footer ---------- */

.site-footer {
  margin-top: var(--section-y);
  padding: var(--space-2xl) 0 var(--space-md);
  background: var(--color-navy-dark);
  color: var(--color-pale-blue-gray);
  font-size: 15px;
}

.site-footer-top {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-xl) var(--space-2xl);
}

.site-footer a {
  color: var(--color-pale-blue-gray);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--color-white);
  text-decoration: underline;
}

.footer-brand .site-brand {
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}

.footer-brand .site-brand-mark {
  background: var(--color-white);
  color: var(--color-navy-dark);
}

.footer-brand p {
  margin: 0 0 var(--space-2xs);
  max-width: 340px;
}

.footer-contact {
  color: var(--color-white);
  font-weight: 600;
}

.footer-col h2 {
  margin: 0 0 var(--space-xs);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.footer-col .menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col .menu li {
  margin-bottom: var(--space-2xs);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-top: var(--space-2xl);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(213, 224, 231, .25);
  font-size: 14px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ---------- Header: keep the primary nav on one line ---------- */

@media (min-width: 901px) and (max-width: 1330px) {
  .site-header-inner {
    gap: 14px;
  }

  .site-nav .menu {
    gap: 14px;
    font-size: 13.5px;
  }

  .site-header .button {
    padding: 10px 14px;
  }
}

/* ---------- Small screens ---------- */

@media (max-width: 900px) {
  .site-header-inner {
    align-items: flex-start;
  }

  .site-nav {
    flex: 1 1 100%;
  }

  .site-nav .menu {
    gap: var(--space-sm);
  }

  .site-nav .sub-menu {
    display: block;
    position: static;
    min-width: 0;
    margin: 0 0 var(--space-2xs);
    padding: 0 0 0 var(--space-sm);
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .site-actions {
    margin-left: 0;
  }

  body:not(.home) .site-main {
    padding: var(--section-y) var(--gutter);
  }
}

/* ---------- Page sections: shared parts ---------- */

.page-section__eyebrow {
  margin: 0 0 var(--space-xs);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-deep-green);
}

.page-section__lead {
  max-width: 820px;
  margin: 0 0 var(--space-lg);
  font-size: 18px;
  line-height: 1.55;
  color: var(--color-slate);
}

.page-section > .planning-note {
  margin-top: var(--space-sm);
}

/* Facts: label / value rows */

.facts {
  margin: 0;
  max-width: 900px;
}

.facts__row {
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr;
  gap: var(--space-2xs) var(--space-md);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-mist);
}

.facts__row:first-child {
  padding-top: 0;
}

.facts__label {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-navy);
}

.facts__value {
  margin: 0;
  font-size: 16px;
}

.facts__value--empty {
  color: var(--color-slate);
}

/* Data table: capability matrix and similar records */

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-card);
}

.data-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 15px;
}

.data-table th,
.data-table td {
  padding: var(--space-xs) var(--space-sm);
  border: 1px solid var(--color-mist);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  background: var(--color-soft);
  color: var(--color-navy);
  font-weight: 700;
}

.data-table td[colspan] {
  color: var(--color-slate);
}

/* Timeline: milestones */

.timeline {
  margin: 0;
  padding: 0 0 0 var(--space-md);
  list-style: none;
  border-left: 2px solid var(--color-mist);
}

.timeline__item {
  position: relative;
  padding: 0 0 var(--space-lg) var(--space-sm);
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: calc(var(--space-md) * -1 - 5px);
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-brand);
}

.timeline__year {
  margin: 0 0 var(--space-2xs);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--color-deep-green);
}

.timeline__title {
  margin: 0 0 var(--space-2xs);
  font-size: 19px;
}

.timeline__text {
  margin: 0;
  max-width: 760px;
  font-size: 16px;
  color: var(--color-slate);
}

/* Steps: checkpoints and ordered chains */

.steps {
  display: grid;
  gap: var(--space-xs);
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 900px;
}

.steps__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--space-2xs) var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--color-mist);
  border-radius: var(--radius-card);
  background: var(--color-white);
}

.steps__index {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-deep-green);
}

.steps__title {
  margin: 0;
  font-size: 18px;
}

.steps__text {
  grid-column: 2;
  margin: 0;
  font-size: 15px;
  color: var(--color-slate);
}

/* Gallery: factory, team and dispatch photos */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
  margin: 0;
  padding: 0;
  list-style: none;
}

.gallery__item {
  margin: 0;
}

.gallery__image {
  width: 100%;
  border-radius: var(--radius-card);
}

.gallery__item--placeholder {
  min-height: 180px;
  border: 1px dashed var(--color-mist);
  border-radius: var(--radius-card);
  background: var(--color-soft);
}

/* CTA band actions */

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin: var(--space-md) 0 0;
}

@media (max-width: 640px) {
  .facts__row {
    grid-template-columns: 1fr;
  }
}

/* ---------- Enquiry form ---------- */

.inquiry-form {
  max-width: 900px;
}

.inquiry-form__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.inquiry-form__field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
  margin: 0;
}

.inquiry-form__field--wide {
  grid-column: 1 / -1;
}

.inquiry-form__label {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-navy);
}

.inquiry-form__required {
  margin-left: 2px;
  color: var(--color-deep-green);
}

.inquiry-form__input {
  width: 100%;
  padding: 12px var(--space-sm);
  border: 1px solid var(--color-mist);
  border-radius: var(--radius-control);
  background: var(--color-white);
  font: inherit;
  color: var(--color-ink);
}

.inquiry-form__input:focus-visible {
  border-color: var(--color-deep-green);
}

.inquiry-form__input[aria-invalid="true"] {
  border-color: var(--color-error);
}

textarea.inquiry-form__input {
  min-height: 140px;
  resize: vertical;
}

input[type="file"].inquiry-form__input {
  padding: var(--space-xs) var(--space-sm);
  background: var(--color-soft);
}

.inquiry-form__hint {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--color-slate);
}

.inquiry-form__check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-ink);
}

.inquiry-form__check input {
  flex: 0 0 auto;
  margin-top: 3px;
}

.inquiry-form__actions {
  align-items: flex-start;
  gap: var(--space-sm);
}

.inquiry-form__actions .button {
  align-self: flex-start;
}

.inquiry-form__notice {
  margin: 0 0 var(--space-md);
  padding: var(--space-xs) var(--space-sm);
  border: 1px solid var(--color-mist);
  border-left-width: 4px;
  border-radius: var(--radius-control);
  background: var(--color-soft);
  font-size: 15px;
}

.inquiry-form__notice--error {
  border-left-color: var(--color-error);
  color: var(--color-error);
}

.inquiry-form__notice--success {
  border-left-color: var(--color-brand);
  color: var(--color-deep-green);
}

/* Honeypot field: off-screen and never announced. */
.inquiry-form__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 600px) {
  .inquiry-form__grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   HOMEPAGE DESIGN SYSTEM & ANIMATIONS (front-page.php)
   Aligned with DESIGN.md & QINFENG Design Specs
   ========================================================================== */

.hp {
  width: 100%;
  overflow-x: hidden;
}

/* Eyebrows */
.hp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-deep-green);
}

.hp-eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--color-brand);
  border-radius: 2px;
}

.hp-eyebrow--lime {
  color: var(--color-signal);
}

.hp-eyebrow--lime::before {
  background: var(--color-signal);
}

/* Sections */
.hp-section {
  padding: 96px 0;
  position: relative;
}

.hp-section--white {
  background: var(--color-white);
}

.hp-section--soft {
  background: var(--color-soft);
}

.hp-section--dark {
  background: var(--color-navy-dark);
  color: var(--color-white);
}

.hp-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}

.hp-section-head > div:first-child {
  max-width: 720px;
}

.hp-section-title {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}

.hp-section-title--light {
  color: var(--color-white);
}

.hp-section-desc {
  max-width: 440px;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-slate);
}

.hp-section-lead--light {
  color: var(--color-pale-blue-gray);
  font-size: 18px;
  line-height: 1.6;
  max-width: 560px;
  margin-top: 16px;
}

.hp-arrow {
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.button:hover .hp-arrow,
.hp-text-link:hover .hp-arrow {
  transform: translateX(4px);
}

/* Highlight Tokens */
.hp-highlight {
  color: var(--color-signal);
}

.hp-highlight-lime {
  color: var(--color-signal) !important;
  font-weight: 700;
}

/* ---------- 1. Hero Section ---------- */
.hp-hero {
  position: relative;
  min-height: 840px;
  display: flex;
  align-items: center;
  background: var(--color-navy-dark);
  color: var(--color-white);
  overflow: hidden;
}

.hp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hp-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  animation: hpHeroZoom 18s ease-in-out infinite alternate;
}

@keyframes hpHeroZoom {
  from {
    transform: scale(1.0);
  }
  to {
    transform: scale(1.08);
  }
}

.hp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 38, 61, 0.94) 0%,
    rgba(11, 38, 61, 0.78) 46%,
    rgba(11, 38, 61, 0.35) 75%,
    rgba(11, 38, 61, 0.20) 100%
  );
}

.hp-hero__container {
  position: relative;
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 720px;
}

.hp-hero__content {
  max-width: 720px;
  animation: hpFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes hpFadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hp-hero__title {
  font-size: clamp(42px, 5.2vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--color-white);
  margin-bottom: 24px;
}

.hp-hero__lead {
  font-size: clamp(18px, 1.9vw, 21px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
  margin-bottom: 36px;
}

.hp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button--outline-light {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--color-white);
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

.button--outline-light:hover,
.button--outline-light:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--color-white);
  color: var(--color-white);
  transform: translateY(-2px);
}

.hp-btn-glow {
  box-shadow: 0 4px 24px rgba(85, 200, 58, 0.35);
  transition: all 0.25s ease;
}

.hp-btn-glow:hover {
  box-shadow: 0 8px 32px rgba(85, 200, 58, 0.55);
  transform: translateY(-2px);
}

/* Proof stats floating in hero */
.hp-hero__proof {
  position: absolute;
  right: var(--gutter);
  bottom: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(11, 38, 61, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-card);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  max-width: 520px;
  width: 100%;
}

.hp-hero__proof-item {
  padding: 18px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hp-hero__proof-item:last-child {
  border-right: none;
}

.hp-hero__proof-item strong {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.hp-hero__proof-item span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- 2. Intro Value Strip ---------- */
.hp-intro-strip {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-mist);
  position: relative;
  z-index: 5;
}

.hp-intro-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  border-inline: 1px solid var(--color-mist);
}

.hp-intro-cell {
  padding: 32px 28px;
  border-right: 1px solid var(--color-mist);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: background-color 0.25s ease;
}

.hp-intro-cell:last-child {
  border-right: none;
}

.hp-intro-cell--brand {
  background: var(--color-brand);
  color: var(--color-navy-dark);
}

.hp-intro-cell--brand .hp-intro-num {
  color: var(--color-navy-dark);
  font-weight: 800;
}

.hp-intro-cell--brand h3 {
  color: var(--color-navy-dark);
}

.hp-intro-cell--brand p {
  color: rgba(11, 38, 61, 0.85);
}

.hp-intro-num {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-deep-green);
  margin-bottom: 10px;
}

.hp-intro-cell h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--color-ink);
}

.hp-intro-cell p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-slate);
}

/* ---------- 3. Real Manufacturing Partner & Visual Grid ---------- */
.hp-visual-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
}

.hp-image-panel {
  position: relative;
  border-radius: var(--radius-large);
  overflow: hidden;
  background: var(--color-mist);
  min-height: 520px;
  box-shadow: var(--shadow-sm);
}

.hp-image-panel__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hp-image-panel:hover .hp-image-panel__img {
  transform: scale(1.03);
}

.hp-image-caption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 22px 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  background: rgba(11, 38, 61, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-card);
  backdrop-filter: blur(14px);
  color: var(--color-white);
}

.hp-image-caption strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.hp-image-caption p {
  margin: 0;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.8);
}

.hp-mini-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-brand);
  color: var(--color-navy-dark);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.hp-mini-btn:hover {
  background: var(--color-signal);
  transform: scale(1.08);
}

.hp-principles {
  display: grid;
  gap: 16px;
}

.hp-principle-card {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 24px;
  background: var(--color-white);
  border: 1px solid var(--color-mist);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.hp-principle-card:hover {
  transform: translateY(-3px);
  border-color: rgba(85, 200, 58, 0.6);
  box-shadow: var(--shadow-md);
}

.hp-principle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--color-pale-green);
  color: var(--color-deep-green);
  font-size: 17px;
  font-weight: 800;
}

.hp-principle-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--color-ink);
}

.hp-principle-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-slate);
}

/* ---------- 4. Products & Card Components (1-Row Strip Layout) ---------- */
.hp-products-head {
  align-items: flex-start;
}

.hp-products-head__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 520px;
}

.hp-products-head__right .hp-section-desc {
  max-width: 100%;
}

.hp-view-all-link {
  font-size: 15px;
  color: var(--color-brand);
}

.hp-view-all-link:hover {
  color: var(--color-deep-green);
}

.hp-products-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.hp-product-strip-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid var(--color-mist);
  border-radius: var(--radius-card);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.hp-product-strip-card:hover {
  transform: translateY(-5px);
  border-color: rgba(85, 200, 58, 0.6);
  box-shadow: var(--shadow-md);
}

.hp-strip-stage {
  height: 190px;
  background: linear-gradient(180deg, #FBFDFB 0%, #F1F5F2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid var(--color-mist);
  overflow: hidden;
}

.hp-strip-bag {
  position: relative;
  width: 96px;
  height: 98px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hp-product-strip-card:hover .hp-strip-bag {
  transform: translateY(-3px) scale(1.04);
}

.hp-strip-body {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #FFFFFF 0%, #EDF1EC 100%);
  border: 1.5px solid #D6DCD3;
  border-radius: 6px 6px 14px 14px;
  box-shadow: 0 10px 22px rgba(11, 38, 61, 0.08);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hp-strip-loop {
  position: absolute;
  top: -28px;
  width: 26px;
  height: 38px;
  border: 4.5px solid #8B9894;
  border-bottom: none;
  border-radius: 12px 12px 0 0;
}

.hp-strip-loop--l {
  left: 6px;
}

.hp-strip-loop--r {
  right: 6px;
}

.hp-strip-loop--green {
  border-color: var(--color-brand);
}

/* Bag Types */
.hp-strip-body--baffle {
  overflow: hidden;
}

.hp-baffle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #CBD4C8;
}

.hp-baffle-line--1 {
  left: 25%;
}

.hp-baffle-line--2 {
  left: 50%;
}

.hp-baffle-line--3 {
  left: 75%;
}

.hp-un-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--color-navy-dark);
  font-size: 11px;
  font-weight: 800;
  color: var(--color-navy-dark);
  background: var(--color-white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.hp-strip-body--clean {
  background: linear-gradient(145deg, #FFFFFF 0%, #F5FAF4 100%);
  border-color: #BED8B7;
}

.hp-strip-body--vent {
  background: repeating-linear-gradient(90deg, #FFFFFF 0 6px, #E1E8DE 6px 9px);
  border-color: #AEC1AA;
}

.hp-strip-info {
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hp-strip-title {
  margin: 0 0 6px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--color-ink);
  line-height: 1.25;
}

.hp-strip-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--color-slate);
  flex: 1;
}

/* ---------- 5. Key Figures & Sustainability Card ---------- */
.hp-figures-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--color-white);
  border: 1px solid var(--color-mist);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.hp-commit-panel {
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 44px 40px;
  overflow: hidden;
}

.hp-commit-panel__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hp-commit-panel:hover .hp-commit-panel__bg {
  transform: scale(1.05);
}

.hp-commit-panel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 75, 62, 0.15) 0%, rgba(11, 38, 61, 0.88) 100%);
  pointer-events: none;
}

.hp-commit-panel__content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
}

.hp-commit-panel__tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
}

.hp-commit-panel__title {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--color-white);
}

.hp-commit-panel__text {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  max-width: 440px;
}

.hp-commit-panel__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.hp-commit-panel__cta:hover {
  opacity: 0.9;
}

.hp-commit-panel__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-navy-dark);
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.hp-commit-panel__cta:hover .hp-commit-panel__arrow {
  transform: translateX(4px);
  background: var(--color-brand);
  color: var(--color-navy-dark);
}

/* Right: Figures Panel */
.hp-figures-panel {
  padding: 44px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--color-white);
}

.hp-figures-panel__head {
  margin-bottom: 24px;
}

.hp-figures-panel__title {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--color-navy-dark);
}

.hp-stat-pills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 28px 0 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-mist);
}

.hp-stat-pill {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hp-stat-pill__circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid #A2D898;
  color: var(--color-brand);
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 16px;
  background: #F4FAF2;
}

.hp-stat-pill__value {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-brand);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.hp-stat-pill__desc {
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--color-slate);
}

.hp-certifications {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hp-certifications__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-brand);
}

.hp-certifications__logos {
  display: flex;
  align-items: center;
  gap: 36px;
}

.hp-cert-logo {
  font-size: 20px;
  font-weight: 850;
  letter-spacing: 0.03em;
}

.hp-cert-logo--dark {
  color: var(--color-navy-dark);
}

.hp-cert-logo--green {
  color: var(--color-brand);
}

/* ---------- 6. Applications (Exact Match to Design Reference) ---------- */
.hp-apps-strip {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: center;
}

.hp-apps-strip__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hp-apps-strip__title {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--color-navy-dark);
}

.hp-apps-strip__desc {
  margin: 0 0 20px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--color-slate);
}

.hp-apps-explore-link {
  font-size: 14px;
  color: var(--color-brand);
}

.hp-apps-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.hp-app-tile {
  display: block;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.hp-app-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.hp-app-tile__media {
  position: relative;
  width: 100%;
  padding-top: 120%;
  overflow: hidden;
  background: var(--color-soft);
}

.hp-app-tile__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hp-app-tile:hover .hp-app-tile__img {
  transform: scale(1.08);
}

.hp-app-tile__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 38, 61, 0.85) 100%);
  pointer-events: none;
}

.hp-app-tile__caption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-white);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Secondary 3-col card grid (used elsewhere if needed) */
.hp-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hp-card {
  background: var(--color-white);
  border: 1px solid var(--color-mist);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.hp-card:hover {
  transform: translateY(-5px);
  border-color: rgba(85, 200, 58, 0.7);
  box-shadow: var(--shadow-md);
}

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

.hp-card__title {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--color-ink);
}

.hp-card__text {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--color-slate);
  margin-bottom: 20px;
  flex: 1;
}

.hp-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-deep-green);
  text-decoration: none;
  transition: color 0.2s ease;
}

.hp-text-link:hover {
  color: var(--color-ink);
}

/* Bag Stage Visualizer (Pure CSS Art for FIBC) */
.hp-bag-stage {
  height: 230px;
  background: linear-gradient(145deg, #F8FAF9 0%, #E9EEEC 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-mist);
}

.hp-bag-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(11, 38, 61, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 38, 61, 0.04) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.7;
}

.hp-fibc-model {
  position: relative;
  width: 120px;
  height: 124px;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hp-card:hover .hp-fibc-model {
  transform: translateY(-4px) scale(1.04);
}

.hp-fibc-body {
  width: 100%;
  height: 100%;
  background: linear-gradient(115deg, #FFFFFF 0%, #E9EDE8 50%, #FAFBF9 100%);
  border: 2px solid #C5CDC2;
  border-radius: 6px 6px 14px 14px;
  box-shadow: 0 16px 28px rgba(11, 38, 61, 0.12);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hp-fibc-loop {
  position: absolute;
  top: -36px;
  width: 32px;
  height: 48px;
  border: 6px solid var(--color-deep-green);
  border-bottom: none;
  border-radius: 14px 14px 0 0;
}

.hp-fibc-loop--l {
  left: 6px;
}

.hp-fibc-loop--r {
  right: 6px;
}

.hp-fibc-loop--green {
  border-color: var(--color-brand);
}

.hp-fibc-loop--navy {
  border-color: var(--color-navy);
}

.hp-fibc-loop--wide {
  width: 40px;
  height: 42px;
  top: -30px;
}

.hp-fibc-seam {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  border-left: 1px dashed #A8B2A4;
}

.hp-fibc-tag {
  background: var(--color-white);
  border: 1px solid #D1D7CE;
  padding: 6px 8px;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--color-navy-dark);
  border-radius: 3px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Model Variations */
.hp-fibc-model--baffle {
  width: 136px;
}

.hp-fibc-body--baffle {
  border-radius: 3px 3px 10px 10px;
  background: linear-gradient(115deg, #FDFEFC 0%, #E2E8E0 100%);
}

.hp-fibc-seam--baffle {
  left: 33%;
  box-shadow: 44px 0 0 -1px #A8B2A4;
}

.hp-fibc-body--clean {
  background: linear-gradient(115deg, #FFFFFF 0%, #F0F4EF 100%);
  border-color: var(--color-brand);
}

.hp-fibc-body--vented {
  background: repeating-linear-gradient(90deg, #FAFBF8 0 8px, #D4DCD2 8px 12px);
  border-color: var(--color-deep-green);
}

.hp-fibc-model--skip {
  width: 155px;
  height: 100px;
  margin-top: 24px;
}

.hp-fibc-body--skip {
  border-radius: 4px 4px 12px 12px;
  background: linear-gradient(115deg, #64D24A 0%, var(--color-deep-green) 100%);
  border-color: var(--color-deep-green);
}

.hp-fibc-body--skip .hp-fibc-tag {
  background: var(--color-navy-dark);
  color: var(--color-signal);
  border-color: var(--color-navy-dark);
}

.hp-fibc-body--dewater {
  background: repeating-linear-gradient(0deg, #F8FAF6 0 4px, #C2CCC0 4px 6px);
  border-color: var(--color-navy);
}

.hp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.hp-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 650;
  background: var(--color-soft);
  color: var(--color-slate);
}

.hp-tag--green {
  background: var(--color-pale-green);
  color: var(--color-deep-green);
}

.hp-action-bar {
  margin-top: 48px;
  text-align: center;
}

/* ---------- 5. Risk Section (Why Buyers Choose QINFENG) ---------- */
.hp-risk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hp-risk-card {
  padding: 30px;
  background: var(--color-white);
  border: 1px solid var(--color-mist);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hp-risk-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.hp-risk-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #FFF4E5;
  color: var(--color-warning);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hp-risk-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--color-ink);
}

.hp-risk-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-slate);
}

/* ---------- 6. Applications Media Cards ---------- */
.hp-card--media .hp-card__media {
  height: 240px;
  overflow: hidden;
  background: var(--color-mist);
}

.hp-card--media .hp-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hp-card--media:hover .hp-card__img {
  transform: scale(1.05);
}

/* ---------- 7. Custom Manufacturing Mosaic ---------- */
.hp-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, 270px);
  gap: 20px;
}

.hp-mosaic-item {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--color-navy-dark);
}

.hp-mosaic-item--large {
  grid-row: 1 / 3;
}

.hp-mosaic-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hp-mosaic-item:hover .hp-mosaic-item__img {
  transform: scale(1.04);
}

.hp-mosaic-item::after {
  content: "";
  position: absolute;
  inset: 20% 0 0;
  background: linear-gradient(transparent, rgba(11, 38, 61, 0.92));
  pointer-events: none;
}

.hp-mosaic-item__content {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  color: var(--color-white);
}

.hp-mosaic-item__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-signal);
  margin-bottom: 6px;
}

.hp-mosaic-item__content h3 {
  font-size: 21px;
  margin-bottom: 6px;
  color: var(--color-white);
}

.hp-mosaic-item__content p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

/* ---------- 8. Technical Specification Review ---------- */
.hp-tech-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 60px;
  align-items: center;
}

.hp-checklist {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 20px;
}

.hp-checklist li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.hp-check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-brand);
  color: var(--color-navy-dark);
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.hp-checklist strong {
  display: block;
  font-size: 16px;
  color: var(--color-white);
  margin-bottom: 2px;
}

.hp-checklist p {
  margin: 0;
  font-size: 14px;
  color: var(--color-pale-blue-gray);
}

.hp-spec-card {
  background: var(--color-navy);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.hp-spec-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hp-spec-card__header h3 {
  font-size: 20px;
  margin-bottom: 4px;
  color: var(--color-white);
}

.hp-spec-card__header p {
  margin: 0;
  font-size: 13.5px;
  color: var(--color-pale-blue-gray);
}

.hp-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hp-badge--lime {
  background: rgba(212, 255, 0, 0.15);
  color: var(--color-signal);
  border: 1px solid rgba(212, 255, 0, 0.3);
}

.hp-spec-table {
  width: 100%;
  border-collapse: collapse;
}

.hp-spec-table th,
.hp-spec-table td {
  padding: 16px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  text-align: left;
}

.hp-spec-table tr:last-child th,
.hp-spec-table tr:last-child td {
  border-bottom: none;
}

.hp-spec-table th {
  width: 38%;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 12px;
}

.hp-spec-table td {
  color: var(--color-white);
}

/* ---------- 9. How We Work / Process ---------- */
.hp-process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.hp-process-grid::before {
  content: "";
  position: absolute;
  top: 26px;
  right: 12%;
  left: 12%;
  height: 2px;
  background: var(--color-mist);
  z-index: 1;
}

.hp-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.hp-step__num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--color-brand);
  color: var(--color-navy-dark);
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 6px solid var(--color-white);
  box-shadow: 0 0 0 1px var(--color-mist);
  margin-bottom: 24px;
  transition: transform 0.25s ease;
}

.hp-step:hover .hp-step__num {
  transform: scale(1.12);
}

.hp-step__content h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--color-ink);
}

.hp-step__content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-slate);
}

/* ---------- 10. Project Facts Bar ---------- */
.hp-proof-bar {
  background: var(--color-white);
  border-top: 1px solid var(--color-mist);
  border-bottom: 1px solid var(--color-mist);
}

.hp-proof-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hp-proof-bar__item {
  padding: 32px 28px;
  border-right: 1px solid var(--color-mist);
  display: flex;
  flex-direction: column;
}

.hp-proof-bar__item:last-child {
  border-right: none;
}

.hp-proof-bar__item strong {
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  line-height: 1.1;
  margin-bottom: 4px;
}

.hp-proof-bar__item span {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-slate);
}

/* ---------- 11. RFQ / Inquiry Stage ---------- */
.hp-rfq-stage {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}

.hp-rfq-copy {
  position: sticky;
  top: 32px;
}

.hp-rfq-tags {
  margin: 24px 0 32px;
}

.hp-rfq-help-box {
  padding: 24px;
  background: var(--color-white);
  border: 1px solid var(--color-mist);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
}

.hp-rfq-help-box h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--color-ink);
}

.hp-rfq-help-box p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--color-slate);
  margin-bottom: 14px;
}

.hp-rfq-card {
  background: var(--color-white);
  border: 1px solid var(--color-mist);
  border-radius: var(--radius-large);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-sm);
}

.hp-rfq-card__header {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-mist);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hp-rfq-step-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--color-pale-green);
  color: var(--color-deep-green);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
}

.hp-rfq-card__title {
  margin: 0;
  font-size: 20px;
  color: var(--color-ink);
}

/* ---------- 12. Buyer FAQ Accordion ---------- */
.hp-faq-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--color-mist);
}

.hp-faq-item {
  border-bottom: 1px solid var(--color-mist);
}

.hp-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  background: transparent;
  border: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-ink);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}

.hp-faq-trigger:hover,
.hp-faq-trigger:focus-visible {
  color: var(--color-deep-green);
}

.hp-faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-pale-green);
  color: var(--color-deep-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease;
}

.hp-faq-icon::before,
.hp-faq-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
}

.hp-faq-icon::before {
  width: 12px;
  height: 2px;
}

.hp-faq-icon::after {
  width: 2px;
  height: 12px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hp-faq-trigger[aria-expanded="true"] .hp-faq-icon::after {
  transform: rotate(90deg) scale(0);
}

.hp-faq-trigger[aria-expanded="true"] .hp-faq-icon {
  background: var(--color-brand);
  color: var(--color-navy-dark);
}

.hp-faq-panel {
  padding-bottom: 24px;
  color: var(--color-slate);
  font-size: 15.5px;
  line-height: 1.6;
}

.hp-faq-panel p {
  margin: 0;
  max-width: 820px;
}

/* ---------- 13. Closing High-Impact CTA Band ---------- */
.hp-cta-banner {
  position: relative;
  background: var(--color-navy-dark);
  border-radius: var(--radius-large);
  padding: 68px clamp(32px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.hp-cta-banner::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -150px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(212, 255, 0, 0.25);
  border-radius: 50%;
  box-shadow:
    0 0 0 44px rgba(212, 255, 0, 0.05),
    0 0 0 88px rgba(212, 255, 0, 0.025);
  pointer-events: none;
}

.hp-cta-banner__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hp-cta-banner__title {
  color: var(--color-white);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.hp-cta-banner__desc {
  color: var(--color-pale-blue-gray);
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}

.hp-cta-banner__action {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.hp-btn-signal {
  background: var(--color-signal);
  color: var(--color-navy-dark);
  border-color: var(--color-signal);
  box-shadow: 0 4px 20px rgba(212, 255, 0, 0.3);
  font-size: 16px;
  padding: 14px 28px;
  transition: all 0.25s ease;
}

.hp-btn-signal:hover,
.hp-btn-signal:focus-visible {
  background: var(--color-brand);
  border-color: var(--color-brand);
  color: var(--color-navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(85, 200, 58, 0.45);
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 1024px) {
  .hp-figures-card {
    grid-template-columns: 1fr;
  }
  .hp-commit-panel {
    min-height: 380px;
  }
  .hp-apps-strip {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hp-apps-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .hp-products-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .hp-products-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .hp-products-head__right {
    max-width: 100%;
  }
  .hp-intro-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hp-intro-cell:nth-child(2) {
    border-right: none;
  }
  .hp-intro-cell:nth-child(-n+2) {
    border-bottom: 1px solid var(--color-mist);
  }
  .hp-visual-grid,
  .hp-tech-grid,
  .hp-rfq-stage {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hp-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hp-risk-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hp-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .hp-mosaic-item--large {
    grid-row: auto;
    min-height: 380px;
  }
  .hp-mosaic-item {
    min-height: 240px;
  }
  .hp-process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
  .hp-process-grid::before {
    display: none;
  }
  .hp-proof-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hp-proof-bar__item:nth-child(2) {
    border-right: none;
  }
  .hp-proof-bar__item:nth-child(-n+2) {
    border-bottom: 1px solid var(--color-mist);
  }
  .hp-cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .hp-section {
    padding: 64px 0;
  }
  .hp-section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 36px;
  }
  .hp-hero {
    min-height: 740px;
  }
  .hp-hero__proof {
    position: static;
    margin-top: 36px;
    width: 100%;
    grid-template-columns: 1fr;
  }
  .hp-hero__proof-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
  .hp-hero__proof-item:last-child {
    border-bottom: none;
  }
  .hp-intro-grid {
    grid-template-columns: 1fr;
  }
  .hp-intro-cell {
    border-right: none;
    border-bottom: 1px solid var(--color-mist);
  }
  .hp-intro-cell:last-child {
    border-bottom: none;
  }
  .hp-stat-pills {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .hp-commit-panel {
    padding: 32px 24px;
    min-height: 320px;
  }
  .hp-figures-panel {
    padding: 32px 24px;
  }
  .hp-certifications__logos {
    gap: 20px;
    flex-wrap: wrap;
  }
  .hp-apps-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .hp-products-row,
  .hp-card-grid,
  .hp-risk-grid,
  .hp-process-grid,
  .hp-proof-bar__grid {
    grid-template-columns: 1fr;
  }
  .hp-proof-bar__item {
    border-right: none;
    border-bottom: 1px solid var(--color-mist);
  }
  .hp-proof-bar__item:last-child {
    border-bottom: none;
  }
  .hp-spec-table th,
  .hp-spec-table td {
    padding: 14px 18px;
  }
  .hp-rfq-card {
    padding: 24px 18px;
  }
}

/* ==========================================================================
   ABOUT PAGE STYLES (QINFENG Industrial B2B Standard)
   ========================================================================== */

.about-page {
  display: flex;
  flex-direction: column;
  background: var(--color-canvas);
  color: var(--color-ink);
  overflow-x: hidden;
}

.about-section {
  padding: 100px 0;
  position: relative;
}

.about-section--soft {
  background: var(--color-soft);
  border-top: 1px solid var(--color-mist);
  border-bottom: 1px solid var(--color-mist);
}

.about-section--white {
  background: var(--color-white);
}

.about-section--navy {
  background: var(--color-navy-dark);
  color: var(--color-white);
}

/* Section Head */
.about-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 54px;
}

.about-section-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-section-title {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--color-navy-dark);
}

.about-section--navy .about-section-title {
  color: var(--color-white);
}

.about-section-desc {
  max-width: 500px;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-slate);
}

.about-section--navy .about-section-desc {
  color: rgba(255, 255, 255, 0.8);
}

/* ---------- 1. Hero Section ---------- */
.about-hero {
  position: relative;
  background-color: var(--color-navy-dark);
  color: var(--color-white);
  padding: 90px 0 110px;
  overflow: hidden;
}

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

.about-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  transform: scale(1.03);
  animation: hpHeroZoom 24s ease-in-out infinite alternate;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 30%, rgba(18, 59, 93, 0.45) 0%, rgba(11, 38, 61, 0.94) 85%);
}

.about-hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.about-hero__breadcrumbs {
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.about-hero__breadcrumbs a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.about-hero__breadcrumbs a:hover {
  color: var(--color-signal);
}

.about-hero__breadcrumbs span {
  padding: 0 8px;
  color: rgba(255, 255, 255, 0.3);
}

.about-hero__title {
  margin: 0 0 20px;
  font-size: clamp(38px, 4.8vw, 56px);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--color-white);
}

.about-hero__lead {
  margin: 0 0 32px;
  font-size: clamp(16px, 1.8vw, 18.5px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
  max-width: 620px;
}

.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.about-hero__badge-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-hero__badge-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.about-hero__badge-num {
  font-size: clamp(34px, 4vw, 44px);
  font-weight: 850;
  line-height: 1;
  color: var(--color-signal);
  letter-spacing: -0.03em;
  min-width: 110px;
}

.about-hero__badge-info strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 3px;
}

.about-hero__badge-info span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

/* ---------- 2. Corporate Dossier Grid ---------- */
.about-dossier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-mist);
  border: 1px solid var(--color-mist);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.about-dossier-cell {
  background: var(--color-white);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 160px;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.about-dossier-cell:hover {
  background: #FAFDF9;
}

.about-dossier-cell__label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-slate);
  margin-bottom: 12px;
}

.about-dossier-cell__val {
  font-size: 18px;
  font-weight: 750;
  line-height: 1.35;
  color: var(--color-navy-dark);
}

.about-dossier-cell__sub {
  font-size: 13px;
  color: var(--color-slate);
  margin-top: 6px;
  font-weight: 500;
}

.about-dossier-cell--accent {
  background: #F4FAF2;
}

.about-dossier-cell--accent .about-dossier-cell__val {
  color: var(--color-deep-green);
}

/* ---------- 3. Story / Dual Pillars Split ---------- */
.about-story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-story-media {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-story-media__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-story-media:hover .about-story-media__img {
  transform: scale(1.04);
}

.about-story-media__card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(11, 38, 61, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  padding: 20px 24px;
  color: var(--color-white);
}

.about-story-media__card strong {
  display: block;
  font-size: 16px;
  font-weight: 750;
  color: var(--color-signal);
  margin-bottom: 4px;
}

.about-story-media__card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.about-story-content {
  display: flex;
  flex-direction: column;
}

.about-story-p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--color-slate);
  margin-bottom: 20px;
}

.about-story-points {
  margin: 16px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-story-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-story-point__dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-pale-green);
  color: var(--color-deep-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-story-point__text strong {
  display: block;
  font-size: 14.5px;
  font-weight: 750;
  color: var(--color-navy-dark);
}

.about-story-point__text span {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--color-slate);
}

/* ---------- 4. Business Scope & Strict Boundaries Matrix ---------- */
.about-scope-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.about-scope-card {
  padding: 40px;
  border-radius: var(--radius-card);
  background: var(--color-white);
  border: 1px solid var(--color-mist);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.about-scope-card--core {
  border-top: 4px solid var(--color-brand);
}

.about-scope-card--boundary {
  border-top: 4px solid #E67E22;
}

.about-scope-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 20px;
}

.about-scope-card--core .about-scope-card__badge {
  background: var(--color-pale-green);
  color: var(--color-deep-green);
}

.about-scope-card--boundary .about-scope-card__badge {
  background: #FDF2E9;
  color: #B95300;
}

.about-scope-card__title {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 800;
  color: var(--color-navy-dark);
  letter-spacing: -0.02em;
}

.about-scope-card__desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--color-slate);
  margin: 0 0 24px;
}

.about-scope-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-scope-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-ink);
}

.about-scope-item__icon {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  flex-shrink: 0;
}

.about-scope-card--core .about-scope-item__icon {
  color: var(--color-brand);
}

.about-scope-card--boundary .about-scope-item__icon {
  color: #E67E22;
}

/* ---------- 5. Milestones & History Timeline (Horizontal Track) ---------- */
.about-section-head--between {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
}

.about-timeline-ctrls {
  display: flex;
  align-items: center;
  gap: 24px;
}

.about-timeline-nav {
  display: flex;
  gap: 10px;
}

.about-timeline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-mist);
  background: var(--color-white);
  color: var(--color-navy-dark);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.about-timeline-btn:hover {
  background: var(--color-brand);
  border-color: var(--color-brand);
  color: var(--color-navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.about-timeline-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 10px;
  padding: 20px 0 30px;
}

.about-timeline-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--color-brand) var(--color-mist);
}

.about-timeline-track::-webkit-scrollbar {
  height: 6px;
}

.about-timeline-track::-webkit-scrollbar-track {
  background: var(--color-mist);
  border-radius: 999px;
}

.about-timeline-track::-webkit-scrollbar-thumb {
  background: var(--color-brand);
  border-radius: 999px;
}

.about-timeline-node {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
}

.about-timeline-node__axis {
  position: relative;
  height: 36px;
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.about-timeline-node__line {
  position: absolute;
  left: 0;
  right: -28px;
  height: 3px;
  background: var(--color-mist);
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.about-timeline-node:last-child .about-timeline-node__line {
  right: 50%;
}

.about-timeline-node__dot {
  position: relative;
  z-index: 2;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-white);
  border: 4px solid var(--color-brand);
  box-shadow: 0 0 0 4px rgba(85, 200, 58, 0.2);
  margin-left: 20px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.about-timeline-node:hover .about-timeline-node__dot {
  transform: scale(1.35);
  background: var(--color-brand);
}

.about-timeline-node__card {
  background: var(--color-white);
  border: 1px solid var(--color-mist);
  border-radius: 14px;
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-timeline-node:hover .about-timeline-node__card {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(85, 200, 58, 0.4);
}

.about-timeline-node__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.about-timeline-node__year {
  font-size: 22px;
  font-weight: 850;
  letter-spacing: -0.02em;
  color: var(--color-navy-dark);
}

.about-timeline-node__badge {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--color-brand);
  background: #F4FAF2;
  padding: 4px 8px;
  border-radius: 6px;
}

.about-timeline-node__badge--signal {
  color: var(--color-navy-dark);
  background: var(--color-signal);
}

.about-timeline-node__title {
  margin: 0 0 10px;
  font-size: 16.5px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--color-navy-dark);
}

.about-timeline-node__text {
  margin: 0 0 18px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--color-slate);
  flex-grow: 1;
}

.about-timeline-node__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px dashed var(--color-mist);
}

.about-timeline-node__meta span {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--color-slate);
  background: var(--color-soft);
  padding: 3px 8px;
  border-radius: 4px;
}

/* Highlight Present / Current Node */
.about-timeline-node--current .about-timeline-node__dot {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 5px rgba(212, 255, 0, 0.4);
  background: var(--color-signal);
}

.about-timeline-node--current .about-timeline-node__year {
  color: var(--color-deep-green);
}

/* ---------- 6. Inside QINFENG Photo Gallery Grid ---------- */
.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.about-gallery-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  background: var(--color-navy-dark);
}

.about-gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.about-gallery-media {
  position: relative;
  width: 100%;
  padding-top: 72%;
  overflow: hidden;
}

.about-gallery-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-gallery-card:hover .about-gallery-img {
  transform: scale(1.08);
}

.about-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 38, 61, 0.92) 100%);
  pointer-events: none;
}

.about-gallery-caption {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  z-index: 2;
  color: var(--color-white);
}

.about-gallery-caption strong {
  display: block;
  font-size: 15px;
  font-weight: 750;
  color: var(--color-white);
  margin-bottom: 2px;
}

.about-gallery-caption span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}

/* Responsive Breakpoints for About Page */
@media (max-width: 1024px) {
  .about-hero__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-hero__badge-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .about-hero__badge-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .about-dossier-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-story-split {
    grid-template-columns: 1fr;
  }
  .about-story-media__img {
    height: 380px;
  }
  .about-scope-grid {
    grid-template-columns: 1fr;
  }
  .about-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 64px 0;
  }
  .about-section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 36px;
  }
  .about-hero__badge-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-dossier-grid {
    grid-template-columns: 1fr;
  }
  .about-timeline-ctrls {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
  }
  .about-timeline-node {
    flex: 0 0 280px;
  }
  .about-gallery-grid {
    grid-template-columns: 1fr;
  }
  .about-cta-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 24px;
    gap: 28px;
  }
  .about-cta-card__actions {
    width: 100%;
    min-width: 100%;
  }
}

/* ---------- 7. Redesigned High-Impact Conversion Card (About Page) ---------- */
.about-cta-section {
  padding: 0 0 36px;
  background: var(--color-canvas);
}

.about-cta-card {
  position: relative;
  background: linear-gradient(135deg, #103352 0%, #0E2A43 55%, #091C2E 100%);
  border: 1px solid rgba(85, 200, 58, 0.22);
  border-radius: var(--radius-large);
  padding: 56px clamp(28px, 4.5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(11, 38, 61, 0.22);
}

/* Subtle background accent glow & geometric engineering arc */
.about-cta-card::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 255, 0, 0.12) 0%, rgba(85, 200, 58, 0.06) 45%, transparent 70%);
  pointer-events: none;
}

.about-cta-card::after {
  content: "";
  position: absolute;
  right: 180px;
  bottom: -180px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 40px rgba(255, 255, 255, 0.02);
  pointer-events: none;
}

.about-cta-card__content {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.about-cta-card__title {
  margin: 0 0 14px;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 850;
  line-height: 1.16;
  letter-spacing: -0.025em;
  color: #FFFFFF;
}

.about-cta-card__desc {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: #C6D6E4;
}

.about-cta-card__actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
  min-width: 270px;
}

/* High-contrast Signal Lime / Brand Green CTA Button */
.about-btn-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #D4FF00 0%, #55C83A 100%);
  color: #0B263D;
  font-size: 16px;
  font-weight: 850;
  letter-spacing: -0.01em;
  padding: 16px 28px;
  border-radius: var(--radius-button);
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(212, 255, 0, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.about-btn-quote:hover,
.about-btn-quote:focus-visible {
  background: linear-gradient(135deg, #E2FF4D 0%, #68E04C 100%);
  color: #0B263D;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(212, 255, 0, 0.55);
}

.about-btn-quote .hp-arrow {
  font-size: 18px;
  font-weight: 800;
  transition: transform 0.2s ease;
}

.about-btn-quote:hover .hp-arrow {
  transform: translateX(4px);
}

/* Clean White Secondary Button with Navy Text */
.about-btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  color: #0B263D;
  font-size: 14.5px;
  font-weight: 750;
  padding: 13px 24px;
  border-radius: var(--radius-button);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: all 0.25s ease;
}

.about-btn-contact:hover,
.about-btn-contact:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  color: #051523;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

/* Remove unwanted bottom gap before footer */
body.page-template-page-about .site-footer,
body.page-template-page-thank-you .site-footer,
body.page-template-page-contact .site-footer,
body.page-template-page-request-a-quote .site-footer,
body.page-template-page-manufacturing .site-footer,
body.page-template-page-export-shipping .site-footer {
  margin-top: 0;
}

/* ==========================================================================
   8. Thank You Page Experience (/thank-you/)
   ========================================================================== */

.ty-page {
  background: var(--color-canvas);
  min-height: 80vh;
  padding: clamp(36px, 5vw, 64px) 0 clamp(48px, 6vw, 80px);
}

.ty-container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Breadcrumbs in Thank you page */
.ty-breadcrumbs {
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--color-slate);
}

.ty-breadcrumbs a {
  color: var(--color-slate);
  text-decoration: none;
}

.ty-breadcrumbs a:hover {
  color: var(--color-navy);
}

/* Master Hero Card */
.ty-card {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  box-shadow: 0 16px 48px rgba(11, 38, 61, 0.08);
  overflow: hidden;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.ty-card__header {
  position: relative;
  background: linear-gradient(135deg, #0B263D 0%, #123B5D 60%, #0D4B3E 100%);
  padding: clamp(40px, 6vw, 64px) clamp(24px, 5vw, 56px);
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
}

/* Ambient dynamic backdrop glow */
.ty-card__header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(85, 200, 58, 0.22) 0%, rgba(212, 255, 0, 0.06) 50%, transparent 80%);
  pointer-events: none;
  animation: tyAmbientPulse 4s ease-in-out infinite alternate;
}

@keyframes tyAmbientPulse {
  0% { transform: translateX(-50%) scale(0.9); opacity: 0.7; }
  100% { transform: translateX(-50%) scale(1.15); opacity: 1; }
}

/* Animated Success Checkmark */
.ty-icon-wrapper {
  position: relative;
  z-index: 2;
  margin: 0 auto 24px;
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ty-icon-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(85, 200, 58, 0.6);
  animation: tyPulseRings 2.2s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

@keyframes tyPulseRings {
  0% { transform: scale(0.9); opacity: 0.9; }
  50% { transform: scale(1.18); opacity: 0.3; }
  100% { transform: scale(1.35); opacity: 0; }
}

.ty-icon-circle {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4FF00 0%, #55C83A 100%);
  box-shadow: 0 10px 28px rgba(85, 200, 58, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0B263D;
  animation: tyIconPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes tyIconPop {
  0% { transform: scale(0) rotate(-45deg); opacity: 0; }
  70% { transform: scale(1.15) rotate(8deg); }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.ty-icon-check {
  width: 42px;
  height: 42px;
  stroke: #0B263D;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.ty-card__title {
  position: relative;
  z-index: 2;
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--color-white);
  animation: tyFadeUp 0.6s ease 0.15s both;
}

.ty-card__subtitle {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  max-width: 680px;
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.6;
  color: #C8D8E6;
  animation: tyFadeUp 0.6s ease 0.25s both;
}

.ty-card__badge-row {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: #E2FF4D;
  animation: tyFadeUp 0.6s ease 0.35s both;
}

.ty-card__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #55C83A;
  box-shadow: 0 0 10px #55C83A;
  animation: tyDotPulse 1.6s ease-in-out infinite;
}

@keyframes tyDotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

@keyframes tyFadeUp {
  0% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Content Body: Timeline & What Happens Next */
.ty-card__body {
  padding: clamp(32px, 5vw, 56px) clamp(24px, 5vw, 56px);
}

.ty-steps-heading {
  margin: 0 0 28px;
  text-align: center;
}

.ty-steps-heading h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--color-navy-dark);
}

.ty-steps-heading p {
  margin: 0;
  font-size: 15px;
  color: var(--color-slate);
}

/* 4-Step Process Progress Pipeline */
.ty-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  margin-bottom: 40px;
}

.ty-step-item {
  position: relative;
  background: #F8FAFC;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 24px 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ty-step-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(11, 38, 61, 0.08);
  border-color: #B9D9B2;
}

.ty-step-item--active {
  background: #F2FAF0;
  border-color: #8FD87B;
  box-shadow: 0 8px 24px rgba(85, 200, 58, 0.15);
}

.ty-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.ty-step-item--active .ty-step-num {
  background: var(--color-brand);
  color: var(--color-navy-dark);
  box-shadow: 0 4px 12px rgba(85, 200, 58, 0.35);
}

.ty-step-time {
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--color-brand-deep);
  margin-bottom: 6px;
}

.ty-step-title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--color-navy-dark);
}

.ty-step-desc {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: #4A6375;
}

/* Direct Contacts Strip */
.ty-contacts-box {
  background: linear-gradient(135deg, #F4F8FA 0%, #EBF2F7 100%);
  border: 1px solid #D6E4ED;
  border-radius: var(--radius-card);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.ty-contacts-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ty-contacts-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ty-contacts-meta strong {
  display: block;
  font-size: 15px;
  color: var(--color-navy-dark);
  margin-bottom: 3px;
}

.ty-contacts-meta span {
  font-size: 13.5px;
  color: #556E80;
}

.ty-contacts-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.ty-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 750;
  color: var(--color-navy);
  text-decoration: none;
  padding: 10px 18px;
  background: var(--color-white);
  border: 1px solid #C4D7E5;
  border-radius: var(--radius-button);
  transition: all 0.2s ease;
}

.ty-contact-link:hover {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
  transform: translateY(-1px);
}

/* Secondary Exploration Navigation */
.ty-explore-wrap {
  margin-top: 40px;
}

.ty-explore-title {
  margin: 0 0 20px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--color-navy-dark);
  text-align: center;
}

.ty-explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ty-explore-card {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  overflow: hidden;
}

.ty-explore-card:hover {
  transform: translateY(-3px);
  border-color: #8FD87B;
  box-shadow: 0 12px 28px rgba(11, 38, 61, 0.09);
}

.ty-explore-card__tag {
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-brand-deep);
  margin-bottom: 8px;
}

.ty-explore-card__title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
  color: var(--color-navy-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ty-explore-card__title span {
  transition: transform 0.2s ease;
}

.ty-explore-card:hover .ty-explore-card__title span {
  transform: translateX(4px);
  color: var(--color-brand-deep);
}

.ty-explore-card__desc {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: #556E80;
}

/* ==========================================================================
   9. Contact Page Experience (/contact/)
   ========================================================================== */

.contact-page {
  background: var(--color-canvas);
}

/* Contact Hero Banner */
.contact-hero {
  position: relative;
  background: linear-gradient(135deg, #091F33 0%, #0F3250 55%, #0B4639 100%);
  color: var(--color-white);
  padding: clamp(48px, 6vw, 76px) 0 clamp(44px, 5.5vw, 68px);
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(85, 200, 58, 0.16) 0%, rgba(212, 255, 0, 0.05) 45%, transparent 70%);
  pointer-events: none;
}

.contact-hero__wrap {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.contact-hero__breadcrumbs {
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #A3C0D6;
}

.contact-hero__breadcrumbs a {
  color: #A3C0D6;
  text-decoration: none;
}

.contact-hero__breadcrumbs a:hover {
  color: var(--color-brand);
}

.contact-hero__title {
  margin: 0 0 16px;
  font-size: clamp(32px, 4.5vw, 50px);
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--color-white);
}

.contact-hero__lead {
  margin: 0;
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.6;
  color: #CFDFED;
}

/* 4 Quick Info Pills on Hero */
.contact-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 13.5px;
  color: #E2FF4D;
  font-weight: 600;
}

.contact-hero-pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #55C83A;
  box-shadow: 0 0 8px #55C83A;
}

/* Contact Main Section (Form Left, Info Sidebar Right) */
.contact-main-section {
  padding: clamp(48px, 6vw, 72px) 0 clamp(40px, 5vw, 64px);
}

.contact-grid-layout {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: clamp(32px, 4.5vw, 56px);
  align-items: start;
}

/* Inquiry Form Wrap Card */
.contact-form-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  padding: clamp(32px, 5vw, 48px);
  box-shadow: 0 16px 40px rgba(11, 38, 61, 0.06);
}

.contact-form-card__header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-mist);
}

.contact-form-card__title {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.8vw, 30px);
  font-weight: 850;
  letter-spacing: -0.02em;
  color: var(--color-navy-dark);
}

.contact-form-card__desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #556E80;
}

/* Form Styles Fine-Tuning in Contact Page */
.contact-form-card .inquiry-form {
  max-width: 100%;
}

.contact-form-card .inquiry-form__input {
  background: #F9FBFC;
  border: 1px solid #D1DFE8;
  border-radius: var(--radius-control);
  transition: all 0.2s ease;
}

.contact-form-card .inquiry-form__input:focus {
  background: var(--color-white);
  border-color: var(--color-deep-green);
  box-shadow: 0 0 0 3px rgba(85, 200, 58, 0.18);
  outline: none;
}

.contact-form-card .inquiry-form__actions .button {
  background: linear-gradient(135deg, #D4FF00 0%, #55C83A 100%);
  color: #0B263D;
  font-weight: 850;
  font-size: 16px;
  padding: 15px 36px;
  border: 1px solid rgba(13, 75, 62, 0.15);
  box-shadow: 0 8px 24px rgba(85, 200, 58, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-form-card .inquiry-form__actions .button:hover {
  background: linear-gradient(135deg, #E2FF4D 0%, #68E04C 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(85, 200, 58, 0.5);
}

/* Sidebar Channels & Location Cards */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-side-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  padding: 30px 28px;
  box-shadow: 0 12px 32px rgba(11, 38, 61, 0.05);
}

.contact-side-card--dark {
  background: linear-gradient(145deg, #0B263D 0%, #123B5D 100%);
  color: var(--color-white);
  border-color: rgba(85, 200, 58, 0.25);
  box-shadow: 0 16px 36px rgba(11, 38, 61, 0.18);
}

.contact-side-card__header {
  margin-bottom: 20px;
}

.contact-side-card__title {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--color-navy-dark);
}

.contact-side-card--dark .contact-side-card__title {
  color: var(--color-white);
}

.contact-side-card__desc {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: #556E80;
}

.contact-side-card--dark .contact-side-card__desc {
  color: #C3D5E4;
}

/* Direct Channels List in Dark Card */
.contact-channels-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-channel-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-channel-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.contact-channel-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4FF00;
  flex-shrink: 0;
}

.contact-channel-body strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #A4BECD;
  margin-bottom: 4px;
}

.contact-channel-body a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  word-break: break-all;
  transition: color 0.2s ease;
}

.contact-channel-body a:hover {
  color: #D4FF00;
}

.contact-channel-body p {
  margin: 0;
  font-size: 13px;
  color: #C3D5E4;
}

/* Plant & Office Location Badges */
.contact-location-item {
  position: relative;
  padding: 18px 20px;
  background: #F7FAFC;
  border: 1px solid #E2ECF2;
  border-radius: var(--radius-card);
  margin-bottom: 14px;
  transition: all 0.2s ease;
}

.contact-location-item:hover {
  background: #F0F6FA;
  border-color: #B4D1E5;
  transform: translateY(-2px);
}

.contact-location-item:last-child {
  margin-bottom: 0;
}

.contact-location-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-deep-green);
  background: #E4F5DF;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.contact-location-name {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 800;
  color: var(--color-navy-dark);
}

.contact-location-address {
  margin: 0 0 8px;
  font-size: 13.5px;
  line-height: 1.5;
  color: #4A6375;
}

.contact-location-meta {
  font-size: 12px;
  font-weight: 600;
  color: #64748B;
}

/* Service Guarantees Strip */
.contact-guarantees-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.contact-guarantee-box {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 6px 18px rgba(11, 38, 61, 0.04);
}

.contact-guarantee-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #EAF7E6;
  color: var(--color-deep-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-guarantee-title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 800;
  color: var(--color-navy-dark);
}

.contact-guarantee-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #556E80;
}

/* FAQ Strip in Contact Page */
.contact-faq-section {
  padding: clamp(48px, 6vw, 72px) 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
}

.contact-faq-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.contact-faq-head h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 850;
  letter-spacing: -0.02em;
  color: var(--color-navy-dark);
}

.contact-faq-head p {
  margin: 0;
  font-size: 15.5px;
  color: var(--color-slate);
}

.contact-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}

.contact-faq-card {
  background: #F8FAFC;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 26px 28px;
}

.contact-faq-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 800;
  color: var(--color-navy-dark);
}

.contact-faq-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #4A6375;
}

/* Responsive Rules for Contact */
@media (max-width: 1024px) {
  .contact-grid-layout {
    grid-template-columns: 1fr;
  }
  .contact-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-guarantees-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   10. Request a Quote (RFQ) Dedicated Experience (/request-a-quote/)
   ========================================================================== */

.rfq-page {
  background: var(--color-canvas);
}

/* 1. RFQ Hero Header */
.rfq-hero {
  position: relative;
  background: linear-gradient(135deg, #091F33 0%, #0F3250 50%, #0B4639 100%);
  color: var(--color-white);
  padding: clamp(52px, 6.5vw, 84px) 0 clamp(48px, 6vw, 76px);
  overflow: hidden;
}

.rfq-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 255, 0, 0.12) 0%, rgba(85, 200, 58, 0.08) 40%, transparent 70%);
  pointer-events: none;
}

.rfq-hero::after {
  content: "";
  position: absolute;
  left: 10%;
  bottom: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 59, 93, 0.4) 0%, transparent 70%);
  pointer-events: none;
}

.rfq-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.rfq-hero__breadcrumbs {
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #A3C0D6;
}

.rfq-hero__breadcrumbs a {
  color: #A3C0D6;
  text-decoration: none;
}

.rfq-hero__breadcrumbs a:hover {
  color: var(--color-brand);
}

.rfq-hero__title {
  margin: 0 0 16px;
  font-size: clamp(34px, 4.6vw, 52px);
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--color-white);
}

.rfq-hero__lead {
  margin: 0 0 28px;
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.6;
  color: #CFDFED;
  max-width: 660px;
}

.rfq-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.rfq-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 13.5px;
  color: #E2FF4D;
  font-weight: 600;
}

.rfq-hero-chip__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #55C83A;
  box-shadow: 0 0 8px #55C83A;
}

/* Hero Right: Direct Fast-Track Dossier Card */
.rfq-hero__dossier {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-large);
  padding: 28px 26px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.rfq-hero__dossier-header {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.rfq-hero__dossier-title {
  margin: 0 0 4px;
  font-size: 19px;
  font-weight: 800;
  color: #FFFFFF;
}

.rfq-hero__dossier-sub {
  margin: 0;
  font-size: 13px;
  color: #A8C2D5;
}

.rfq-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.rfq-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(85, 200, 58, 0.18);
  border: 1px solid rgba(85, 200, 58, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4FF00;
  flex-shrink: 0;
}

.rfq-contact-meta strong {
  display: block;
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #92B1C7;
  margin-bottom: 2px;
}

.rfq-contact-meta a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 16px;
  font-weight: 750;
  transition: color 0.2s ease;
}

.rfq-contact-meta a:hover {
  color: #D4FF00;
}

.rfq-contact-meta p {
  margin: 0;
  font-size: 13px;
  color: #E2EDF5;
  font-weight: 600;
}

.rfq-dossier-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 18px;
  background: linear-gradient(135deg, #D4FF00 0%, #55C83A 100%);
  color: #0B263D;
  font-size: 14px;
  font-weight: 800;
  border-radius: var(--radius-button);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(212, 255, 0, 0.28);
  transition: all 0.2s ease;
  margin-top: 6px;
}

.rfq-dossier-btn:hover {
  background: linear-gradient(135deg, #E2FF4D 0%, #68E04C 100%);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212, 255, 0, 0.45);
}

/* 2. Visual Spec Visualizer Cards (What to Prepare) */
.rfq-prep-section {
  padding: clamp(48px, 6vw, 72px) 0 32px;
}

.rfq-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.rfq-section-title {
  margin: 0 0 10px;
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 850;
  letter-spacing: -0.02em;
  color: var(--color-navy-dark);
}

.rfq-section-desc {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--color-slate);
}

.rfq-prep-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.rfq-prep-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(11, 38, 61, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.rfq-prep-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(11, 38, 61, 0.1);
  border-color: #A2D696;
}

.rfq-prep-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #0B263D;
  overflow: hidden;
}

.rfq-prep-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.rfq-prep-card:hover .rfq-prep-card__img {
  transform: scale(1.06);
}

.rfq-prep-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(11, 38, 61, 0.88);
  backdrop-filter: blur(4px);
  color: #D4FF00;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(212, 255, 0, 0.3);
}

.rfq-prep-card__body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.rfq-prep-card__title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
  color: var(--color-navy-dark);
}

.rfq-prep-card__text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: #556E80;
}

/* 3. Main Form & Dual Hub Section */
.rfq-main-section {
  padding: 24px 0 clamp(48px, 6vw, 72px);
}

.rfq-layout-grid {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: clamp(32px, 4.5vw, 56px);
  align-items: start;
}

.rfq-form-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  padding: clamp(32px, 5vw, 50px);
  box-shadow: 0 16px 44px rgba(11, 38, 61, 0.07);
}

.rfq-form-card__head {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-mist);
}

.rfq-form-card__title {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 850;
  letter-spacing: -0.02em;
  color: var(--color-navy-dark);
}

.rfq-form-card__lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #556E80;
}

.rfq-form-card .inquiry-form {
  max-width: 100%;
}

.rfq-form-card .inquiry-form__input {
  background: #F9FBFC;
  border: 1px solid #D1DFE8;
  border-radius: var(--radius-control);
  transition: all 0.2s ease;
}

.rfq-form-card .inquiry-form__input:focus {
  background: var(--color-white);
  border-color: var(--color-deep-green);
  box-shadow: 0 0 0 3px rgba(85, 200, 58, 0.18);
  outline: none;
}

.rfq-form-card .inquiry-form__actions .button {
  background: linear-gradient(135deg, #D4FF00 0%, #55C83A 100%);
  color: #0B263D;
  font-weight: 850;
  font-size: 16px;
  padding: 16px 40px;
  border: 1px solid rgba(13, 75, 62, 0.15);
  box-shadow: 0 8px 24px rgba(85, 200, 58, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.rfq-form-card .inquiry-form__actions .button:hover {
  background: linear-gradient(135deg, #E2FF4D 0%, #68E04C 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(85, 200, 58, 0.5);
}

/* Sidebar in RFQ page */
.rfq-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rfq-side-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  padding: 30px 28px;
  box-shadow: 0 12px 32px rgba(11, 38, 61, 0.05);
}

.rfq-side-card--hub {
  background: linear-gradient(145deg, #0B263D 0%, #123B5D 100%);
  color: var(--color-white);
  border-color: rgba(85, 200, 58, 0.25);
  box-shadow: 0 16px 36px rgba(11, 38, 61, 0.18);
}

.rfq-side-card__head {
  margin-bottom: 20px;
}

.rfq-side-card__title {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--color-navy-dark);
}

.rfq-side-card--hub .rfq-side-card__title {
  color: #FFFFFF;
}

.rfq-side-card__desc {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: #556E80;
}

.rfq-side-card--hub .rfq-side-card__desc {
  color: #C3D5E4;
}

.rfq-hub-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-card);
  padding: 16px 18px;
  margin-bottom: 14px;
}

.rfq-hub-badge:last-child {
  margin-bottom: 0;
}

.rfq-hub-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #D4FF00;
  background: rgba(212, 255, 0, 0.12);
  padding: 2px 7px;
  border-radius: 4px;
  margin-bottom: 6px;
}

.rfq-hub-name {
  margin: 0 0 4px;
  font-size: 15.5px;
  font-weight: 800;
  color: #FFFFFF;
}

.rfq-hub-loc {
  margin: 0 0 6px;
  font-size: 13px;
  color: #C8D8E6;
}

.rfq-hub-detail {
  font-size: 12px;
  color: #94ABC0;
  line-height: 1.45;
}

/* Response Timeframe Box */
.rfq-timeline-box {
  background: #F8FAFC;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 24px 22px;
}

.rfq-timeline-box h4 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 800;
  color: var(--color-navy-dark);
}

.rfq-time-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 13.5px;
}

.rfq-time-step:last-child {
  margin-bottom: 0;
}

.rfq-time-step__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #E4F5DF;
  color: var(--color-deep-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

.rfq-time-step__body strong {
  display: block;
  color: var(--color-navy-dark);
  margin-bottom: 2px;
}

.rfq-time-step__body span {
  color: #556E80;
  line-height: 1.45;
}

/* 4. Enterprise Quality & Testing Banner (Blue Background + Bright Green Button) */
.rfq-quality-banner {
  position: relative;
  background: linear-gradient(135deg, #103352 0%, #0E2A43 55%, #091C2E 100%);
  border: 1px solid rgba(85, 200, 58, 0.25);
  border-radius: var(--radius-large);
  padding: 44px clamp(28px, 4vw, 52px);
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(11, 38, 61, 0.18);
}

.rfq-quality-banner::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 255, 0, 0.14) 0%, rgba(85, 200, 58, 0.06) 45%, transparent 70%);
  pointer-events: none;
}

.rfq-quality-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.rfq-quality-title {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 850;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.rfq-quality-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #C6D6E4;
}

.rfq-quality-action {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

/* Bright Green & Signal Lime High-Contrast Button */
.rfq-quality-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #D4FF00 0%, #55C83A 100%);
  color: #0B263D;
  font-size: 15.5px;
  font-weight: 850;
  letter-spacing: -0.01em;
  padding: 16px 30px;
  border-radius: var(--radius-button);
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(212, 255, 0, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}

.rfq-quality-btn:hover,
.rfq-quality-btn:focus-visible {
  background: linear-gradient(135deg, #E2FF4D 0%, #68E04C 100%);
  color: #0B263D;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(212, 255, 0, 0.55);
}

.rfq-quality-btn .hp-arrow {
  font-size: 17px;
  font-weight: 800;
  transition: transform 0.2s ease;
}

.rfq-quality-btn:hover .hp-arrow {
  transform: translateX(4px);
}

/* Responsive RFQ */
@media (max-width: 1024px) {
  .rfq-hero__inner {
    grid-template-columns: 1fr;
  }
  .rfq-prep-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rfq-layout-grid {
    grid-template-columns: 1fr;
  }
  .rfq-sidebar {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
  }
  .rfq-quality-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   11. Manufacturing Page Experience (/manufacturing/)
   ========================================================================== */

.mfg-page {
  background: var(--color-canvas);
}

/* 1. Manufacturing Hero */
.mfg-hero {
  position: relative;
  background: linear-gradient(135deg, #091F33 0%, #0E2E4A 55%, #0B4639 100%);
  color: var(--color-white);
  padding: clamp(54px, 7vw, 90px) 0 clamp(52px, 6.5vw, 84px);
  overflow: hidden;
}

.mfg-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 255, 0, 0.12) 0%, rgba(85, 200, 58, 0.06) 45%, transparent 70%);
  pointer-events: none;
}

.mfg-hero::after {
  content: "";
  position: absolute;
  left: -100px;
  bottom: -150px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 59, 93, 0.45) 0%, transparent 70%);
  pointer-events: none;
}

.mfg-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(36px, 5vw, 68px);
  align-items: center;
}

.mfg-hero__breadcrumbs {
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #A3C0D6;
}

.mfg-hero__breadcrumbs a {
  color: #A3C0D6;
  text-decoration: none;
}

.mfg-hero__breadcrumbs a:hover {
  color: var(--color-brand);
}

.mfg-hero__title {
  margin: 0 0 18px;
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--color-white);
}

.mfg-hero__lead {
  margin: 0 0 28px;
  font-size: clamp(16px, 1.8vw, 18.5px);
  line-height: 1.6;
  color: #CFDFED;
  max-width: 650px;
}

.mfg-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mfg-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 13.5px;
  color: #E2FF4D;
  font-weight: 600;
}

.mfg-hero-chip__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #55C83A;
  box-shadow: 0 0 8px #55C83A;
}

/* Hero Right: Facility Quick Stats Dossier */
.mfg-hero__dossier {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-large);
  padding: 32px 28px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.mfg-hero__dossier-head {
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mfg-hero__dossier-title {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
}

.mfg-hero__dossier-sub {
  margin: 0;
  font-size: 13px;
  color: #A8C2D5;
}

.mfg-stat-capsules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 22px;
}

.mfg-stat-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-card);
  padding: 14px 16px;
}

.mfg-stat-box__val {
  font-size: 24px;
  font-weight: 850;
  color: #D4FF00;
  line-height: 1.1;
  margin-bottom: 4px;
}

.mfg-stat-box__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #BACDD9;
}

.mfg-hero__dossier-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mfg-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 20px;
  background: linear-gradient(135deg, #D4FF00 0%, #55C83A 100%);
  color: #0B263D;
  font-size: 14.5px;
  font-weight: 850;
  border-radius: var(--radius-button);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(212, 255, 0, 0.3);
  transition: all 0.2s ease;
}

.mfg-hero-btn-primary:hover {
  background: linear-gradient(135deg, #E2FF4D 0%, #68E04C 100%);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212, 255, 0, 0.45);
}

.mfg-hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-button);
  text-decoration: none;
  transition: all 0.2s ease;
}

.mfg-hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
}

/* 2. Visual Facility Photo Gallery Strip */
.mfg-gallery-section {
  padding: clamp(48px, 6vw, 72px) 0 32px;
}

.mfg-section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.mfg-section-title {
  margin: 0 0 10px;
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 850;
  letter-spacing: -0.02em;
  color: var(--color-navy-dark);
}

.mfg-section-desc {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--color-slate);
}

.mfg-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mfg-gallery-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(11, 38, 61, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mfg-gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(11, 38, 61, 0.1);
  border-color: #A2D696;
}

.mfg-gallery-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #0B263D;
  overflow: hidden;
}

.mfg-gallery-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.mfg-gallery-card:hover .mfg-gallery-card__img {
  transform: scale(1.06);
}

.mfg-gallery-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(11, 38, 61, 0.9);
  backdrop-filter: blur(4px);
  color: #D4FF00;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(212, 255, 0, 0.35);
}

.mfg-gallery-card__body {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.mfg-gallery-card__title {
  margin: 0 0 6px;
  font-size: 17.5px;
  font-weight: 800;
  color: var(--color-navy-dark);
}

.mfg-gallery-card__text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: #556E80;
}

/* 3. Interactive Step-by-Step Production Chain */
.mfg-process-section {
  padding: 32px 0 clamp(48px, 6vw, 72px);
}

.mfg-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mfg-process-card {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 26px 22px;
  box-shadow: 0 8px 24px rgba(11, 38, 61, 0.04);
  transition: all 0.25s ease;
}

.mfg-process-card:hover {
  border-color: #55C83A;
  box-shadow: 0 12px 32px rgba(85, 200, 58, 0.12);
  transform: translateY(-3px);
}

.mfg-process-card__num {
  font-size: 28px;
  font-weight: 900;
  color: #55C83A;
  opacity: 0.85;
  line-height: 1;
  margin-bottom: 12px;
  font-family: inherit;
}

.mfg-process-card__title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
  color: var(--color-navy-dark);
}

.mfg-process-card__text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: #556E80;
}

/* 4. Manufacturing Capability Matrix Section */
.mfg-matrix-section {
  padding: 32px 0 clamp(48px, 6vw, 76px);
  background: #FFFFFF;
  border-top: 1px solid var(--color-mist);
  border-bottom: 1px solid var(--color-mist);
}

.mfg-matrix-container {
  overflow-x: auto;
  border-radius: var(--radius-large);
  border: 1px solid var(--color-border);
  box-shadow: 0 12px 36px rgba(11, 38, 61, 0.05);
}

.mfg-matrix-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
  min-width: 900px;
}

.mfg-matrix-table thead th {
  background: linear-gradient(135deg, #0B263D 0%, #123B5D 100%);
  color: #FFFFFF;
  padding: 16px 20px;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  border-bottom: 2px solid #55C83A;
}

.mfg-matrix-table tbody tr {
  border-bottom: 1px solid var(--color-mist);
  transition: background-color 0.15s ease;
}

.mfg-matrix-table tbody tr:hover {
  background-color: #F8FBF8;
}

.mfg-matrix-table tbody td {
  padding: 16px 20px;
  color: #3B5263;
  line-height: 1.5;
  vertical-align: top;
}

.mfg-matrix-table tbody tr:last-child {
  border-bottom: none;
}

.mfg-tag-inhouse {
  display: inline-block;
  background: #E8F7E4;
  color: var(--color-deep-green);
  border: 1px solid #B8E4AF;
  font-size: 11.5px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.mfg-tag-external {
  display: inline-block;
  background: #EFF4F9;
  color: var(--color-navy);
  border: 1px solid #CDDEEE;
  font-size: 11.5px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

/* 5. Production Philosophy & Boundary Cards */
.mfg-philosophy-section {
  padding: clamp(48px, 6vw, 76px) 0;
}

.mfg-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.mfg-principle-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  padding: 36px 32px;
  box-shadow: 0 12px 32px rgba(11, 38, 61, 0.05);
}

.mfg-principle-card--green {
  border-top: 4px solid #55C83A;
}

.mfg-principle-card--slate {
  border-top: 4px solid var(--color-navy);
}

.mfg-principle-title {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 850;
  color: var(--color-navy-dark);
}

.mfg-principle-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mfg-principle-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.55;
  color: #4A6375;
}

.mfg-principle-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.mfg-principle-icon--check {
  background: #E8F7E4;
  color: var(--color-deep-green);
}

.mfg-principle-icon--notice {
  background: #EFF4F9;
  color: var(--color-navy);
}

/* 6. Manufacturing Bottom CTA Banner (Blue Background + Bright Green Button) */
.mfg-cta-section {
  padding: 0 0 clamp(48px, 6vw, 72px);
}

.mfg-cta-card {
  position: relative;
  background: linear-gradient(135deg, #103352 0%, #0E2A43 55%, #091C2E 100%);
  border: 1px solid rgba(85, 200, 58, 0.25);
  border-radius: var(--radius-large);
  padding: 48px clamp(28px, 4.5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(11, 38, 61, 0.2);
}

.mfg-cta-card::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 255, 0, 0.14) 0%, rgba(85, 200, 58, 0.06) 45%, transparent 70%);
  pointer-events: none;
}

.mfg-cta-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.mfg-cta-title {
  margin: 0 0 12px;
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 850;
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.mfg-cta-desc {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: #C6D6E4;
}

.mfg-cta-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  min-width: 250px;
}

.mfg-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #D4FF00 0%, #55C83A 100%);
  color: #0B263D;
  font-size: 15.5px;
  font-weight: 850;
  letter-spacing: -0.01em;
  padding: 16px 28px;
  border-radius: var(--radius-button);
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(212, 255, 0, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}

.mfg-btn-primary:hover,
.mfg-btn-primary:focus-visible {
  background: linear-gradient(135deg, #E2FF4D 0%, #68E04C 100%);
  color: #0B263D;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(212, 255, 0, 0.55);
}

.mfg-btn-primary .hp-arrow {
  font-size: 17px;
  font-weight: 800;
  transition: transform 0.2s ease;
}

.mfg-btn-primary:hover .hp-arrow {
  transform: translateX(4px);
}

.mfg-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  color: #0B263D;
  font-size: 14.5px;
  font-weight: 750;
  padding: 13px 24px;
  border-radius: var(--radius-button);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease;
}

.mfg-btn-secondary:hover {
  background: #F0F5FA;
}

/* Responsive Manufacturing */
@media (max-width: 1024px) {
  .mfg-hero__inner {
    grid-template-columns: 1fr;
  }
  .mfg-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mfg-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mfg-split-grid {
    grid-template-columns: 1fr;
  }
  .mfg-cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   12. Export & Shipping Support Page Experience (/export-shipping/)
   ========================================================================== */

.ship-page {
  background: var(--color-canvas);
}

/* 1. Hero Header */
.ship-hero {
  position: relative;
  background: linear-gradient(135deg, #091F33 0%, #0E2E4A 55%, #0B4639 100%);
  color: var(--color-white);
  padding: clamp(54px, 7vw, 90px) 0 clamp(52px, 6.5vw, 84px);
  overflow: hidden;
}

.ship-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 255, 0, 0.12) 0%, rgba(85, 200, 58, 0.06) 45%, transparent 70%);
  pointer-events: none;
}

.ship-hero::after {
  content: "";
  position: absolute;
  left: -100px;
  bottom: -150px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 59, 93, 0.45) 0%, transparent 70%);
  pointer-events: none;
}

.ship-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(36px, 5vw, 68px);
  align-items: center;
}

.ship-hero__breadcrumbs {
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #A3C0D6;
}

.ship-hero__breadcrumbs a {
  color: #A3C0D6;
  text-decoration: none;
}

.ship-hero__breadcrumbs a:hover {
  color: var(--color-brand);
}

.ship-hero__title {
  margin: 0 0 18px;
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--color-white);
}

.ship-hero__lead {
  margin: 0 0 28px;
  font-size: clamp(16px, 1.8vw, 18.5px);
  line-height: 1.6;
  color: #CFDFED;
  max-width: 650px;
}

.ship-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ship-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 13.5px;
  color: #E2FF4D;
  font-weight: 600;
}

.ship-hero-chip__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #55C83A;
  box-shadow: 0 0 8px #55C83A;
}

/* Hero Right: Port Dispatch Card */
.ship-hero__dossier {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-large);
  padding: 32px 28px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.ship-hero__dossier-head {
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ship-hero__dossier-title {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
}

.ship-hero__dossier-sub {
  margin: 0;
  font-size: 13px;
  color: #A8C2D5;
}

.ship-stat-capsules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 22px;
}

.ship-stat-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-card);
  padding: 14px 16px;
}

.ship-stat-box__val {
  font-size: 24px;
  font-weight: 850;
  color: #D4FF00;
  line-height: 1.1;
  margin-bottom: 4px;
}

.ship-stat-box__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #BACDD9;
}

.ship-hero__dossier-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ship-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 20px;
  background: linear-gradient(135deg, #D4FF00 0%, #55C83A 100%);
  color: #0B263D;
  font-size: 14.5px;
  font-weight: 850;
  border-radius: var(--radius-button);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(212, 255, 0, 0.3);
  transition: all 0.2s ease;
}

.ship-hero-btn-primary:hover {
  background: linear-gradient(135deg, #E2FF4D 0%, #68E04C 100%);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212, 255, 0, 0.45);
}

.ship-hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-button);
  text-decoration: none;
  transition: all 0.2s ease;
}

.ship-hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
}

/* 2. Global Ocean Freight & Shipping Partners Bar */
.ship-partners-section {
  padding: 24px 0 32px;
  border-bottom: 1px solid var(--color-mist);
}

.ship-partners-head {
  text-align: center;
  margin-bottom: 18px;
}

.ship-partners-head span {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #7A93A6;
}

.ship-carriers-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px clamp(16px, 3.5vw, 36px);
}

.ship-carrier-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-white);
  border: 1px solid #D8E5EF;
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 750;
  color: var(--color-navy);
  box-shadow: 0 2px 8px rgba(11, 38, 61, 0.04);
}

.ship-carrier-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #55C83A;
}

/* 3. Transport Modes (Air, Sea, Railway, Express) */
.ship-modes-section {
  padding: clamp(48px, 6vw, 76px) 0 36px;
}

.ship-section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.ship-section-title {
  margin: 0 0 10px;
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 850;
  letter-spacing: -0.02em;
  color: var(--color-navy-dark);
}

.ship-section-desc {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--color-slate);
}

.ship-modes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ship-mode-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(11, 38, 61, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ship-mode-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(11, 38, 61, 0.1);
  border-color: #A2D696;
}

.ship-mode-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #0B263D;
  overflow: hidden;
}

.ship-mode-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ship-mode-card:hover .ship-mode-card__img {
  transform: scale(1.06);
}

.ship-mode-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(11, 38, 61, 0.9);
  backdrop-filter: blur(4px);
  color: #D4FF00;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(212, 255, 0, 0.35);
}

.ship-mode-card__time {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  color: var(--color-navy-dark);
  font-size: 11.5px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ship-mode-card__body {
  padding: 22px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ship-mode-card__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  color: var(--color-navy-dark);
}

.ship-mode-card__desc {
  margin: 0 0 16px;
  font-size: 13.5px;
  line-height: 1.55;
  color: #556E80;
  flex-grow: 1;
}

.ship-mode-card__specs {
  border-top: 1px solid var(--color-mist);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ship-spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
}

.ship-spec-row span {
  color: #728A9C;
}

.ship-spec-row strong {
  color: var(--color-navy-dark);
}

/* 4. Shipping & Cargo Consolidation Services (Courier vs Port vs Door) */
.ship-consolidation-section {
  padding: 36px 0 clamp(48px, 6vw, 76px);
}

.ship-consol-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
}

.ship-consol-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  padding: 36px 32px;
  box-shadow: 0 12px 32px rgba(11, 38, 61, 0.05);
}

.ship-consol-title {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 850;
  color: var(--color-navy-dark);
}

.ship-consol-p {
  margin: 0 0 20px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #556E80;
}

.ship-courier-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.ship-courier-box {
  background: #F8FAFC;
  border: 1px solid #DFE7EF;
  border-radius: var(--radius-card);
  padding: 16px 14px;
  text-align: center;
}

.ship-courier-box__num {
  font-size: 18px;
  font-weight: 850;
  color: var(--color-deep-green);
  margin-bottom: 4px;
}

.ship-courier-box__label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--color-navy-dark);
  margin-bottom: 4px;
}

.ship-courier-box__desc {
  font-size: 11px;
  color: #728A9C;
  line-height: 1.4;
}

/* Right Media Card */
.ship-consol-media {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(11, 38, 61, 0.05);
}

.ship-consol-media__wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #0B263D;
  overflow: hidden;
}

.ship-consol-media__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ship-consol-media:hover .ship-consol-media__img {
  transform: scale(1.05);
}

.ship-consol-media__caption {
  padding: 20px 22px;
}

.ship-consol-media__caption h4 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 800;
  color: var(--color-navy-dark);
}

.ship-consol-media__caption p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #556E80;
}

/* 5. Shipping Responsibility Matrix Table (Incoterms 2020) */
.ship-matrix-section {
  padding: 36px 0 clamp(48px, 6vw, 76px);
  background: #FFFFFF;
  border-top: 1px solid var(--color-mist);
  border-bottom: 1px solid var(--color-mist);
}

.ship-matrix-container {
  overflow-x: auto;
  border-radius: var(--radius-large);
  border: 1px solid var(--color-border);
  box-shadow: 0 12px 36px rgba(11, 38, 61, 0.05);
}

.ship-matrix-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13.5px;
  min-width: 860px;
}

.ship-matrix-table thead th {
  background: linear-gradient(135deg, #0B263D 0%, #123B5D 100%);
  color: #FFFFFF;
  padding: 16px 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  border-bottom: 2px solid #55C83A;
  text-align: center;
}

.ship-matrix-table thead th:first-child {
  text-align: left;
  width: 30%;
}

.ship-matrix-table tbody tr {
  border-bottom: 1px solid var(--color-mist);
  transition: background-color 0.15s ease;
}

.ship-matrix-table tbody tr:hover {
  background-color: #F8FBF8;
}

.ship-matrix-table tbody td {
  padding: 14px 18px;
  color: #3B5263;
  text-align: center;
  vertical-align: middle;
}

.ship-matrix-table tbody td:first-child {
  text-align: left;
  font-weight: 700;
  color: var(--color-navy-dark);
}

.ship-matrix-table tbody tr:last-child {
  border-bottom: none;
}

.ship-matrix-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.ship-matrix-pill--seller {
  background: #E8F7E4;
  color: var(--color-deep-green);
  border: 1px solid #B8E4AF;
}

.ship-matrix-pill--buyer {
  background: #EFF4F9;
  color: var(--color-navy);
  border: 1px solid #CDDEEE;
}

/* 6. Export Documentation Checklist */
.ship-docs-section {
  padding: clamp(48px, 6vw, 76px) 0 36px;
}

.ship-docs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ship-doc-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 24px 20px;
  box-shadow: 0 8px 22px rgba(11, 38, 61, 0.04);
  transition: all 0.25s ease;
}

.ship-doc-card:hover {
  border-color: #55C83A;
  box-shadow: 0 12px 30px rgba(85, 200, 58, 0.12);
  transform: translateY(-3px);
}

.ship-doc-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #E8F7E4;
  color: var(--color-deep-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.ship-doc-title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 800;
  color: var(--color-navy-dark);
}

.ship-doc-desc {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: #556E80;
}

/* 7. Bottom CTA Banner (Deep Blue + Bright Green Button) */
.ship-cta-section {
  padding: 0 0 clamp(48px, 6vw, 72px);
}

.ship-cta-card {
  position: relative;
  background: linear-gradient(135deg, #103352 0%, #0E2A43 55%, #091C2E 100%);
  border: 1px solid rgba(85, 200, 58, 0.25);
  border-radius: var(--radius-large);
  padding: 48px clamp(28px, 4.5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(11, 38, 61, 0.2);
}

.ship-cta-card::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 255, 0, 0.14) 0%, rgba(85, 200, 58, 0.06) 45%, transparent 70%);
  pointer-events: none;
}

.ship-cta-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.ship-cta-title {
  margin: 0 0 12px;
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 850;
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.ship-cta-desc {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: #C6D6E4;
}

.ship-cta-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  min-width: 250px;
}

.ship-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #D4FF00 0%, #55C83A 100%);
  color: #0B263D;
  font-size: 15.5px;
  font-weight: 850;
  letter-spacing: -0.01em;
  padding: 16px 28px;
  border-radius: var(--radius-button);
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(212, 255, 0, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}

.ship-btn-primary:hover,
.ship-btn-primary:focus-visible {
  background: linear-gradient(135deg, #E2FF4D 0%, #68E04C 100%);
  color: #0B263D;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(212, 255, 0, 0.55);
}

.ship-btn-primary .hp-arrow {
  font-size: 17px;
  font-weight: 800;
  transition: transform 0.2s ease;
}

.ship-btn-primary:hover .hp-arrow {
  transform: translateX(4px);
}

.ship-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  color: #0B263D;
  font-size: 14.5px;
  font-weight: 750;
  padding: 13px 24px;
  border-radius: var(--radius-button);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease;
}

.ship-btn-secondary:hover {
  background: #F0F5FA;
}

/* Responsive Export Shipping */
@media (max-width: 1024px) {
  .ship-hero__inner {
    grid-template-columns: 1fr;
  }
  .ship-modes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ship-consol-grid {
    grid-template-columns: 1fr;
  }
  .ship-docs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ship-cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .ship-modes-grid {
    grid-template-columns: 1fr;
  }
  .ship-docs-grid {
    grid-template-columns: 1fr;
  }
  .ship-courier-features {
    grid-template-columns: 1fr;
  }
  .ship-stat-capsules {
    grid-template-columns: 1fr;
  }
  .ship-cta-actions {
    width: 100%;
  }
}





