:root {
  --black: #0b0b0c;
  --graphite: #202124;
  --dark-gray: #3a3c40;
  --gray: #90949b;
  --soft: #f2f2f0;
  --white: #fff;
  --line: rgba(255, 255, 255, 0.15);
  --line-dark: rgba(11, 11, 12, 0.15);
  --max: 1240px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #fff;
  color: var(--black);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  line-height: 1.6;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
img,
svg {
  display: block;
}
.container {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  background: #fff;
  color: #000;
  padding: 10px;
  z-index: 999;
}
.skip-link:focus {
  left: 10px;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 11, 12, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  height: 84px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #fff;
  min-width: max-content;
}
.brand-mark {
  width: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.brand strong {
  display: block;
  font-size: 13px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.brand small {
  display: block;
  margin-top: 5px;
  color: #a7a9ae;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  color: #d6d7da;
  font-size: 13px;
}
.main-nav a:hover {
  color: #fff;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-weight: 700;
  font-size: 13px;
  transition: 0.25s ease;
  cursor: pointer;
}
.button:hover {
  transform: translateY(-2px);
}
.button-small {
  min-height: 44px;
  padding: 0 18px;
  background: #fff;
  color: #111;
}
.button-light {
  background: #fff;
  color: #111;
}
.button-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}
.button-dark {
  background: #111;
  color: #fff;
}
.button-outline {
  border-color: rgba(11, 11, 12, 0.3);
}
.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: #fff;
}
.hero {
  position: relative;
  min-height: 900px;
  padding-top: 84px;
  background: var(--black);
  color: #fff;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background: url("assets/guangzhou-day.jpg") center 48% / cover no-repeat;
  filter: saturate(0.55) contrast(1.08);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 14, 21, 0.64) 0%,
    rgba(8, 14, 21, 0.32) 50%,
    rgba(8, 14, 21, 0.06) 100%
  );
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(to right, #000, transparent 82%);
}
.hero-inner {
  position: relative;
  min-height: 816px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 70px;
}
.status-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: #b9bbc0;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.status-dot {
  width: 7px;
  height: 7px;
  border: 1px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}
h1,
h2,
h3 {
  line-height: 1.1;
  margin-top: 0;
  letter-spacing: -0.035em;
}
h1 {
  max-width: 860px;
  margin-bottom: 28px;
  font-size: clamp(44px, 5.3vw, 80px);
  font-weight: 600;
}
h2 {
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 600;
}
h3 {
  font-size: 23px;
  font-weight: 600;
}
.lead {
  max-width: 720px;
  color: #c7c9ce;
  font-size: 18px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 38px;
}
.response-note {
  margin-top: 20px;
  color: #8e9198;
  font-size: 12px;
}
.hero-side {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bridge-card {
  position: relative;
  min-height: 410px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(12, 12, 14, 0.28);
  backdrop-filter: blur(5px);
  display: grid;
  place-items: center;
}
.bridge-card:before,
.bridge-card:after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
}
.bridge-card:before {
  width: 1px;
  height: 100%;
}
.bridge-card:after {
  height: 1px;
  width: 100%;
}
.bridge-large {
  width: 70%;
  fill: none;
  stroke: #fff;
  stroke-width: 1;
}
.bridge-card p {
  position: absolute;
  left: 24px;
  bottom: 20px;
  margin: 0;
  color: #a9abb0;
  font-size: 10px;
  letter-spacing: 0.18em;
}
.hero-meta {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top: 0;
}
.hero-meta span {
  flex: 1;
  padding: 17px 10px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #b8bbc0;
}
.hero-meta span:last-child {
  border-right: 0;
}
.trust-strip {
  background: #111214;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-grid div {
  min-height: 104px;
  padding: 22px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: 16px;
  align-items: center;
}
.trust-grid div:last-child {
  border-right: 0;
}
.trust-grid strong {
  font-size: 10px;
  color: #74777e;
  letter-spacing: 0.14em;
}
.trust-grid span {
  font-size: 12px;
  color: #d3d5d8;
}
.section {
  padding: 118px 0;
}
.section-light {
  background: #fff;
}
.section-soft {
  background: var(--soft);
}
.section-dark {
  background: var(--black);
  color: #fff;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 62px;
}
.section-heading h2 {
  margin-bottom: 0;
}
.section-heading > p {
  margin: 0;
  color: #62666d;
  max-width: 470px;
}
.light-heading > p {
  color: #a8abb2;
}
.eyebrow {
  margin: 0 0 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #b5b7bc;
}
.eyebrow.dark {
  color: #63676e;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}
.solution-card {
  min-height: 330px;
  padding: 34px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.25s;
}
.solution-card:hover {
  background: #f7f7f5;
}
.solution-card.featured {
  grid-row: span 2;
  min-height: 660px;
  background: var(--graphite);
  color: #fff;
}
.solution-card.featured:hover {
  background: #27282b;
}
.card-number {
  font-size: 11px;
  letter-spacing: 0.17em;
  color: #858991;
}
.card-kicker {
  margin: 0 0 12px !important;
  font-size: 10px !important;
  letter-spacing: 0.16em;
  color: #91949a !important;
}
.solution-card p {
  color: #6c7077;
  max-width: 480px;
}
.solution-card.featured p {
  color: #b9bbc0;
}
.solution-card ul,
.price-card ul {
  padding: 0;
  margin: 24px 0;
  list-style: none;
}
.solution-card li,
.price-card li {
  padding: 9px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 13px;
}
.featured li {
  border-color: var(--line);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
}
.text-link span {
  font-size: 18px;
}
.visual-directions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 610px;
}
.visual-card {
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}
.visual-card:last-child {
  border-right: 0;
}
.visual-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  transition: transform 0.7s ease;
}
.visual-card:hover:before {
  transform: scale(1.035);
}
.visual-factory {
  background-image: url("assets/factory.webp");
}
.visual-port {
  background-image: url("assets/port.webp");
}
.visual-car {
  background-image: url("assets/car.webp");
  background-position: center 55%;
}
.visual-control {
  background-image: url("assets/inspection-control-modern.jpg");
  background-position: center center;
}
.visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 6, 0.05), rgba(5, 5, 6, 0.85));
}
.visual-content {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  color: #fff;
}
.visual-content span {
  font-size: 10px;
  letter-spacing: 0.17em;
  color: #bfc2c7;
}
.visual-content h3 {
  margin: 16px 0 8px;
  font-size: 32px;
}
.visual-content p {
  margin: 0;
  max-width: 390px;
  color: #d2d4d7;
  font-size: 13px;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.benefit {
  min-height: 270px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.benefit span {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #777a81;
}
.benefit h3 {
  margin-top: 80px;
}
.benefit p {
  color: #a9abb0;
  font-size: 14px;
}
.payment-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.large-copy {
  font-size: 20px;
  line-height: 1.7;
  max-width: 590px;
}
.muted {
  color: #6f737b;
}
.payment-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}
.payment-steps li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line-dark);
}
.payment-steps span {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #777b82;
}
.payment-steps strong {
  font-weight: 700;
}
.payment-steps p {
  margin: 6px 0 0;
  color: #6c7077;
  font-size: 13px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.price-card {
  position: relative;
  min-height: 540px;
  padding: 34px;
  background: #fff;
  border: 1px solid rgba(11, 11, 12, 0.13);
  display: flex;
  flex-direction: column;
}
.price-card-main {
  background: var(--graphite);
  color: #fff;
}
.recommended {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: #c7c9cc;
}
.price-label {
  min-height: 48px;
  margin-top: 0;
  font-size: 13px;
  font-weight: 700;
}
.price {
  margin: 20px 0 26px;
  font-size: 44px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.price small {
  font-size: 12px;
  letter-spacing: 0.12em;
}
.price-card > p:not(.price-label) {
  color: #6e7279;
}
.price-card-main > p:not(.price-label) {
  color: #b8bac0;
}
.price-card li {
  border-color: var(--line-dark);
}
.price-card-main li {
  border-color: var(--line);
}
.price-card .button {
  margin-top: auto;
}
.pricing-note {
  text-align: center;
  margin-top: 25px;
  color: #71757d;
  font-size: 12px;
}
.process-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.process-row > div {
  min-height: 260px;
  padding: 28px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-row span {
  font-size: 11px;
  color: #777b82;
}
.process-row h3 {
  margin-top: 70px;
  font-size: 18px;
}
.process-row p {
  font-size: 13px;
  color: #a8abb1;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}
.about-copy > p {
  font-size: 20px;
  line-height: 1.8;
}
.founder-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 32px;
  margin-top: 55px;
  padding-top: 40px;
  border-top: 1px solid var(--line-dark);
}
.founder-photo-placeholder {
  height: 260px;
  background: linear-gradient(145deg, #18191b, #34363a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.founder-photo-placeholder span {
  font-size: 48px;
  font-weight: 700;
}
.founder-photo-placeholder small {
  margin-top: 12px;
  color: #8d9096;
  font-size: 8px;
  letter-spacing: 0.16em;
}
.founder-card blockquote {
  margin: 22px 0;
  padding-left: 18px;
  border-left: 1px solid var(--black);
  font-size: 14px;
  color: #5e6269;
}
.dark-link {
  color: #111;
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.article-grid article {
  min-height: 310px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
}
.article-grid span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #747880;
}
.article-grid h3 {
  margin-top: 70px;
}
.article-grid p {
  color: #6d7178;
}
.article-grid a {
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 100px;
}
.accordion {
  border-top: 1px solid var(--line-dark);
}
details {
  border-bottom: 1px solid var(--line-dark);
  padding: 22px 0;
}
summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  padding-right: 40px;
  position: relative;
}
summary:after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 20px;
  font-weight: 400;
}
details[open] summary:after {
  content: "−";
}
details p {
  color: #666a71;
  max-width: 760px;
}
.contact-section {
  padding: 120px 0;
  background: var(--black);
  color: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.contact-grid > div > p {
  color: #b5b7bd;
  font-size: 17px;
  max-width: 580px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 42px;
  font-size: 14px;
}
.contact-form {
  padding: 36px;
  background: var(--graphite);
  display: grid;
  gap: 18px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #a9abb0;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
  padding: 13px 0;
  background: transparent;
  color: #fff;
  outline: none;
  text-transform: none;
  letter-spacing: 0;
}
.contact-form select option {
  color: #111;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #fff;
}
.consent {
  display: flex !important;
  grid-template-columns: 18px 1fr;
  align-items: start;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 11px !important;
}
.consent input {
  margin-top: 4px;
}
.form-status {
  margin: 0;
  font-size: 12px;
  color: #c5c8ce;
}
.footer {
  padding: 70px 0 26px;
  background: #050506;
  color: #fff;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 50px;
}
.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-grid strong {
  font-size: 12px;
  letter-spacing: 0.08em;
}
.footer-grid a,
.footer-grid span,
.footer-grid p {
  color: #92959c;
  font-size: 12px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 55px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  color: #6f7279;
}
.mobile-contact-bar {
  display: none;
}

@media (max-width: 1130px) {
  .main-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .nav-cta {
    display: none;
  }
  .main-nav.open {
    position: fixed;
    display: flex;
    top: 84px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0b0b0c;
    flex-direction: column;
    align-items: center;
    padding: 50px 24px;
    gap: 26px;
    font-size: 22px;
    height: 100vh;
  }
  .hero-inner,
  .payment-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-inner {
    padding: 90px 0;
  }
  .hero-side {
    display: none;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-grid div:nth-child(2) {
    border-right: 0;
  }
  .trust-grid div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-grid,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .visual-directions {
    min-height: 520px;
  }

  .mobile-contact-bar {
    position: fixed;
    display: grid;
    grid-template-columns: 1fr 1fr;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    height: 64px;
    background: #fff;
    border-top: 1px solid rgba(11, 11, 12, 0.18);
  }
  .mobile-contact-bar a {
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 700;
  }
  .mobile-contact-bar a:first-child {
    background: #111;
    color: #fff;
  }
  .mobile-contact-bar a:last-child {
    border-left: 1px solid rgba(11, 11, 12, 0.18);
  }
}
@media (max-width: 760px) {
  body {
    padding-bottom: 64px;
  }
  .container {
    width: min(calc(100% - 28px), var(--max));
  }
  .nav-wrap {
    height: 72px;
  }
  .brand-mark {
    width: 34px;
  }
  .brand strong {
    font-size: 11px;
  }
  .brand small {
    display: none;
  }
  .main-nav.open {
    top: 72px;
  }
  .hero {
    min-height: 760px;
    padding-top: 72px;
  }
  .hero-photo {
    background-position: 58% center;
  }
  .hero-shade {
    background: linear-gradient(
      180deg,
      rgba(8, 14, 21, 0.2),
      rgba(8, 14, 21, 0.62) 62%,
      rgba(8, 14, 21, 0.82)
    );
  }
  .hero-inner {
    min-height: 688px;
    padding: 88px 0 60px;
    align-items: end;
  }
  h1 {
    font-size: 42px;
  }
  .lead {
    font-size: 16px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    min-height: 82px;
  }
  .section,
  .contact-section {
    padding: 78px 0;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  .solution-card.featured {
    grid-row: auto;
    min-height: 450px;
  }
  .visual-directions {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .visual-card {
    min-height: 440px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }
  .benefit-grid,
  .pricing-grid,
  .process-row,
  .article-grid {
    grid-template-columns: 1fr;
  }
  .benefit {
    min-height: 230px;
  }
  .process-row > div {
    min-height: 210px;
  }
  .about-grid {
    gap: 30px;
  }
  .founder-card {
    grid-template-columns: 1fr;
  }
  .founder-photo-placeholder {
    height: 280px;
  }
  .contact-form {
    padding: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
  .mobile-contact-bar {
    position: fixed;
    display: grid;
    grid-template-columns: 1fr 1fr;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    height: 64px;
    background: #fff;
    border-top: 1px solid rgba(11, 11, 12, 0.18);
  }
  .mobile-contact-bar a {
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 700;
  }
  .mobile-contact-bar a:first-child {
    background: #111;
    color: #fff;
  }
  .mobile-contact-bar a:last-child {
    border-left: 1px solid rgba(11, 11, 12, 0.18);
  }
}

/* Multi-page site */
.main-nav a.active {
  color: #fff;
  position: relative;
}
.main-nav a.active:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 1px;
  background: #fff;
}
.page-hero {
  position: relative;
  min-height: 690px;
  padding-top: 84px;
  background: #0b0b0c;
  color: #fff;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}
.page-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: saturate(0.45) contrast(1.08);
}
.page-hero-city:before,
.page-hero-about:before,
.page-hero-process:before,
.page-hero-faq:before,
.page-hero-knowledge:before,
.page-hero-contact:before,
.page-hero-pricing:before {
  background-image: url("assets/guangzhou-day.jpg");
}
.page-hero-business:before {
  background-image: url("assets/guangzhou-day.jpg");
  background-position: center 38%;
}
.page-hero-relocation:before {
  background-image: url("assets/guangzhou-day.jpg");
  background-position: center 55%;
}
.page-hero-trade:before {
  background-image: url("assets/factory.webp");
}
.page-hero-payments:before {
  background-image: url("assets/port.webp");
}
.page-hero-cars:before {
  background-image: url("assets/car.webp");
  background-position: center 58%;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 14, 21, 0.62),
    rgba(8, 14, 21, 0.28) 62%,
    rgba(8, 14, 21, 0.04)
  );
}
.page-hero-inner {
  position: relative;
  min-height: 606px;
  display: flex;
  align-items: center;
}
.page-hero-inner > div {
  max-width: 900px;
}
.page-hero h1 {
  font-size: clamp(44px, 5vw, 76px);
}
.breadcrumbs {
  display: flex;
  gap: 10px;
  margin-bottom: 52px;
  color: #868990;
  font-size: 11px;
}
.breadcrumbs a:hover {
  color: #fff;
}
.split-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: start;
  margin-bottom: 65px;
}
.feature-cards {
  display: grid;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}
.feature-cards.four {
  grid-template-columns: repeat(4, 1fr);
}
.feature-cards.three {
  grid-template-columns: repeat(3, 1fr);
}
.feature-cards article {
  min-height: 285px;
  padding: 30px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.feature-cards article > span {
  font-size: 10px;
  letter-spacing: 0.17em;
  color: #7d8188;
}
.feature-cards h3 {
  margin-top: 75px;
}
.feature-cards p {
  color: #6b6f76;
  font-size: 14px;
}
.content-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
  align-items: start;
}
.sticky-title {
  position: sticky;
  top: 125px;
}
.big-price {
  margin-top: 35px;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.big-price small {
  font-size: 12px;
  letter-spacing: 0.14em;
}
.content-stack {
  display: grid;
  gap: 50px;
}
.content-block {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-dark);
}
.content-block:last-child {
  border-bottom: 0;
}
.check-list,
.cross-list {
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}
.check-list li,
.cross-list li {
  position: relative;
  padding: 13px 0 13px 30px;
  border-bottom: 1px solid var(--line-dark);
  font-size: 14px;
}
.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
}
.cross-list li:before {
  content: "×";
  position: absolute;
  left: 0;
}
.note-box {
  padding: 22px 24px;
  margin: 25px 0 0;
  background: #e7e7e3;
  border-left: 2px solid #111;
  font-size: 13px;
  color: #4f5359;
}
.direction-list {
  border-top: 1px solid var(--line-dark);
}
.direction-row {
  display: grid;
  grid-template-columns: 70px 1fr 40px;
  gap: 30px;
  align-items: center;
  padding: 38px 0;
  border-bottom: 1px solid var(--line-dark);
  transition: 0.25s;
}
.direction-row:hover {
  padding-left: 14px;
}
.direction-row > span {
  font-size: 11px;
  color: #777b82;
}
.direction-row h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 3.2vw, 48px);
}
.direction-row p {
  margin: 0;
  color: #676b72;
}
.direction-row b {
  font-size: 23px;
  font-weight: 400;
}
.timeline-list {
  border-top: 1px solid var(--line-dark);
}
.timeline-list > div {
  display: grid;
  grid-template-columns: 70px 0.55fr 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-dark);
  align-items: start;
}
.timeline-list span {
  font-size: 11px;
  color: #777b82;
}
.timeline-list h3 {
  margin: 0;
}
.timeline-list p {
  margin: 0;
  color: #676b72;
}
.large-timeline > div {
  padding: 42px 0;
}
.large-timeline h3 {
  font-size: 27px;
}
.process-row.five {
  grid-template-columns: repeat(5, 1fr);
}
.internal-visuals {
  min-height: 520px;
}
.light-benefits {
  color: #111;
  border-color: var(--line-dark);
}
.light-benefits .benefit {
  border-color: var(--line-dark);
}
.light-benefits .benefit p {
  color: #676b72;
}
.car-showcase {
  position: relative;
  min-height: 650px;
  background: url("assets/mercedes-s-class.jpg") center 55% / cover no-repeat;
  color: #fff;
  display: flex;
  align-items: flex-end;
}
.car-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.88));
}
.car-showcase-content {
  position: relative;
  padding-bottom: 20px;
}
.car-showcase-content h2 {
  max-width: 830px;
}
.car-showcase-content > p:last-child {
  max-width: 680px;
  color: #d1d3d7;
}
.founder-page {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 80px;
  align-items: center;
}
.founder-page .founder-photo-placeholder {
  height: 520px;
}
.founder-page blockquote {
  font-size: 18px;
  margin: 35px 0;
  padding-left: 24px;
  border-left: 1px solid #111;
}
.faq-page-grid {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 100px;
}
.faq-page-grid aside {
  position: sticky;
  top: 125px;
  align-self: start;
}
.knowledge-grid {
  grid-template-columns: repeat(3, 1fr);
}
.knowledge-grid article {
  min-height: 350px;
}
.compact-contact {
  padding: 90px 0;
}
.compact-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
  align-items: end;
}
.compact-cta h2 {
  margin-bottom: 18px;
}
.compact-cta > div > p:last-child {
  color: #b5b7bd;
  max-width: 650px;
}
.compact-actions {
  display: flex;
  gap: 12px;
}
.full-contact {
  padding-top: 100px;
}
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 50px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.contact-cards > * {
  min-height: 140px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-cards span {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: #85888e;
}
.contact-cards strong {
  font-size: 13px;
  word-break: break-word;
}

@media (max-width: 1050px) {
  .split-intro,
  .content-grid,
  .founder-page,
  .faq-page-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .sticky-title,
  .faq-page-grid aside {
    position: static;
  }
  .feature-cards.four {
    grid-template-columns: repeat(2, 1fr);
  }
  .compact-cta {
    grid-template-columns: 1fr;
  }
  .compact-actions {
    justify-content: flex-start;
  }
}
@media (max-width: 760px) {
  .page-hero {
    min-height: 620px;
    padding-top: 72px;
  }
  .page-hero-inner {
    min-height: 548px;
    align-items: flex-end;
    padding-bottom: 65px;
  }
  .page-hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(5, 5, 6, 0.45),
      rgba(5, 5, 6, 0.96) 60%,
      #050506
    );
  }
  .breadcrumbs {
    margin-bottom: 35px;
  }
  .page-hero h1 {
    font-size: 40px;
  }
  .feature-cards.four,
  .feature-cards.three {
    grid-template-columns: 1fr;
  }
  .feature-cards article {
    min-height: 235px;
  }
  .feature-cards h3 {
    margin-top: 50px;
  }
  .direction-row {
    grid-template-columns: 40px 1fr 24px;
    gap: 12px;
    padding: 28px 0;
  }
  .direction-row h2 {
    font-size: 28px;
  }
  .timeline-list > div {
    grid-template-columns: 38px 1fr;
  }
  .timeline-list > div p {
    grid-column: 2;
  }
  .large-timeline h3 {
    font-size: 21px;
  }
  .process-row.five {
    grid-template-columns: 1fr;
  }
  .compact-actions {
    flex-direction: column;
  }
  .car-showcase {
    min-height: 560px;
  }
  .founder-page .founder-photo-placeholder {
    height: 360px;
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

/* 2026 refined visual system */
body {
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.005em;
}
h1,
h2,
h3,
h4,
.brand strong,
.price,
.big-price {
  font-family:
    "Iowan Old Style", Baskerville, "Palatino Linotype", "Book Antiqua",
    Palatino, Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}
.brand strong {
  font-family: "Avenir Next", "Helvetica Neue", sans-serif;
  font-weight: 600;
  letter-spacing: 0.16em;
}
.hero-photo {
  filter: brightness(1.22) saturate(0.82) contrast(1.03);
}
.hero-shade {
  background: linear-gradient(
    90deg,
    rgba(8, 14, 21, 0.64),
    rgba(8, 14, 21, 0.32) 58%,
    rgba(8, 14, 21, 0.05)
  );
}
.clean-hero {
  min-height: 760px;
}
.clean-hero-inner {
  min-height: 674px;
  grid-template-columns: minmax(0, 900px);
}
.clean-hero .hero-copy {
  max-width: 890px;
}
.clean-hero h1 {
  font-size: clamp(50px, 6vw, 88px);
  line-height: 1.02;
}
.clean-hero .lead {
  max-width: 760px;
  color: #eef0f2;
}
.editorial-about {
  background: #f6f5f1;
}
.editorial-grid {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 110px;
  align-items: start;
}
.editorial-copy {
  max-width: 820px;
}
.editorial-copy > p {
  font-size: 18px;
  line-height: 1.85;
  color: #45484e;
}
.editorial-copy .large-copy {
  font-size: 26px;
  color: #111;
}
.founder-line {
  display: flex;
  gap: 22px;
  align-items: center;
  margin: 42px 0 25px;
  padding-top: 32px;
  border-top: 1px solid var(--line-dark);
}
.founder-monogram {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #111;
  color: #fff;
  font-family: "Iowan Old Style", serif;
  font-size: 22px;
}
.founder-line strong,
.founder-line span {
  display: block;
}
.founder-line span {
  color: #6e7278;
  font-size: 13px;
  margin-top: 5px;
}
.editorial-copy blockquote {
  margin: 28px 0 35px;
  padding-left: 24px;
  border-left: 1px solid #111;
  font-family: "Iowan Old Style", serif;
  font-size: 22px;
  line-height: 1.55;
}
.home-faq {
  background: #fff;
}
.clean-home .faq-layout {
  grid-template-columns: 0.55fr 1.45fr;
}
.visa-choice-intro {
  max-width: 850px;
  margin-bottom: 60px;
}
.visa-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}
.visa-options article {
  padding: 42px;
  min-height: 520px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.visa-options article > span {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #777b82;
}
.visa-options h3 {
  font-size: 40px;
  margin-top: 70px;
}
.visa-options h4 {
  font-family: "Avenir Next", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 35px;
}
.single-package {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 100px;
  align-items: start;
}
.family-price-line {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 35px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.family-price-line strong {
  font-family: "Iowan Old Style", serif;
  font-size: 52px;
}
.family-price-line span {
  color: #a8abb1;
}
.trade-house-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}
.trade-house-steps article {
  min-height: 340px;
  padding: 32px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.trade-house-steps span {
  font-size: 11px;
  color: #747880;
}
.trade-house-steps h3 {
  margin-top: 90px;
  font-size: 27px;
}
.trade-house-steps p {
  color: #666a71;
}
.light-list li {
  border-color: var(--line);
  color: #d1d3d6;
}
.family-visa-note {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 30px;
  padding: 26px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.family-visa-note span {
  color: #6e7278;
  text-align: right;
}
.price-card:target {
  outline: 2px solid #111;
  outline-offset: 5px;
}
.price-card-main:target {
  outline-color: #fff;
}
.contact-details span {
  max-width: 560px;
}
.main-nav a.active:after {
  bottom: -9px;
}
.page-hero:before {
  filter: brightness(1.05) saturate(0.92) contrast(1.02);
}
.page-hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(8, 14, 21, 0.62),
    rgba(8, 14, 21, 0.28) 62%,
    rgba(8, 14, 21, 0.04)
  );
}
@media (max-width: 1050px) {
  .editorial-grid,
  .single-package {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .trade-house-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  .clean-hero {
    min-height: 690px;
  }
  .clean-hero-inner {
    min-height: 618px;
    padding-bottom: 65px;
  }
  .clean-hero h1 {
    font-size: 46px;
  }
  .editorial-grid {
    gap: 30px;
  }
  .editorial-copy .large-copy {
    font-size: 22px;
  }
  .visa-options,
  .trade-house-steps {
    grid-template-columns: 1fr;
  }
  .visa-options article {
    min-height: auto;
  }
  .visa-options h3 {
    margin-top: 45px;
  }
  .family-price-line,
  .family-visa-note {
    flex-direction: column;
    align-items: flex-start;
  }
  .family-visa-note span {
    text-align: left;
  }
  .page-hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(8, 14, 21, 0.14),
      rgba(8, 14, 21, 0.58) 62%,
      rgba(8, 14, 21, 0.82)
    );
  }
}

/* Logistics and marketplace solution pages */
.page-hero-logistics:before {
  background-image: url("assets/port.webp");
  background-position: center 58%;
}
.page-hero-marketplaces:before {
  background-image: url("assets/guangzhou-day.jpg");
  background-position: center 44%;
}
.logistics-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line-dark);
}
.logistics-option {
  min-height: 560px;
  padding: 42px;
  display: flex;
  flex-direction: column;
}
.logistics-option + .logistics-option {
  border-left: 1px solid var(--line-dark);
}
.logistics-option > span {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #777b82;
}
.logistics-option h3 {
  margin-top: 90px;
  font-size: 34px;
}
.logistics-option p {
  color: #656970;
  font-size: 16px;
  max-width: 520px;
}
.logistics-option .check-list {
  margin-top: auto;
}
.logistics-option-dark {
  background: var(--graphite);
  color: #fff;
}
.logistics-option-dark p {
  color: #b8bac0;
}
.logistics-option-dark .check-list li {
  border-color: var(--line);
}
.price-word {
  margin-top: 35px;
  font:
    600 37px/1.1 var(--display-font, Manrope),
    Arial,
    sans-serif;
  letter-spacing: -0.03em;
}
.marketplace-price-section {
  border-top: 1px solid var(--line-dark);
}
@media (max-width: 760px) {
  .logistics-options {
    grid-template-columns: 1fr;
  }
  .logistics-option {
    min-height: 470px;
    padding: 28px;
  }
  .logistics-option + .logistics-option {
    border-left: 0;
    border-top: 1px solid var(--line-dark);
  }
  .logistics-option h3 {
    margin-top: 55px;
    font-size: 29px;
  }
}

.pricing-grid.all-services {
  grid-template-columns: repeat(3, 1fr);
}
.price.price-text {
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.price-card.compact {
  min-height: 460px;
}
.family-visa-note {
  display: none;
}
@media (max-width: 760px) {
  .pricing-grid.all-services {
    grid-template-columns: 1fr;
  }
  .price.price-text {
    font-size: 24px;
  }
}

.package-inline-note {
  margin: 20px 0 24px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 12px;
  line-height: 1.55;
  color: #d7d9dd;
}
.price-card:not(.price-card-main) .package-inline-note {
  border-color: rgba(11, 11, 12, 0.18);
  color: #555a61;
  background: #f4f4f1;
}

/* Главная страница */
@media (max-width: 760px) {
  .clean-home .faq-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .clean-home .faq-layout p,
  .clean-home .faq-layout h2 {
    margin: 0 0 15px;
  }

  .editorial-grid {
    gap: 0;
  }

  .editorial-grid p,
  .editorial-grid h2 {
    margin: 0 0 15px;
  }

  .container .contact-grid p,
  .container .contact-grid h2 {
    margin: 0 0 15px;
  }
}

/* Pricng page */
@media (max-width: 960px) {
  .pricing-grid.all-services {
    grid-template-columns: repeat(2, 1fr)
  }
}
@media (max-width: 560px) {
  .pricing-grid.all-services {
    grid-template-columns: repeat(1, 1fr)
  }
}

/* Подвал */
@media (max-width: 760px) {
  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .foter__link-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

/* Обратная связь */
.consent {
  display: flex !important;
  align-items: center;
  gap: 10px;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 11px !important;
  cursor: pointer;
}

.consent input {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin: 0;
  accent-color: #fff;
  cursor: pointer;
}

.consent span {
  line-height: 1.3;
  color: #c5c8ce;
}

/* Mobile fixes */
@media (max-width: 760px) {
  .consent {
    font-size: 10px !important;
    gap: 8px;
    align-items: center;
  }

  .consent input {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 400px) {
  .consent {
    font-size: 9px !important;
    gap: 6px;
  }

  .consent input {
    width: 15px;
    height: 15px;
  }
}

.wpcf7-list-item {
  margin-left: -7px;
}
.wpcf7-list-item label {
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 11px !important;
  cursor: pointer;
  width: 100% !important;
  max-width: 100% !important;
}
.wpcf7-form p {
  margin: 0;
}

.contact-form {
  gap: 0;
}
.wpcf7-form-control.wpcf7-submit.has-spinner {
  background: #FFF !important;
  color: #000 !important;
  border-radius: 3px;
  margin-top: 12px;
}


.menu-item a[href*="#"] {
    color: inherit !important;
    /* или любой другой стиль, который отменяет активный */
}

.hero-actions--wb {
  padding-bottom: 15px;
}
@media (max-width:1310px) {
  .hero-actions--wb {
  padding-bottom: 0px;
}
}