/* ===== 子页面通用 ===== */
.page-body { background: var(--white); }

.page-banner {
  position: relative;
  min-height: clamp(320px, 46vh, 520px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 clamp(56px, 8vh, 88px);
  overflow: hidden;
}
.page-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      105deg,
      rgba(0, 16, 48, 0.88) 0%,
      rgba(0, 32, 82, 0.65) 38%,
      rgba(0, 40, 95, 0.38) 62%,
      rgba(0, 12, 38, 0.2) 100%
    ),
    linear-gradient(180deg, rgba(0, 8, 28, 0.45) 0%, transparent 50%, rgba(0, 10, 30, 0.35) 100%);
}
.page-banner .header--page {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
.page-banner .header--page.is-fixed {
  position: fixed;
}
.page-banner__inner {
  position: relative;
  z-index: 3;
  width: var(--container);
  margin: 0 auto;
  padding: clamp(88px, 12vh, 120px) 0 8px;
}
.page-banner__tag {
  display: inline-block;
  font-size: var(--fl-label);
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.page-banner__title {
  font-size: var(--fl-display);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.page-banner__desc {
  font-size: var(--fl-body);
  color: rgba(255, 255, 255, 0.9);
  max-width: 640px;
  line-height: 1.75;
}

.header--page {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.header--page.is-fixed {
  position: fixed;
}
.header--page.scrolled {
  background: rgba(0, 26, 77, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0, 58, 158, 0.3);
}
.page-banner--news-detail {
  min-height: clamp(280px, 38vh, 420px);
}
.page-banner--news-detail .page-banner__title {
  font-size: clamp(1.35rem, 2.5vw + 0.5rem, 2rem);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.header--page--solid,
.page-news-detail .header--page {
  background: rgba(0, 26, 77, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0, 58, 158, 0.3);
}
.header--page .nav__link { color: rgba(255, 255, 255, 0.9); }
.header--page .nav__link:hover,
.header--page .nav__link.active { color: var(--white); }
.header--page .nav__link.active::after { width: 100%; }
.header--page .logo__text { color: var(--white); }
.header--page .nav-toggle span { background: var(--white); }

/* ===== 公司介绍 ===== */
.company-intro {
  padding: clamp(48px, 8vw, 88px) 0;
}
.company-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.company-intro__text p {
  font-size: var(--fl-body);
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.25em;
}
.company-intro__text p:last-child { margin-bottom: 0; }
.company-intro__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.company-card {
  background: var(--grey-bg);
  padding: clamp(20px, 3vw, 28px);
  border-radius: var(--radius);
  border-left: 4px solid #d6d6d6;
  transition: transform 0.4s var(--ease-out), box-shadow var(--transition);
}
.company-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 82, 217, 0.1);
}
.company-card--green { border-left-color: var(--green); }
.company-card h3 {
  font-size: var(--fl-h4);
  color: #333;
  margin-bottom: 8px;
}
.company-card--green h3 { color: #333; }
.company-card p {
  font-size: var(--fl-sm);
  color: #666;
  line-height: 1.7;
}

.culture {
  padding: clamp(48px, 8vw, 80px) 0;
  background: linear-gradient(180deg, #f8fafc 0%, var(--grey-bg) 100%);
}
.culture__head {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 48px);
}
.culture__head .section-title { margin-bottom: 12px; }
.culture__head p {
  font-size: var(--fl-body);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}
.culture__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.culture-item {
  background: var(--white);
  padding: clamp(28px, 4vw, 40px);
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  transition: transform 0.45s var(--ease-out);
}
.culture-item:hover { transform: translateY(-6px); }
.culture-item__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(0, 82, 217, 0.1);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.culture-item h3 {
  font-size: var(--fl-h3);
  color: var(--text);
  margin-bottom: 12px;
}
.culture-item p {
  font-size: var(--fl-sm);
  color: var(--text-muted);
  line-height: 1.75;
}
.values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}
.values span {
  font-size: var(--fl-xs);
  padding: 6px 14px;
  background: rgba(0, 82, 217, 0.08);
  color: #333;
  border-radius: 20px;
}

/* benefits 在公司页略加大标题 */
.section-desc--center {
  text-align: center;
  max-width: 560px;
  margin: 12px auto 0;
}

/* ===== 产品介绍（平台） ===== */
.platform-hero {
  padding: clamp(56px, 10vw, 100px) 0 clamp(40px, 6vw, 64px);
  background: url(../images/concept_back.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.platform-hero--compact {
  padding: clamp(148px, 8vh, 172px) 0 clamp(132px, 5vh, 148px);
}
.platform-hero--compact .platform-hero__title {
  font-size: var(--fl-h1);
  margin-bottom: 12px;
}
.ysy-platform-wrap .platform-section {
  scroll-margin-top: 80px;
}
.platform-hero::before {
  content: '';
  position: absolute;
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 82, 217, 0.25) 0%, transparent 70%);
  top: -20%;
  right: -15%;
  pointer-events: none;
}
.platform-hero__inner {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  text-align: center;
}
.platform-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fl-sm);
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  margin-bottom: 24px;
}
.platform-hero__title {
  font-size: var(--fl-display);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.platform-hero__desc {
  font-size: var(--fl-lg);
  color: rgba(255, 255, 255, 0.88);
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.platform-hero__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.platform-hero__tab {
  font-size: var(--fl-body);
  padding: 12px 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.35s, transform 0.35s;
}
.platform-hero__tab:hover,
.platform-hero__tab.active {
  background: var(--white);
  color: #666;
  transform: translateY(-2px);
}

.platform-section {
  padding: clamp(64px, 10vw, 100px) 0;
  scroll-margin-top: 80px;
}
.platform-section:nth-child(even) { background: var(--grey-bg); }
.platform-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(32px, 5vw, 48px);
  flex-wrap: wrap;
}
.platform-section__num {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1;
  color: rgba(0, 82, 217, 0.08);
  flex-shrink: 0;
}
.platform-section__title-wrap { flex: 1; min-width: 200px; }
.platform-section__label {
  font-size: var(--fl-label);
  color: #666;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.platform-section__title {
  font-size: var(--fl-h1);
  color: var(--text);
  margin-bottom: 8px;
}
.platform-section__en {
  font-size: var(--fl-sm);
  color: var(--text-muted);
  text-transform: lowercase;
}
.platform-section__intro {
  font-size: var(--fl-body);
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 720px;
  margin-bottom: 40px;
}

.platform-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}
.platform-layout--reverse .platform-layout__visual { order: 2; }
.platform-layout--reverse .platform-layout__content { order: 1; }
.platform-layout__visual {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 82, 217, 0.15);
}
.platform-layout__visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.platform-layout__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 40, 100, 0.35) 100%);
  pointer-events: none;
}
.platform-features {
  display: grid;
  gap: 16px;
}
.platform-feature {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid rgba(0, 82, 217, 0.08);
  transition: box-shadow 0.4s, transform 0.4s;
}
.platform-section:nth-child(even) .platform-feature { background: var(--white); }
.platform-feature:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 28px rgba(0, 82, 217, 0.1);
}
.platform-feature__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(0, 82, 217, 0.1);
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}
.platform-feature h4 {
  font-size: var(--fl-h4);
  margin-bottom: 6px;
  color: var(--text);
}
.platform-feature p {
  font-size: var(--fl-sm);
  color: var(--text-muted);
  line-height: 1.7;
}

/* 司机端渠道 */
.driver-channels {
  margin-top: 88px;
  padding: clamp(32px, 5vw, 48px);
  border-radius: 16px;
}
.driver-channels__title {
  font-size: var(--fl-h2);
  text-align: center;
  margin-bottom: 8px;
}
.driver-channels__sub {
  font-size: var(--fl-body);
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.driver-channels__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.channel-card {
  background: var(--white);
  padding: clamp(24px, 3vw, 32px) 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transition: transform 0.45s var(--ease-spring), box-shadow 0.4s;
}
.channel-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 48px rgba(0, 82, 217, 0.15);
}
.channel-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.channel-card__icon--wechat { background: #07c160; color: #fff; }
.channel-card__icon--app { background: var(--blue); color: #fff; }
.channel-card__icon--alipay { background: #1677ff; color: #fff; }
.channel-card__icon--h5 { background: #6b4fc7; color: #fff; }
.channel-card h4 {
  font-size: var(--fl-h4);
  margin-bottom: 8px;
}
.channel-card p {
  font-size: var(--fl-sm);
  color: var(--text-muted);
  line-height: 1.65;
}

.platform-cta-inline {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fl-body);
  color: var(--blue);
  font-weight: 600;
}
.platform-cta-inline:hover { gap: 12px; }

@media (max-width: 1100px) {
  .company-intro__grid { grid-template-columns: 1fr; }
  .culture__grid { grid-template-columns: 1fr; }
  .platform-layout { grid-template-columns: 1fr; }
  .platform-layout--reverse .platform-layout__visual,
  .platform-layout--reverse .platform-layout__content { order: unset; }
  .driver-channels__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .company-intro__cards { grid-template-columns: 1fr; }
  .driver-channels__grid { grid-template-columns: 1fr; }
  .platform-section__head { flex-direction: column; align-items: flex-start; }
}

/* ===== 新闻列表 ===== */
.news-list-page {
  padding: var(--section-py, 5.5rem) 0;
}
.news-list-page__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(16px, 2vw, 24px);
  flex-wrap: wrap;
}
.news-list__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(24px, 3vw, 36px);
}
.news-list__tab {
  appearance: none;
  border: 1px solid #e5e7eb;
  background: var(--white);
  color: var(--text-muted);
  padding: 8px 22px;
  border-radius: 999px;
  font-size: var(--fl-sm);
  line-height: 1.4;
  cursor: pointer;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}
.news-list__tab:hover {
  color: var(--blue);
  border-color: rgba(0, 82, 217, 0.35);
}
.news-list__tab.is-active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.news-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 28px);
}
.news-list__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: transform 0.45s var(--ease-out), box-shadow var(--transition);
}
.news-list__link:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 82, 217, 0.12);
}
.news-list__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.news-list__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.news-list__media .news-thumb__placeholder,
.news-list__placeholder {
  width: 100%;
  height: 100%;
}
.news-list__link:hover .news-list__media img { transform: scale(1.06); }
.news-list__cat {
  position: absolute;
  left: 12px;
  top: 12px;
  font-size: var(--fl-xs);
  padding: 4px 12px;
  background: var(--blue);
  color: var(--white);
  border-radius: 20px;
}
.news-list__body {
  padding: clamp(18px, 2.5vw, 24px);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-list__body time {
  font-size: var(--fl-xs);
  color: var(--text-muted);
  margin-bottom: 10px;
}
.news-list__title {
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-list__summary {
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 14px;
}
.news-list__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 600;
  margin-top: auto;
}

/* ===== 新闻详情 ===== */
.news-detail {
  padding: clamp(6rem, 10vh, 8rem) 0 var(--section-py, 5.5rem);
}
.news-detail__wrap { max-width: 800px; }
.news-detail__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.news-detail__breadcrumb a:hover { color: var(--blue); }
.news-detail__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.news-detail__cat {
  font-size: var(--fl-xs);
  padding: 4px 14px;
  background: rgba(0, 82, 217, 0.1);
  color: var(--blue);
  border-radius: 20px;
}
.news-detail__meta time { font-size: var(--fl-sm); color: var(--text-muted); }
.news-detail__title {
  line-height: 1.35;
  margin-bottom: clamp(24px, 4vh, 40px);
  color: var(--text);
}
.news-detail__figure {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: clamp(28px, 4vh, 40px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.news-detail__figure img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.news-detail__content p {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1.25em;
  text-align: justify;
}
.news-detail__content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.25em 0;
}
.news-detail__content ul,
.news-detail__content ol {
  margin: 0 0 1.25em 1.25em;
  padding-left: 1em;
  color: var(--text-muted);
  line-height: 1.9;
}
.news-detail__content h2,
.news-detail__content h3,
.news-detail__content h4 {
  color: var(--text);
  margin: 1.5em 0 0.75em;
  line-height: 1.4;
}
.news-detail__content p:last-child { margin-bottom: 0; }
.news-detail__nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  margin-top: clamp(40px, 6vh, 64px);
  padding-top: 32px;
  border-top: 1px solid #eee;
}
.news-detail__nav-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--text);
  line-height: 1.5;
  transition: color var(--transition);
}
.news-detail__nav-item:hover:not(.is-disabled) { color: var(--blue); }
.news-detail__nav-item--next { text-align: right; }
.news-detail__nav-item.is-disabled {
  color: var(--text-muted);
  pointer-events: none;
}
.news-detail__nav-label { color: var(--text-muted); }
.news-detail__back {
  color: var(--blue);
  font-weight: 600;
  white-space: nowrap;
  padding: 10px 20px;
  border: 1px solid rgba(0, 82, 217, 0.25);
  border-radius: 24px;
  transition: background var(--transition);
}
.news-detail__back:hover {
  background: rgba(0, 82, 217, 0.06);
}

.footer__nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav-links a {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
}
.footer__nav-links a:hover { color: var(--white); }

/* ===== 全国合伙人 ===== */
.partner-intro {
  padding: var(--section-py, 5.5rem) 0;
}
.partner-intro__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}
.partner-intro__text p { margin-bottom: 1.25em; }
.partner-intro__text p:last-child { margin-bottom: 0; }
.partner-stats {
  display: grid;
  gap: 20px;
}
.partner-stat {
  background: linear-gradient(135deg, rgba(0, 82, 217, 0.08) 0%, rgba(64, 150, 255, 0.08) 100%);
  padding: clamp(24px, 3vw, 32px);
  border-radius: 8px;
}
.partner-stat__num {
  color: #333;
  margin-bottom: 6px;
}
.partner-stat span { color: var(--text-muted); }

.partner-benefits {
  padding: var(--section-py-sm, 4.5rem) 0;
  background: var(--grey-bg);
}
.partner-benefits .section-title { margin-bottom: var(--section-gap, 3rem); }
.partner-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.partner-benefit-card {
  background: var(--white);
  padding: clamp(24px, 3vw, 32px);
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
  transition: transform 0.45s var(--ease-out);
}
.partner-benefit-card:hover { transform: translateY(-6px); }
.partner-benefit-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(0, 82, 217, 0.1);
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.partner-benefit-card h3 { margin-bottom: 10px; }
.partner-benefit-card p { color: var(--text-muted); line-height: 1.7; }

.partner-fit {
  padding: var(--section-py, 5.5rem) 0;
}
.partner-fit__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 72px);
}
.partner-fit__list {
  list-style: none;
  margin-top: 24px;
}
.partner-fit__list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}
.partner-fit__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.partner-process {
  background: var(--grey-bg);
  padding: clamp(28px, 4vw, 40px);
  border-radius: 12px;
}
.partner-process h3 { margin-bottom: 24px; color: var(--text); }
.partner-process__steps {
  list-style: none;
  counter-reset: step;
}
.partner-process__steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--text-muted);
}
.partner-process__steps li:last-child { border-bottom: none; }
.partner-process__steps li span {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #333;
  color: var(--white);
  font-weight: 700;
  font-size: var(--fl-xs);
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-apply {
  position: relative;
  padding: clamp(5rem, 10vh + 2rem, 8rem) 0;
  scroll-margin-top: 80px;
}
.partner-apply__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #001a4d 0%, #0052d9 45%, #003d8f 100%);
  z-index: 0;
}
.partner-apply__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.partner-apply__head {
  text-align: center;
  margin-bottom: clamp(32px, 5vh, 48px);
  color: var(--white);
}
.partner-apply__head h2 { margin-bottom: 16px; }
.partner-apply__head p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
}
.partner-apply__head a {
  color: #7ec8ff;
  text-decoration: underline;
}
.partner-form {
  background: var(--white);
  padding: clamp(28px, 4vw, 40px);
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}
.partner-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.partner-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.partner-form__field--full { grid-column: 1 / -1; }
.partner-form__field span { color: var(--text-muted); font-weight: 500; }
.partner-form__field input,
.partner-form__field textarea {
  font-family: var(--font);
  font-size: var(--fl-body);
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.partner-form__field input:focus,
.partner-form__field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 82, 217, 0.12);
}
.partner-form__field textarea { resize: vertical; min-height: 100px; }
.partner-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 24px;
  padding: 16px 32px;
  background: #333;
  color: var(--white);
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.35s, transform 0.35s;
}
.partner-form__submit:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}
.partner-form__tip {
  text-align: center;
  margin-top: 16px;
  color: var(--text-muted);
}

@media (max-width: 1100px) {
  .news-list__grid { grid-template-columns: repeat(2, 1fr); }
  .partner-benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .partner-intro__grid,
  .partner-fit__layout { grid-template-columns: 1fr; }
}

@media (max-width: 992px) {
  .ysy-mission__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ysy-mission__card {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .news-list__grid { grid-template-columns: 1fr; }
  .news-detail__nav {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .news-detail__nav-item--next { text-align: center; }
  .partner-benefits__grid { grid-template-columns: 1fr; }
  .partner-form__grid { grid-template-columns: 1fr; }
  .benefits-showcase__stats { flex-direction: column; gap: 24px; }
  .benefits-showcase__stat-divider { width: 60px; height: 1px; }
  .benefits-showcase__grid { grid-template-columns: 1fr; }
  .solution-nav__inner { justify-content: flex-start; overflow-x: auto; }
  .solution-block__inner,
  .solution-block__inner--reverse { grid-template-columns: 1fr; }
  .solution-block__inner--reverse .solution-block__visual { order: -1; }
  .ysy-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .ysy-mission {
    padding: clamp(3rem, 8vw, 4.5rem) 0;
  }
  .ysy-mission__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }
  .ysy-mission__text .section-title {
    margin-bottom: 16px;
  }
  .ysy-solutions-entry__grid { grid-template-columns: 1fr; }
  .ysy-platform__grid { grid-template-columns: 1fr; }
  .ysy-hero__actions { flex-direction: column; }
}

/* ===== 数字化服务展示（公司介绍页） ===== */
.benefits-showcase {
  position: relative;
  padding: clamp(5rem, 12vh, 9rem) 0;
  overflow: hidden;
  color: var(--white);
}
.benefits-showcase__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.benefits-showcase__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.benefits-showcase__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(0, 25, 70, 0.92) 0%,
    rgba(0, 55, 140, 0.85) 45%,
    rgba(0, 58, 158, 0.75) 100%
  );
}
.benefits-showcase__glow {
  position: absolute;
  right: -10%;
  top: 20%;
  width: 50vw;
  max-width: 600px;
  height: 50vw;
  max-height: 600px;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle, rgba(0, 200, 255, 0.25) 0%, transparent 70%);
  filter: blur(40px);
}
.benefits-showcase__inner {
  position: relative;
  z-index: 2;
}
.benefits-showcase__head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(40px, 6vh, 64px);
}
.benefits-showcase__tag {
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}
.benefits-showcase__title {
  line-height: 1.15;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #a8e0ff 50%, #69b1ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@supports not (background-clip: text) {
  .benefits-showcase__title { color: var(--white); }
}
.benefits-showcase__sub {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
}
.benefits-showcase__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 56px);
  margin-bottom: clamp(48px, 8vh, 72px);
  padding: clamp(28px, 4vw, 40px) clamp(20px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(12px);
}
.benefits-showcase__stat {
  text-align: center;
  flex: 1;
  min-width: 120px;
}
.benefits-showcase__stat-num {
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.1;
}
.benefits-showcase__stat span {
  color: rgba(255, 255, 255, 0.75);
}
.benefits-showcase__stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}
.benefits-showcase__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.benefits-showcase__card {
  position: relative;
  padding: clamp(28px, 3vw, 36px) clamp(20px, 2.5vw, 28px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: transform 0.5s var(--ease-out), background 0.4s, border-color 0.4s;
}
.benefits-showcase__card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
}
.benefits-showcase__card-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.08);
}
.benefits-showcase__card-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.benefits-showcase__card-icon--1 { background: rgba(0, 150, 255, 0.25); color: #7ec8ff; }
.benefits-showcase__card-icon--2 { background: rgba(64, 150, 255, 0.25); color: #7ec8ff; }
.benefits-showcase__card-icon--3 { background: rgba(255, 160, 0, 0.25); color: #ffc266; }
.benefits-showcase__card-icon--4 { background: rgba(160, 120, 255, 0.25); color: #c4b5fd; }
.benefits-showcase__card h3 {
  margin-bottom: 12px;
  color: var(--white);
}
.benefits-showcase__card p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}

@media (max-width: 1100px) {
  .benefits-showcase__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== 解决方案页 ===== */
.solution-nav {
  position: sticky;
  top: 64px;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.solution-nav__inner {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 14px 0;
  flex-wrap: wrap;
}
.solution-nav__link {
  padding: 10px 22px;
  border-radius: 24px;
  color: var(--text-muted);
  font-weight: 500;
  transition: background 0.35s, color 0.35s;
}
.solution-nav__link:hover,
.solution-nav__link.active {
  background: #333;
  color: var(--white);
}
.solution-block {
  padding: var(--section-py, 5.5rem) 0;
  scroll-margin-top: 120px;
}
.solution-block--alt { background: var(--grey-bg); }
.solution-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}
.solution-block__inner--reverse .solution-block__visual { order: 2; }
.solution-block__inner--reverse .solution-block__content { order: 1; }
.solution-block__num {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  color: rgba(0, 82, 217, 0.1);
  display: block;
  margin-bottom: 8px;
}
.solution-block__label {
  color: #666;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.solution-block__title { margin-bottom: 16px; }
.solution-block__lead {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 24px;
}
.solution-block__points {
  list-style: none;
  margin-bottom: 28px;
}
.solution-block__points li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  color: var(--text-muted);
  line-height: 1.7;
}
.solution-block__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.solution-block__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-weight: 600;
}
.solution-block__cta:hover { gap: 12px; }
.solution-block__visual {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 82, 217, 0.15);
}
.solution-block__visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ===== 亿升油品牌页 ===== */
.ysy-hero {
  position: relative;
  min-height: clamp(320px, 46vh, 520px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(7.5rem, 14vh, 11rem) 0 clamp(5rem, 10vh, 8rem);
  background: linear-gradient(145deg, #001433 0%, #003a9e 40%, #0052d9 70%, #002d6e 100%);
  overflow: hidden;
  color: var(--white);
  text-align: center;
}
.page-body > .header--page + .ysy-hero {
  padding-top: clamp(6.5rem, 12vh, 9.5rem);
}
.ysy-hero__aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.ysy-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  mix-blend-mode: screen;
  opacity: 0.65;
}
.ysy-hero__orb--1 {
  width: min(70vw, 800px);
  height: min(70vw, 800px);
  left: 60%;
  top: 30%;
  margin: calc(min(70vw, 800px) / -2) 0 0 calc(min(70vw, 800px) / -2);
  background: rgba(100, 200, 255, 0.5);
  animation: heroOrbRotate1 26s linear infinite;
}
.ysy-hero__orb--2 {
  width: min(55vw, 640px);
  height: min(55vw, 640px);
  left: 20%;
  top: 55%;
  margin: calc(min(55vw, 640px) / -2) 0 0 calc(min(55vw, 640px) / -2);
  background: rgba(64, 150, 255, 0.4);
  animation: heroOrbRotate2 32s linear infinite reverse;
}
.ysy-hero__inner { position: relative; z-index: 1; }
.ysy-hero__tag {
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.ysy-hero__title {
  margin-bottom: 12px;
  background: linear-gradient(135deg, #fff, #a8e0ff, #69b1ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@supports not (background-clip: text) {
  .ysy-hero__title { color: var(--white); }
}
.ysy-hero__slogan {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 20px;
}
.ysy-hero__desc {
  max-width: 640px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
}
.ysy-hero__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.ysy-hero__btn {
  padding: 14px 32px;
  border-radius: 28px;
  font-weight: 600;
  transition: transform 0.35s, background 0.35s;
}
.ysy-hero__btn--primary {
  background: var(--white);
  color: var(--blue);
}
.ysy-hero__btn--primary:hover { transform: translateY(-2px); }
.ysy-hero__btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
}
.ysy-hero__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.ysy-stats {
  padding: clamp(40px, 6vh, 56px) 0;
  background: var(--white);
  margin-top: -40px;
  position: relative;
  z-index: 2;
}
.ysy-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(32px, 4vw, 48px);
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 82, 217, 0.12);
}
.ysy-stat {
  text-align: center;
  padding: 12px;
}
.ysy-stat__num {
  color: #333;
  margin-bottom: 6px;
}
.ysy-stat span { color: var(--text-muted); }

.ysy-mission {
  padding: var(--section-py, 5.5rem) 0;
}
.ysy-mission__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}
.ysy-mission__text .section-title {
  margin-bottom: 20px;
}
.ysy-mission__text p { margin-bottom: 1.25em; }
.ysy-mission__text p:last-child { margin-bottom: 0; }
.ysy-mission__card {
  background: var(--grey-bg);
  padding: clamp(28px, 4vw, 36px);
  border-radius: 12px;
}
.ysy-mission__card h3 { margin-bottom: 16px; color: #333; }
.ysy-mission__card ul { list-style: none; }
.ysy-mission__card li {
  padding: 8px 0;
  padding-left: 18px;
  position: relative;
  color: var(--text-muted);
  line-height: 1.6;
}
.ysy-mission__card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.ysy-solutions-entry {
  padding: var(--section-py-sm, 4.5rem) 0;
  background: linear-gradient(180deg, #f8fafc 0%, var(--grey-bg) 100%);
}
.ysy-solutions-entry__head { margin-bottom: var(--section-gap, 3rem); }
.ysy-solutions-entry__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ysy-entry-card {
  display: block;
  padding: clamp(28px, 3vw, 36px) 24px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(0, 82, 217, 0.1);
  transition: transform 0.45s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
}
.ysy-entry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 82, 217, 0.14);
  border-color: var(--blue);
}
.ysy-entry-card__num {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  color: rgba(0, 82, 217, 0.12);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}
.ysy-entry-card h3 { margin-bottom: 8px; color: var(--text); }
.ysy-entry-card p { color: var(--text-muted); }

.ysy-platform {
  padding: var(--section-py, 5.5rem) 0;
}
.ysy-platform__sub {
  text-align: center;
  max-width: 560px;
  margin: 12px auto var(--section-gap, 3rem);
}
.ysy-platform__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ysy-platform-card {
  padding: clamp(32px, 4vw, 40px);
  background: var(--grey-bg);
  border-radius: 12px;
  border-top: 4px solid var(--blue);
  transition: transform 0.4s var(--ease-out);
}
.ysy-platform-card:hover { transform: translateY(-6px); }
.ysy-platform-card h3 { margin-bottom: 12px; color: var(--blue); }
.ysy-platform-card p { color: var(--text-muted); line-height: 1.75; }

.ysy-eco {
  position: relative;
  padding: var(--section-py-sm, 4.5rem) 0;
  overflow: hidden;
  color: var(--white);
}
.ysy-eco__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ysy-eco__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ysy-eco__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.58) 45%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 40%, rgba(0, 0, 0, 0.45) 100%);
}
.ysy-eco__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.ysy-eco h2 { color: var(--white); margin-bottom: 16px; }
.ysy-eco p { color: rgba(255, 255, 255, 0.85); margin-bottom: 24px; line-height: 1.8; }
.ysy-eco__links { display: flex; flex-wrap: wrap; gap: 24px; }
.ysy-eco__link {
  color: #7ec8ff;
  font-weight: 600;
}
.ysy-eco__link:hover { text-decoration: underline; }

@media (max-width: 1100px) {
  .ysy-solutions-entry__grid { grid-template-columns: repeat(2, 1fr); }
  .ysy-stats__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== 联系我们 ===== */
.contact-page {
  padding: var(--section-py, 5.5rem) 0;
}
.contact-page__layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}
.contact-info__intro {
  margin: 12px 0 28px;
  line-height: 1.75;
}
.contact-info__list {
  list-style: none;
  margin-bottom: 32px;
}
.contact-info__item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}
.contact-info__item:first-child { padding-top: 0; }
.contact-info__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(0, 82, 217, 0.1);
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
}
.contact-info__icon svg {
  flex-shrink: 0;
  display: block;
}
.contact-info__body {
  flex: 1;
  min-width: 0;
}
.contact-info__label {
  display: block;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-info__value {
  color: var(--text);
  font-weight: 600;
  line-height: 1.5;
  font-size: var(--fl-body);
  word-break: break-word;
}
a.contact-info__value:hover { color: var(--blue); }
.contact-info__quick h3 { margin-bottom: 14px; }
.contact-info__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.contact-info__tags a {
  padding: 8px 16px;
  background: var(--grey-bg);
  border-radius: 20px;
  color: #666;
  font-weight: 500;
  transition: background 0.35s;
}
.contact-info__tags a:hover {
  background: rgba(0, 82, 217, 0.12);
}

.contact-form-wrap {
  background: var(--white);
  padding: clamp(28px, 4vw, 40px);
  border-radius: 12px;
  border: 1px solid #eee;
  box-shadow: 0 12px 40px rgba(0, 82, 217, 0.08);
}
.contact-form-wrap__tip { margin-bottom: 24px; }
.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form__field--full { grid-column: 1 / -1; }
.contact-form__field span { color: var(--text-muted); font-weight: 500; }
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  font-family: var(--font);
  font-size: var(--fl-body);
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-form__field select { cursor: pointer; }
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 82, 217, 0.12);
}
.contact-form__field textarea { resize: vertical; min-height: 120px; }
.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 24px;
  padding: 16px 32px;
  background: #333;
  color: var(--white);
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.35s, transform 0.35s;
}
.contact-form__submit:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}
.contact-form__captcha { margin-top: 8px; }
.contact-form__tip {
  text-align: center;
  margin-top: 16px;
  color: var(--text-muted);
}
.contact-form__tip.is-success { color: #0a7a3e; }
.contact-form__tip.is-error { color: #c0392b; }
.partner-form__tip.is-success { color: #0a7a3e; }
.partner-form__tip.is-error { color: #c0392b; }

.contact-map {
  padding: var(--section-py-sm, 4.5rem) 0 var(--section-py, 5.5rem);
  background: var(--grey-bg);
}
.contact-map__addr {
  text-align: center;
  margin: 12px 0 28px;
}
.contact-map__frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}
.contact-map__frame img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  filter: saturate(0.85);
}
.contact-map__pin {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}
.contact-map__pin span {
  color: var(--blue);
  font-weight: 600;
}

@media (max-width: 992px) {
  .contact-page__layout { grid-template-columns: 1fr; }
  .contact-form__grid { grid-template-columns: 1fr; }
}
