:root {
  --navy: #171e19;
  --sage: #b7c6c2;
  --white: #ffffff;
  --taupe: #9f8d8b;
  --beige: #d7c5b2;
  --cyan: #d5f4f9;
  --soft-blue: #bbe2f5;
  --charcoal: #302b2f;
  --light: #fafafa;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Plus Jakarta Sans", "Microsoft YaHei", sans-serif;
  background: var(--navy);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--sage); color: var(--navy); }
a { color: inherit; }

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 48px;
  mix-blend-mode: difference;
  color: var(--white);
}
.nav-logo {
  font-family: "Anton", sans-serif;
  font-size: 28px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  transition: color 120ms ease;
}
.nav-links a:hover { color: #b6b5b5; }
.nav-cta {
  border: 1px solid var(--white);
  padding: 12px 22px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  transition: background 400ms var(--ease), color 400ms var(--ease);
}
.nav-cta:hover { background: var(--white); color: var(--navy); }
.nav-lang {
  border: 1px solid var(--white);
  padding: 10px 14px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  transition: background 400ms var(--ease), color 400ms var(--ease);
}
.nav-lang:hover { background: var(--white); color: var(--navy); }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 80px;
  background: var(--navy);
  overflow: hidden;
  cursor: crosshair;
}
.orb {
  position: absolute;
  width: 384px;
  height: 384px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.2;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}
.orb-sage { background: var(--sage); top: 18%; left: 10%; }
.orb-blue { background: var(--soft-blue); bottom: 10%; right: 6%; animation-delay: -3s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
.hero-title {
  position: relative;
  z-index: 2;
  font-family: "Anton", sans-serif;
  font-size: 18vw;
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.hero-title .line { display: block; }
.text-outline {
  color: transparent;
  -webkit-text-stroke: 1px var(--sage);
}
.hero-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-top: 64px;
}
.hero-note {
  max-width: 320px;
  font-size: 13px;
  letter-spacing: 0.22em;
  line-height: 1.9;
  text-transform: uppercase;
  color: var(--taupe);
}
.hero-arrow {
  width: 64px;
  height: 64px;
  border: 1px solid var(--taupe);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--sage);
  text-decoration: none;
  animation: bounce 2.2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.works {
  background: var(--white);
  color: var(--navy);
  padding: 120px 48px 160px;
}
.works-heading {
  font-family: "Anton", sans-serif;
  font-size: 9vw;
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 80px;
}
.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.work-card {
  cursor: crosshair;
}
.work-card:nth-child(even) { margin-top: 64px; }
.work-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--beige);
}
.work-card:nth-child(2) .work-media,
.work-card:nth-child(3) .work-media { aspect-ratio: 3 / 4; }
.work-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: transform 700ms var(--ease), filter 700ms var(--ease);
}
.work-card:hover .work-media img {
  transform: scale(1.1);
  filter: grayscale(0%);
}
.work-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(23, 30, 25, 0.6);
  opacity: 0;
  transition: opacity 500ms var(--ease);
}
.work-card:hover .work-overlay { opacity: 1; }
.view-badge {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--navy);
  font-family: "Anton", sans-serif;
  font-size: 14px;
  letter-spacing: 0.25em;
}
.work-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
}
.work-meta h3 {
  font-family: "Anton", sans-serif;
  font-size: 28px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.work-meta p {
  color: var(--taupe);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.featured {
  background: var(--navy);
  color: var(--white);
  padding: 140px 48px;
}
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.featured-media { position: relative; }
.cyan-square {
  position: absolute;
  top: -48px;
  left: -48px;
  width: 320px;
  height: 320px;
  background: rgba(213, 244, 249, 0.2);
  z-index: 0;
}
.featured-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 700ms var(--ease), transform 700ms var(--ease);
}
.featured-media:hover img {
  filter: grayscale(0%);
  transform: scale(1.02);
}
.featured-label {
  font-family: "Anton", sans-serif;
  font-size: 16px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage);
}
.featured-title {
  font-family: "Anton", sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  text-transform: uppercase;
  margin-top: 28px;
}
.featured-body {
  max-width: 560px;
  margin-top: 28px;
  color: var(--taupe);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.9;
}
.featured-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 500ms var(--ease), border-color 300ms ease;
}
.featured-link:hover {
  transform: translateX(8px);
  border-color: var(--sage);
}

.capabilities {
  background: var(--light);
  color: var(--navy);
  padding: 140px 48px;
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
}
.cap-left { grid-column: 1 / 5; }
.cap-right { grid-column: 5 / 13; }
.cap-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--taupe);
}
.cap-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  list-style: none;
}
.cap-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(23, 30, 25, 0.12);
  font-family: "Anton", sans-serif;
  font-size: 28px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: crosshair;
}
.cap-item::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--navy);
  transition: width 500ms var(--ease);
}
.cap-item:hover::before { width: 64px; }
.cap-right {
  display: flex;
  align-items: center;
}
.cap-right h2 {
  font-size: clamp(36px, 6vw, 88px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.cap-right em {
  font-style: italic;
  color: var(--taupe);
}
.cap-note {
  margin-top: 32px;
  max-width: 680px;
  color: var(--taupe);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
}

.testimonials {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  padding: 160px 48px;
}
.quote-mark {
  position: absolute;
  top: -80px;
  right: -60px;
  font-family: "Anton", sans-serif;
  font-size: 30rem;
  line-height: 1;
  color: var(--navy);
  opacity: 0.3;
  pointer-events: none;
}
.t-slider {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}
.t-slide { display: none; }
.t-slide.active { display: block; animation: fadeUp 700ms var(--ease); }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
.t-quote {
  font-family: "Anton", sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.05;
  text-transform: uppercase;
}
.t-bio {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
}
.t-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sage);
  color: var(--navy);
  font-family: "Anton", sans-serif;
  font-size: 20px;
}
.t-bio h4 {
  font-family: "Anton", sans-serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.t-bio p {
  margin-top: 4px;
  color: var(--taupe);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.t-nav {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 16px;
  margin-top: 56px;
}
.t-btn {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  color: var(--sage);
  font-size: 18px;
  cursor: pointer;
  transition: background 500ms var(--ease), color 500ms var(--ease), border-color 500ms var(--ease);
}
.t-btn:hover {
  background: var(--sage);
  color: var(--navy);
  border-color: var(--sage);
}

.footer {
  background: var(--navy);
  padding: 120px 48px 48px;
}
.footer-brand {
  margin-bottom: 48px;
}
.footer-logo {
  height: 64px;
  width: auto;
}
.footer-heading {
  font-family: "Anton", sans-serif;
  font-size: clamp(64px, 9vw, 160px);
  line-height: 0.9;
  text-transform: uppercase;
}
.footer-email {
  display: inline-block;
  margin-top: 40px;
  font-family: "Anton", sans-serif;
  font-size: clamp(28px, 4vw, 56px);
  color: var(--sage);
  text-decoration: none;
  text-decoration-line: underline;
  text-decoration-color: var(--sage);
  text-decoration-thickness: 1px;
  text-underline-offset: 8px;
  transition: color 300ms ease, text-decoration-color 300ms ease;
}
.footer-email:hover {
  color: var(--cyan);
  text-decoration-color: var(--cyan);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  color: var(--sage);
  font-size: 15px;
  letter-spacing: 0.06em;
}
.footer-contact a {
  color: var(--sage);
  text-decoration: none;
  border-bottom: 1px solid rgba(183, 198, 194, 0.35);
  padding-bottom: 4px;
  transition: color 300ms ease, border-color 300ms ease;
}
.footer-contact a:hover {
  color: var(--cyan);
  border-color: var(--cyan);
}
.footer-address {
  margin-top: 16px;
  color: rgba(246, 246, 246, 0.6);
  font-size: 13px;
  letter-spacing: 0.08em;
}
.footer-qr {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}
.footer-qr img {
  width: 112px;
  height: 112px;
  padding: 6px;
  background: var(--white);
}
.footer-qr span {
  max-width: 180px;
  color: var(--sage);
  font-size: 12px;
  letter-spacing: 0.18em;
  line-height: 1.8;
  text-transform: uppercase;
}
.featured-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.featured-tags span {
  border: 1px solid rgba(183, 198, 194, 0.35);
  padding: 10px 16px;
  color: var(--sage);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 120px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(246, 246, 246, 0.6);
}
.footer-legal {
  display: flex;
  gap: 28px;
  list-style: none;
}
.footer-legal a {
  color: rgba(246, 246, 246, 0.6);
  text-decoration: none;
  transition: color 200ms ease;
}
.footer-legal a:hover { color: var(--white); }

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1000ms var(--ease), transform 1000ms var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(23, 30, 25, 0.72);
  backdrop-filter: blur(6px);
}
.modal-backdrop.open { display: flex; }
.modal {
  position: relative;
  width: min(760px, 100%);
  max-height: 86vh;
  overflow: auto;
  border: 1px solid rgba(183, 198, 194, 0.35);
  background: var(--navy);
  padding: 48px;
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(183, 198, 194, 0.4);
  border-radius: 50%;
  background: none;
  color: var(--sage);
  font-size: 20px;
  cursor: pointer;
  transition: background 300ms var(--ease), color 300ms var(--ease);
}
.modal-close:hover {
  background: var(--sage);
  color: var(--navy);
}
.modal-kicker {
  color: var(--sage);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.modal-title {
  margin-top: 16px;
  font-family: "Anton", sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  text-transform: uppercase;
}
.modal-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 32px;
}
.modal-meta div {
  border-top: 1px solid rgba(183, 198, 194, 0.2);
  padding-top: 14px;
}
.modal-meta b {
  display: block;
  color: var(--sage);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.modal-meta span {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 18px;
}
.modal-desc {
  margin-top: 28px;
  color: var(--taupe);
  font-size: 16px;
  line-height: 1.9;
}
.modal-cta {
  display: inline-flex;
  margin-top: 32px;
  border: 1px solid var(--white);
  padding: 14px 24px;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 400ms var(--ease), color 400ms var(--ease);
}
.modal-cta:hover {
  background: var(--white);
  color: var(--navy);
}

@media (max-width: 860px) {
  .nav {
    gap: 12px;
    padding: 20px 24px;
  }
  .nav-logo {
    font-size: 22px;
  }
  .nav-lang {
    padding: 10px;
  }
  .nav-cta {
    padding: 10px 14px;
  }
  .nav-links {
    display: none;
  }
  .hero,
  .works,
  .featured,
  .capabilities,
  .testimonials,
  .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero {
    padding-top: 96px;
    padding-bottom: 56px;
  }
  .hero-title {
    font-size: 18vw;
    line-height: 1;
  }
  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .works {
    padding-top: 80px;
    padding-bottom: 100px;
  }
  .works-heading {
    font-size: 16vw;
    margin-bottom: 48px;
  }
  .works-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .work-card:nth-child(even) {
    margin-top: 0;
  }
  .featured {
    padding-top: 96px;
    padding-bottom: 96px;
  }
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .cyan-square {
    top: -32px;
    left: -24px;
    width: 220px;
    height: 220px;
  }
  .capabilities {
    padding-top: 96px;
    padding-bottom: 96px;
  }
  .cap-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .cap-left,
  .cap-right {
    grid-column: auto;
  }
  .testimonials {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .quote-mark {
    top: -40px;
    right: -40px;
    font-size: 18rem;
  }
  .footer {
    padding-top: 96px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 80px;
  }
}

/* ===== 子页（产品线路 / 行业动态）===== */
.page { padding: 150px 48px 90px; max-width: 1240px; margin: 0 auto; }
.page-hero h1 { font-family: "Anton", sans-serif; font-size: clamp(48px, 8vw, 96px); letter-spacing: 0.04em; text-transform: uppercase; }
.page-hero p { color: var(--sage); margin-top: 18px; font-size: 16px; letter-spacing: 0.08em; max-width: 720px; line-height: 1.7; }

.lang-switch { display: inline-flex; border: 1px solid var(--white); }
.lang-switch-item { padding: 10px 16px; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; color: var(--white); transition: background 400ms var(--ease), color 400ms var(--ease); }
.lang-switch-item + .lang-switch-item { border-left: 1px solid var(--white); }
.lang-switch-item.is-active { background: var(--white); color: var(--navy); }
.lang-switch-item:hover { background: var(--sage); color: var(--navy); }

.route-group { margin-top: 72px; }
.route-group-title { font-family: "Anton", sans-serif; font-size: 28px; letter-spacing: 0.12em; border-bottom: 1px solid rgba(255, 255, 255, 0.18); padding-bottom: 14px; }
.route-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 28px; }
.route-card { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.12); transition: border-color 300ms var(--ease); }
.route-card:hover { border-color: var(--sage); }
.route-card-media { aspect-ratio: 16 / 10; overflow: hidden; }
.route-card-media img { width: 100%; height: 100%; object-fit: cover; }
.route-card-media--blank { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #26342d, #171e19); color: var(--sage); font-family: "Anton", sans-serif; font-size: 64px; }
.route-card-body { padding: 20px; }
.route-card-body h3 { font-size: 18px; letter-spacing: 0.06em; }
.route-tag { display: inline-block; margin-top: 10px; padding: 4px 10px; border: 1px solid var(--sage); color: var(--sage); font-size: 12px; letter-spacing: 0.08em; }
.route-card-body p { margin-top: 12px; color: rgba(255, 255, 255, 0.72); font-size: 14px; line-height: 1.6; }
.route-note { color: var(--beige); font-size: 12px; }
.route-cta { display: inline-block; margin-top: 16px; border: 1px solid var(--white); padding: 10px 18px; font-size: 12px; letter-spacing: 0.18em; text-decoration: none; transition: background 400ms var(--ease), color 400ms var(--ease); }
.route-cta:hover { background: var(--white); color: var(--navy); }

.calc { margin-top: 80px; border: 1px solid rgba(255, 255, 255, 0.18); padding: 36px; }
.calc h2 { font-family: "Anton", sans-serif; font-size: 32px; letter-spacing: 0.1em; }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-top: 24px; }
.calc-col h3 { font-size: 16px; letter-spacing: 0.12em; color: var(--sage); margin-bottom: 14px; }
.calc-table { width: 100%; border-collapse: collapse; }
.calc-table th, .calc-table td { border: 1px solid rgba(255, 255, 255, 0.15); padding: 12px 14px; text-align: left; font-size: 14px; }
.calc-table th { color: var(--sage); font-weight: 400; letter-spacing: 0.1em; }
.calc-list { margin: 4px 0 0 18px; color: rgba(255, 255, 255, 0.75); font-size: 14px; line-height: 2; }
.calc-note { margin-top: 14px; color: rgba(255, 255, 255, 0.6); font-size: 12px; }

.news-card { display: grid; grid-template-columns: 480px 1fr; gap: 32px; align-items: center; border: 1px solid rgba(255, 255, 255, 0.12); margin-top: 36px; background: rgba(255, 255, 255, 0.04); }
.news-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 2; }
.news-body { padding: 28px 32px 28px 0; }
.news-meta { color: var(--sage); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; }
.news-body h2 { font-family: "Anton", sans-serif; font-size: 28px; letter-spacing: 0.05em; margin-top: 10px; line-height: 1.2; }
.news-body p { margin-top: 14px; color: rgba(255, 255, 255, 0.75); font-size: 14px; line-height: 1.7; }
.news-body ul { margin: 12px 0 0 18px; color: rgba(255, 255, 255, 0.75); font-size: 14px; line-height: 1.8; }
.news-inline { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; margin-top: 18px; }
.news-tag { display: inline-block; margin-top: 12px; padding: 8px 14px; border: 1px solid var(--sage); color: var(--sage); font-size: 12px; letter-spacing: 0.08em; text-decoration: none; }
.news-tag:hover { background: var(--sage); color: var(--navy); }

@media (max-width: 900px) {
  .route-grid { grid-template-columns: 1fr 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
  .news-card { grid-template-columns: 1fr; }
  .news-body { padding: 0 24px 24px; }
}
@media (max-width: 640px) {
  .page { padding: 130px 20px 60px; }
  .route-grid { grid-template-columns: 1fr; }
  .nav { padding: 20px 20px; gap: 14px; }
  .nav-links { gap: 16px; }
}

.route-catalog { margin-top: 28px; border: 1px solid rgba(255, 255, 255, 0.12); }
.route-catalog h3 { font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage); padding: 16px 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.route-catalog-table { width: 100%; border-collapse: collapse; }
.route-catalog-table th, .route-catalog-table td { text-align: left; padding: 10px 20px; font-size: 13px; line-height: 1.5; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.route-catalog-table th { color: rgba(255, 255, 255, 0.55); font-weight: 400; letter-spacing: 0.08em; font-size: 12px; }
.route-catalog-table td:first-child { color: var(--white); }
.route-catalog-table td:nth-child(2) { color: var(--sage); white-space: nowrap; }
.route-catalog-table td:last-child { color: rgba(255, 255, 255, 0.6); }

.route-regs { margin-top: 72px; }
.route-regs h2 { font-family: "Anton", sans-serif; font-size: 30px; letter-spacing: 0.1em; border-bottom: 1px solid rgba(255, 255, 255, 0.18); padding-bottom: 14px; }
.regs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 24px; }
.regs-item { border: 1px solid rgba(255, 255, 255, 0.12); padding: 18px 20px; background: rgba(255, 255, 255, 0.03); }
.regs-item h3 { font-size: 14px; letter-spacing: 0.12em; color: var(--sage); margin-bottom: 8px; }
.regs-item p { font-size: 13px; line-height: 1.7; color: rgba(255, 255, 255, 0.72); }
@media (max-width: 900px) {
  .regs-grid { grid-template-columns: 1fr; }
  .route-catalog-table td:nth-child(2) { white-space: normal; }
}
