/* ===== JETOR Aerotech — Exact Clone of jetor.pro ===== */

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #000;
  color: #fff;
  font-family: 'Fahkwang', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--orange); }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

/* ===== CSS Variables (exact from jetor.pro) ===== */
:root {
  --black:   #000000;
  --white:   #ffffff;
  --orange:  #EF7F13;
  --cyan:    #00E8DA;

  /* font scale from wix */
  --f0:  84px; /* display hero */
  --f2:  62px; /* h2 large */
  --f3:  42px; /* h3 */
  --f4:  31px; /* h4 */
  --f5:  22px; /* h5 */
  --f6:  17px;
  --f7:  15px; /* body */
  --f8:  13px;

  --lh-tight: 1em;
  --lh-normal: 1.4em;

  /* instock table */
  --table-header-bg: #EF7F13;
  --table-row-bg:    #1c1c1c;
  --table-alt-bg:    #161616;
  --table-border:    #2a2a2a;
}

/* ===== Page Transition ===== */
.page-overlay {
  position: fixed; inset: 0;
  background: #000;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.page-overlay.active { opacity: 1; pointer-events: all; }

/* ===== NAVIGATION ===== */
/* Exact jetor.pro nav: centered links with постоянным фоном */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 60px;
  height: 70px;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(10px);
}
.site-nav.has-bg {
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(10px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 70px;
}
.nav-links a {
  font-family: inherit;
  font-size: var(--f7); /* 15px */
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #fff;
  transition: color 0.2s ease;
  white-space: nowrap;
  position: relative;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a.active { color: var(--orange); }

.nav-hamburger {
  display: none;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 101;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1px; background: #fff;
  transition: all 0.3s ease;
}

.mobile-nav {
  display: none;
  position: fixed; inset: 0;
  background: #000;
  z-index: 98;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav.open { display: flex; opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-size: 32px;
  font-weight: 400;
  color: #fff;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--orange); }

/* ===== Scroll Reveal ===== */
.sr {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sr.visible { opacity: 1; transform: none; }
.sr-left { opacity: 0; transform: translateX(-40px);
  transition: opacity 0.9s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94); }
.sr-left.visible { opacity: 1; transform: none; }
.sr-right { opacity: 0; transform: translateX(40px);
  transition: opacity 0.9s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94); }
.sr-right.visible { opacity: 1; transform: none; }
.sr-d1 { transition-delay: 0.1s; }
.sr-d2 { transition-delay: 0.2s; }
.sr-d3 { transition-delay: 0.3s; }

/* ===== HERO SECTION ===== */
/* Nav is fixed 70px; hero section starts from 0 but has padding-top=nav-height.
   Image does NOT go behind nav — there is black space above the image (matches jetor.pro). */
.hero {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  min-height: 100vh;
  background: #000;
  padding-top: 70px; /* push content below fixed nav */
}

.hero-img {
  position: relative;
  overflow: hidden;
  padding-top: 100px; /* space between nav and image */
  padding-left:20px;
  /* min-height to look good */
  min-height: calc(100vh - 70px);
}
.hero-img::after{
  content: '';
  position: absolute;
  inset: 0;
  background: #000;
  opacity: var(--hero-overlay, 0.18);
  transition: opacity 200ms linear;
  pointer-events: none;
  z-index: 1;
}
.hero-img img {
  position: relative;
  z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(var(--hero-sat, 0.15)) brightness(var(--hero-bright, 0.75));
  transition: filter 200ms linear, transform 10s ease;
}
.hero-img:hover img { transform: scale(1.04); }

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 60px 80px 80px 80px;
  background: #000;
  position: relative;
  min-height: calc(100vh - 70px);
  text-align: left;
}

@media (min-width: 1025px) {
  .hero-content {
    min-height: calc(100vh - 70px);
    justify-content: center;
  }
}

/* JETOR orange logo — exact match */
.hero-logo {
  margin-top: 120px;
  margin-bottom: 200px;
  display: flex;
  justify-content: center;
  width: 100%;
}
.hero-logo svg {
  /* viewBox is 1008.16 x 203.45 — scale to match original ~466px wide */
  width: 460px;
  height: auto;
  max-width: 100%;
  display: block;
}

.hero-heading {
  font-family: fahkwang, 'Fahkwang', sans-serif;
  font-size: var(--f2); /* 62px */
  font-weight: 400;
  line-height: 1.1em;
  letter-spacing: -0.04em;
  color: #fff;
  max-width: 460px;
  text-align: left;
}

/* ===== OUR VISION SECTION ===== */
/* exact: left side = photo (294px), right = text block */
.vision-section {
  display: grid;
  grid-template-columns: 450px 1fr;
  min-height: 600px;
  background: #000;
  padding: 100px 80px 100px 80px;
  gap: 80px;
  align-items: flex-start;
  border-top: none;
}

.vision-img {
  position: relative;
}
.vision-img img {
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  margin: auto;
  margin-top: 50px;
}

/* .vision-text-col intentionally left without explicit rules */

.vision-label {
  font-family: fahkwang, 'Fahkwang', sans-serif;
  font-size: var(--f7); /* 15px */
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 32px;
  text-transform: none;
}
.vision-text-col{
  max-width:640px;
}
.vision-body p {
  font-family: fahkwang, 'Fahkwang', sans-serif;
  font-size: var(--f7); /* 15px */
  font-weight: 400;
  line-height: 1.6em;
  color: #fff;
  margin-bottom: 16px;
  text-align: justify;
}
.vision-body p:last-child { margin-bottom: 0; }

.btn-outline {
  display: inline-block;
  margin-top: 36px;
  padding: 10px 24px;
  border: 1px solid #fff;
  border-radius: 30px;
  font-family: fahkwang, 'Fahkwang', sans-serif;
  font-size: var(--f7);
  font-weight: 400;
  color: #000;
  background: #fff;
  width: fit-content;
  max-width: 100%;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.btn-outline:hover {
  background: #cfcfcf;
  border-color: #cfcfcf;
  color: var(--orange);
}

/* ===== SERVICES SECTION ===== */
/* exact: alternating left-image/right-text rows, full bleed images */
.services-section {
  background: #000;
  padding-top: 0;
}

.services-intro {
  background: #000;
  padding: 60px 60px 168px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.services-intro-title {
  font-family: fahkwang, 'Fahkwang', sans-serif;
  font-size: var(--f2); /* 62px */
  font-weight: 400;
  line-height: 1em;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 24px;
  max-width: none;
  text-align: left;
}

.services-intro-desc {
  font-family: fahkwang, 'Fahkwang', sans-serif;
  font-size: var(--f5); /* 22px */
  font-weight: 400;
  line-height: 1.35em;
  color: #fff;
  max-width: 1000px;
}

/* Each service = alternating row: image left, text right OR text left, image right */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 325px;
}
.service-row.reverse .service-row-img  { order: 2; }
.service-row.reverse .service-row-text { order: 1; }

.service-row-img {
  position: relative;
  overflow: hidden;
  max-height: 325px;
}
.service-row-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.service-row-img:hover img { transform: scale(1.04); }

.service-row-text {
  background: #000;
  padding: 30px 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.service-row-text.sr-left{
  align-items: flex-end;
}

.service-row-title {
  font-family: fahkwang, 'Fahkwang', sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1em;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 16px;
  max-width: 485px;
  text-align: center;
}

.service-row-desc {
  font-family: fahkwang, 'Fahkwang', sans-serif;
  font-size: var(--f7); /* 15px */
  font-weight: 400;
  line-height: 1.6em;
  color: #fff;
  margin-bottom: 20px;
  max-width: 390px;
}

/* ===== CONTACT US button + section ===== */
.contact-section {
  background: #000;
  padding: 80px 80px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* ===== FOOTER ===== */
/* exact: horizontal rule, 2-col grid, vertical separator, big "Leading Aerospace Solutions" */
.site-footer {
  background: #000;
  border-top: 1px solid #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #fff;
  position: relative;
}
/* vertical center separator */
.footer-inner::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: #fff;
}

.footer-left {
  padding: 60px 80px 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-company-name {
  font-family: fahkwang, 'Fahkwang', sans-serif;
  font-size: var(--f5); /* 22px */
  font-weight: 400;
  letter-spacing: 0em;
  color: #fff;
  margin-bottom: 40px;
}

.footer-tagline {
  font-family: fahkwang, 'Fahkwang', sans-serif;
  font-size: var(--f2); /* 62px */
  font-weight: 400;
  line-height: 1em;
  letter-spacing: -0.04em;
  color: #fff;
  margin-top: auto;
}

.footer-right {
  padding: 60px 80px 60px 80px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* .footer-contact-block intentionally left without explicit rules */

.footer-contact-label {
  font-family: fahkwang, 'Fahkwang', sans-serif;
  font-size: var(--f7); /* 15px */
  font-weight: 400;
  color: #fff;
  margin-bottom: 4px;
}

.footer-contact-value {
  font-family: fahkwang, 'Fahkwang', sans-serif;
  font-size: var(--f7);
  font-weight: 400;
  color: #fff;
}
.footer-contact-value a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-contact-value a:hover { color: var(--orange); }

.footer-bottom {
  padding: 20px 80px;
  display: flex;
  justify-content: flex-end;
}
.footer-copyright {
  font-family: fahkwang, 'Fahkwang', sans-serif;
  font-size: var(--f8); /* 13px */
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.02em;
}

/* ===== IN STOCK PAGE ===== */

/* Wrapper: image + overlapping text block stacked */
.instock-hero-wrap {
  position: relative;
  margin-top: 70px; /* below fixed nav */
  background: #000;
}

/* Warehouse image — full width, fixed height */
.instock-hero-img {
  width: 100%;
  height: 446px;
  overflow: hidden;
  position: relative;
  display: block;
}
.instock-hero-img::after{
  content: '';
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.22;
  pointer-events: none;
  z-index: 1;
}
.instock-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.55) brightness(0.82);
}

/* Text panel overlay (black box) */
.instock-text-block {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: absolute;
  left: 230px;
  right: 230px;
  top: 150px;
  z-index: 2;
  background: #000;
  padding: 70px 80px;
  align-items: center;
  max-width: 980px;
}
.instock-heading {
  font-family: 'Fahkwang', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 62px;
  font-weight: 400;
  line-height: 1.02em;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}
.instock-desc {
  font-family: inherit;
  font-size: var(--f7); /* 15px */
  font-weight: 400;
  line-height: 1.5em;
  max-width: 600px;
  color: #fff;
  margin: 0;
  padding-top: 0;
}

/* white horizontal rule */
.instock-divider {
  height: 2px;
  background: #fff;
  margin: 0 230px;
  width: calc(100% - 460px);
}

/* Category list — exact: large underlined H2 links stacked vertically */
.category-list-wrap {
  /* Match original: content starts at left=230px on 1440px viewport */
  padding: 40px 230px 80px 230px;
  background: #000;
}

.category-columns {
  display: flex;
  gap: 80px;
}

.category-column {
  flex: 1;
  min-width: 0;
}

.category-link-all {
  display: inline-block;
  margin-bottom: 28px;
  padding: 0;
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 4px;
  letter-spacing: 0;
}

.category-link {
  display: block;
  font-family: fahkwang, 'Fahkwang', sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: -0.04em;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.category-column .category-link + .category-link {
  margin-top: 14px;
}
.category-link:hover { color: var(--orange); }

/* ===== CATEGORY TABLE PAGE ===== */
/* exact: dark bg, search top-right, orange header row, plain rows */

.cat-page-wrap {
  margin-top: 70px; /* nav */
  background: #000;
  min-height: 100vh;
}

/* Back link */
.cat-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: fahkwang, 'Fahkwang', sans-serif;
  font-size: var(--f7);
  color: #fff;
  padding: 24px 80px;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.cat-back:hover { opacity: 1; color: var(--orange); }
.cat-back svg { transition: transform 0.2s; }
.cat-back:hover svg { transform: translateX(-4px); }

/* Category name heading */
.cat-page-title {
  font-family: fahkwang, 'Fahkwang', sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1em;
  letter-spacing: -0.06em;
  color: #fff;
  padding: 0 80px 40px;
}

/* Table container: full bleed, dark, like Wix Table Master */
.cat-table-container {
  margin: 0 80px;
  position: relative;
}

/* Search row above table */
.cat-table-search-row {
  display: flex;
  justify-content: flex-end;
  padding: 10px 0;
  background: #3d3d3d;
}
.cat-search-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-family: fahkwang, 'Fahkwang', sans-serif;
  font-size: 13px;
  padding: 6px 12px;
  outline: none;
  width: 180px;
  letter-spacing: 0.04em;
  margin-right: 16px;
}
.cat-search-input::placeholder { color: rgba(255,255,255,0.4); }
.cat-search-input:focus { border-bottom-color: #fff; }

/* Category catalog: two tables рядом по горизонтали; на узком экране — столбиком */
.cat-table-split-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 16px;
}
.cat-table-col {
  min-width: 0;
}
.cat-table-col:not(.cat-table-col--empty) {
  flex: 1 1 0;
}
.cat-table-col--empty {
  display: none;
}
.cat-table-split-wrap.cat-table-split-wrap--single-col {
  justify-content: flex-start;
}
.cat-table-split-wrap.cat-table-split-wrap--single-col > .cat-table-col:first-child {
  flex: 0 0 calc(50% - 8px);
  max-width: calc(50% - 8px);
}
@media (max-width: 767px) {
  .cat-table-split-wrap {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .cat-table-split-wrap.cat-table-split-wrap--single-col > .cat-table-col:first-child {
    flex: 1 1 auto;
    max-width: none;
    width: 100%;
  }
}

/* Table itself */
.cat-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  font-family: fahkwang, 'Fahkwang', sans-serif;
}

/* Orange header row — exact match */
.cat-table thead tr {
  background: var(--table-header-bg); /* #EF7F13 */
}
.cat-table th {
  padding: 12px 16px;
  text-align: left;
  font-family: fahkwang, 'Fahkwang', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
}
.cat-table th .sort-icon {
  display: inline-block;
  margin-left: 8px;
  font-size: 12px;
  opacity: 0.8;
}

/* Data rows */
.cat-table tbody tr {
  background: var(--table-row-bg); /* #1c1c1c */
  border-bottom: 1px solid var(--table-border);
  transition: background 0.15s;
}
.cat-table tbody tr:nth-child(even) {
  background: var(--table-alt-bg); /* #161616 */
}
.cat-table tbody tr:hover {
  background: #242424;
}
.cat-table td {
  padding: 10px 16px;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  vertical-align: middle;
}

/* Pagination */
.cat-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 32px 0 60px;
}
.pg-btn {
  min-width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-family: fahkwang, 'Fahkwang', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  border: 1px solid #333;
  background: transparent;
  cursor: pointer;
  padding: 0 8px;
  transition: all 0.15s;
}
.pg-btn:hover { color: #fff; border-color: #666; }
.pg-btn.active { background: var(--orange); border-color: var(--orange); color: #fff; }
.pg-btn.disabled { opacity: 0.2; cursor: not-allowed; }

/* Loading dots */
.loading-dots {
  display: flex; gap: 8px; padding: 80px; justify-content: center;
}
.loading-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  animation: dot 1.2s ease-in-out infinite;
}
.loading-dots span:nth-child(2) { animation-delay: 0.15s; }
.loading-dots span:nth-child(3) { animation-delay: 0.30s; }
@keyframes dot {
  0%,80%,100% { opacity: 0.2; transform: scale(0.8); }
  40%  { opacity: 1; transform: scale(1); }
}

/* ===== RESPONSIVE ===== */
@media (min-width: 980px) {
  .home .hero,
  .home .vision-section,
  .home .services-section,
  .home .contact-section,
  .home .site-footer {
    min-width: 980px;
    width: calc(100% - 40px - 40px);
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  /* Mobile/tablet: show content first, image second */
  .hero-content { order: 1; }
  .hero-img { order: 2; height: 50vh; }
  .hero-content { padding: 60px 40px 60px; }
  .hero-heading { font-size: 42px; }

  .vision-section { grid-template-columns: 1fr; padding: 60px 40px; gap: 40px; }
  .vision-img img { aspect-ratio: 16/9; }

  .services-intro { padding: 48px 40px 56px; }
  .services-intro-title { font-size: 48px; }
  .services-intro-desc { font-size: 20px; max-width: 860px; }

  .service-row { grid-template-columns: 1fr; }
  .service-row-img { min-height: 340px; }
  .service-row-text { padding: 48px 40px; align-items: flex-start;}
  .service-row-title { font-size: 40px; }
  .service-row.reverse .service-row-img  { order: 0; }
  .service-row.reverse .service-row-text { order: 1; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-inner::after { display: none; }
  .footer-left { padding: 48px 40px; }
  .footer-right { padding: 48px 40px; }
  .footer-tagline { font-size: 40px; }
  .footer-bottom { padding: 20px 40px; }
  .contact-section { padding: 60px 40px; }

  .instock-hero-img { height: 300px; }
  .instock-text-block {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    padding: 32px 40px;
    gap: 25px;
    width: calc(100% - 80px);
    margin: -140px 40px 0;
    max-width: none;
  }
  .instock-heading { font-size: 42px; }
  .instock-divider { margin: 0 40px; width: calc(100% - 80px); }
  .category-list-wrap { padding: 32px 40px 60px; }
  .category-columns { gap: 40px; }
  .cat-back { padding: 20px 40px; }
  .cat-page-title { padding: 0 40px 32px; font-size: 42px; }
  .cat-table-container { margin: 0 40px; }
}

@media (max-width: 768px) {
  .site-nav .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content { padding: 40px 24px 48px; }
  .hero-heading { font-size: 32px; }

  .vision-section { padding: 48px 24px; gap: 32px; }
  .services-intro { padding: 40px 24px 44px; }
  .services-intro-title { font-size: 34px; margin-bottom: 16px; }
  .services-intro-desc { font-size: 16px; line-height: 1.5em; }
  .service-row-text { padding: 40px 24px; }
  .service-row-title { font-size: 28px; }
  .service-row-desc { font-size: 14px; }

  .contact-section { padding: 48px 24px; }
  .footer-left { padding: 40px 24px; }
  .footer-right { padding: 40px 24px; }
  .footer-tagline { font-size: 32px; }
  .footer-bottom { padding: 16px 24px; }

  .instock-hero-img { height: 220px; }
  .instock-text-block {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    padding: 24px;
    width: calc(100% - 48px);
    margin: -100px 24px 0;
    max-width: none;
  }
  .instock-divider { margin: 0 24px; width: calc(100% - 48px); }
  .category-list-wrap { padding: 24px 24px 48px; }
  .category-columns { flex-direction: column; gap: 0; }
  .category-link-all { margin-bottom: 20px; }
  .category-column .category-link + .category-link { margin-top: 10px; }
  .category-link { font-size: 22px; }
  .cat-back { padding: 16px 24px; }
  .cat-page-title { padding: 0 24px 24px; font-size: 32px; }
  .cat-table-container { margin: 0 24px; }
  .cat-table th, .cat-table td { padding: 10px 10px; font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .sr, .sr-left, .sr-right { opacity: 1; transform: none; }
}

/* ===== SERVICE INFO PAGES (tires, fixed-wing-parts, rotary-wing-parts) ===== */
.svc-page {
  margin-top: 70px;
  margin-bottom: 100px;
  background: #000;
  padding: 48px 80px 0;
}

.svc-title {
  font-family: fahkwang, 'Fahkwang', sans-serif;
  font-size: var(--f2);
  font-weight: 400;
  line-height: 1em;
  letter-spacing: -0.04em;
  color: #fff;
  text-align: center;
  margin-bottom: 32px;
}

.svc-intro {
  max-width: 740px;
  margin: 0 auto 24px;
}
.svc-intro p {
  font-family: fahkwang, 'Fahkwang', sans-serif;
  font-size: var(--f6); /* 15px */
  font-weight: 400;
  line-height: 1.6em;
  color: #fff;
  margin-bottom: 16px;
  text-align: justify;
}

/* "Stock" CTA button */
.svc-stock-btn {
  display: inline-block;
  padding: 10px 40px;
  border: 1px solid #fff;
  border-radius: 30px;
  font-family: fahkwang, 'Fahkwang', sans-serif;
  font-size: var(--f7);
  font-weight: 400;
  color: #fff;
  background: transparent;
  margin-bottom: 0;
  transition: background 0.4s ease, color 0.4s ease;
}
.svc-stock-btn:hover { background: #fff; color: var(--orange); }

/* Capabilities section: left image, right list */
.svc-capabilities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
  margin-bottom: 0;
}

.svc-cap-img {
  overflow: hidden;
}
.svc-cap-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.svc-cap-text {
  background: #000;
  padding: 60px 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.svc-cap-title {
  font-family: fahkwang, 'Fahkwang', sans-serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1em;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 36px;
  max-width:485px;
  text-align: center;
}

.svc-cap-list {
  list-style: none;
  padding: 0; margin: 0;
}
.svc-cap-list li {
  max-width:390px;
  font-family: fahkwang, 'Fahkwang', sans-serif;
  font-size:var(--f6);
  font-weight: 400;
  line-height: 1.6em;
  color: #fff;
  margin-bottom: 20px;
  padding-left: 20px;
  position: relative;
}
.svc-cap-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #fff;
}

/* Second row: right image, left list */
.svc-platforms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
}

.svc-plat-text {
  background: #000;
  padding: 60px 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;  
}

.svc-plat-title {
  font-family: fahkwang, 'Fahkwang', sans-serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1em;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 36px;
  text-align: center;
}

.svc-plat-desc {
  max-width: 560px;
  font-family: fahkwang, 'Fahkwang', sans-serif;
  font-size: var(--f6);
  font-weight: 400;
  line-height: 1.6em;
  color: #fff;
  text-align: left;
  margin: 0 0 28px;
}

.svc-plat-list {
  list-style: none;
  padding: 0; margin: 0;
}
.svc-plat-list li {
  font-family: fahkwang, 'Fahkwang', sans-serif;
  font-size: var(--f6);
  font-weight: 400;
  line-height: 1.6em;
  color: #fff;
  margin-bottom: 14px;
  padding-left: 20px;
  position: relative;
}
.svc-plat-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #fff;
}

.svc-plat-img {
  overflow: hidden;
}
.svc-plat-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .svc-page { padding: 60px 40px 80px; }
  .svc-capabilities, .svc-platforms { grid-template-columns: 1fr; min-height: auto; }
  .svc-cap-img, .svc-plat-img { height: 340px; }
  .svc-cap-text, .svc-plat-text { padding: 48px 40px; }
  .svc-cap-title, .svc-plat-title { font-size: 40px; }
}

@media (max-width: 768px) {
  .svc-page { padding: 48px 24px 60px; }
  .svc-title { font-size: 36px; margin-bottom: 40px; }
  .svc-cap-text, .svc-plat-text { padding: 40px 24px; }
  .svc-cap-title, .svc-plat-title { font-size: 28px; }
}

