@charset "UTF-8";

body.service-page {
  background:
    radial-gradient(
      circle at 12% 10%,
      rgba(0, 102, 204, 0.14),
      transparent 24%
    ),
    radial-gradient(circle at 88% 8%, rgba(0, 184, 148, 0.12), transparent 22%),
    linear-gradient(180deg, #edf4fb 0%, #f8fbff 34%, #f4fbf8 100%);
  overflow-x: hidden;
}

.service-page .main-header {
  background: #fff;
  backdrop-filter: none;
  border-bottom-color: rgba(0, 102, 204, 0.08);
}

.service-page .feature-hero,
.service-page .error-main {
  position: relative;
  overflow: hidden;
}

.service-page .feature-hero {
  min-height: 76vh;
  padding: 140px 0 110px;
}

.service-page .feature-hero-bg,
.service-page .feature-hero-overlay,
.service-page .feature-hero-grid {
  position: absolute;
  inset: 0;
}

.service-page .feature-hero-bg {
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: brightness(0.42) saturate(1.04);
  transform: scale(1.04);
}

.service-page .feature-hero-overlay {
  background:
    linear-gradient(
      135deg,
      rgba(7, 24, 46, 0.92) 0%,
      rgba(8, 40, 78, 0.72) 48%,
      rgba(0, 102, 204, 0.34) 100%
    ),
    radial-gradient(
      circle at 18% 18%,
      rgba(0, 184, 148, 0.16),
      transparent 24%
    ),
    radial-gradient(
      circle at 82% 22%,
      rgba(102, 204, 255, 0.18),
      transparent 28%
    );
}

.service-page .feature-hero-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.24;
}

.service-page .feature-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(300px, 0.84fr);
  gap: 30px;
  align-items: end;
  min-width: 0;
}

.service-page .feature-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.74);
}

.service-page .feature-breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.service-page .feature-breadcrumb span {
  opacity: 0.7;
}

.service-page .feature-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #9ad6ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.service-page .feature-title {
  margin: 18px 0 16px;
  color: #fff;
  font-size: clamp(42px, 5.2vw, 68px);
  line-height: 1.08;
  letter-spacing: 1px;
}

.service-page .feature-subtitle {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.service-page .feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 0;
  margin-left: 32px;
  /* display: flex; */
  justify-content: center;
  position: relative;
}

.service-page .feature-tags span {
  padding: 16px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.service-page .feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.service-page .feature-primary-btn,
.service-page .feature-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.service-page .feature-primary-btn {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 18px 40px rgba(0, 102, 204, 0.28);
}

.service-page .feature-secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.service-page .feature-primary-btn:hover,
.service-page .feature-secondary-btn:hover {
  transform: translateY(-3px);
}

.service-page .feature-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.14);
}

.service-page .feature-hero-card,
.service-page .feature-panel,
.service-page .feature-card,
.service-page .coverage-card,
.service-page .project-feed-card,
.service-page .quick-link-card,
.service-page .error-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 64px rgba(11, 33, 57, 0.1);
  max-width: 100%;
  min-width: 0;
}

.service-page .feature-hero-card {
  padding: 30px;
  background: rgba(7, 26, 48, 0.62);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  color: #fff;
}

.service-page .feature-hero-card::before,
.service-page .feature-panel::before,
.service-page .feature-card::before,
.service-page .coverage-card::before,
.service-page .project-feed-card::before,
.service-page .quick-link-card::before,
.service-page .error-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    transparent 38%,
    rgba(0, 184, 148, 0.06)
  );
  pointer-events: none;
}

.service-page .feature-panel,
.service-page .feature-card,
.service-page .coverage-card,
.service-page .project-feed-card,
.service-page .quick-link-card,
.service-page .error-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
}

.service-page .hero-card-kicker,
.service-page .feature-section-kicker,
.service-page .feature-card span,
.service-page .project-badge,
.service-page .quick-link-card span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.service-page .hero-card-title {
  position: relative;
  z-index: 1;
  margin: 14px 0 10px;
  font-size: 30px;
  line-height: 1.2;
}

.service-page .hero-card-copy {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.85;
}

.service-page .hero-card-list,
.service-page .feature-checklist,
.service-page .feature-chip-list,
.service-page .coverage-card ul {
  position: relative;
  z-index: 1;
  list-style: none;
}

.service-page .hero-card-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
}

.service-page .hero-card-list li {
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
}

.service-page .hero-card-list li::before,
.service-page .feature-checklist li::before,
.service-page .feature-process-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #58c8ff, #55efc4);
}

.service-page .feature-mini-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.service-page .feature-mini-stats article {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-page .feature-mini-stats strong {
  display: block;
  color: #fff;
  font-size: 20px;
}

.service-page .feature-mini-stats span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.service-page .feature-main {
  position: relative;
  z-index: 2;
  margin-top: -48px;
  padding-bottom: 78px;
}

.service-page .feature-section {
  padding-bottom: 28px;
}

.service-page .feature-overview-grid,
.service-page .feature-dual-grid,
.service-page .feature-cta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-page .feature-panel {
  padding: 34px;
}

.service-page .feature-panel h2,
.service-page .feature-panel h3,
.service-page .feature-card h3,
.service-page .coverage-card h3,
.service-page .project-feed-card h3,
.service-page .quick-link-card h3,
.service-page .error-card h2 {
  position: relative;
  z-index: 1;
  color: var(--text-dark);
}

.service-page .feature-panel h2 {
  margin: 12px 0 0;
  font-size: 34px;
  line-height: 1.25;
}

.service-page .feature-panel h3,
.service-page .feature-card h3,
.service-page .coverage-card h3,
.service-page .project-feed-card h3,
.service-page .quick-link-card h3 {
  margin: 12px 0 14px;
  font-size: 24px;
  line-height: 1.35;
}

.service-page .feature-panel .feature-lead {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.88;
}

.service-page .feature-panel p,
.service-page .feature-card p,
.service-page .coverage-card p,
.service-page .project-feed-card p,
.service-page .quick-link-card p,
.service-page .error-card p {
  position: relative;
  z-index: 1;
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.92;
  overflow-wrap: anywhere;
}

.service-page .feature-panel p + p {
  margin-top: 14px;
}

.service-page .feature-checklist {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.service-page .feature-checklist li {
  position: relative;
  padding-left: 18px;
}

.service-page .feature-checklist strong {
  display: block;
  color: var(--text-dark);
  font-size: 16px;
}

.service-page .feature-checklist span {
  display: block;
  margin-top: 6px;
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.8;
}

.service-page .feature-card-grid,
.service-page .coverage-grid,
.service-page .project-feed-grid,
.service-page .quick-link-grid {
  display: grid;
  gap: 20px;
}

.service-page .feature-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page .feature-card,
.service-page .coverage-card,
.service-page .project-feed-card,
.service-page .quick-link-card {
  padding: 30px;
}

.service-page .feature-card span {
  min-width: 48px;
}

.service-page .feature-card p,
.service-page .coverage-card p,
.service-page .project-feed-card p,
.service-page .quick-link-card p {
  margin: 0;
}

.service-page .feature-process-list {
  counter-reset: step;
  display: grid;
  gap: 14px;
  list-style: none;
  position: relative;
  z-index: 1;
  margin-top: 20px;
}

.service-page .feature-process-list li {
  position: relative;
  padding: 16px 18px 16px 54px;
  border-radius: 20px;
  background: rgba(0, 102, 204, 0.06);
  border: 1px solid rgba(0, 102, 204, 0.08);
}

.service-page .feature-process-list li::before {
  counter-increment: step;
  content: counter(step);
  left: 18px;
  top: 16px;
  width: 24px;
  height: 24px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.service-page .feature-process-list strong {
  display: block;
  color: var(--text-dark);
  font-size: 15px;
}

.service-page .feature-process-list span {
  display: block;
  margin-top: 6px;
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.75;
}

.service-page .feature-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.service-page .feature-chip-list li {
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(0, 102, 204, 0.08);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
}

.service-page .feature-cta-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, #091d36, #0e4970);
  box-shadow: 0 28px 70px rgba(7, 25, 45, 0.22);
}

.service-page .feature-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 16% 18%,
      rgba(88, 225, 255, 0.12),
      transparent 24%
    ),
    radial-gradient(
      circle at 82% 12%,
      rgba(85, 239, 196, 0.14),
      transparent 28%
    );
}

.service-page .feature-cta-copy,
.service-page .feature-cta-actions {
  position: relative;
  z-index: 1;
}

.service-page .feature-cta-copy h2 {
  margin: 12px 0 0;
  color: #fff;
  font-size: 34px;
  line-height: 1.25;
}

.service-page .feature-cta-copy p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.88;
}

.service-page .feature-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.service-page .feature-cta-card .feature-secondary-btn {
  border-color: rgba(255, 255, 255, 0.16);
}

.service-page .coverage-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page .coverage-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 6px;
  color: var(--text-dark);
  font-size: 16px;
}

.service-page .coverage-card ul {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.service-page .coverage-card li {
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.75;
}

.service-page .map-stage {
  position: relative;
  min-height: 360px;
  margin-top: 20px;
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 18% 20%,
      rgba(88, 225, 255, 0.18),
      transparent 20%
    ),
    radial-gradient(
      circle at 80% 16%,
      rgba(0, 184, 148, 0.16),
      transparent 24%
    ),
    linear-gradient(145deg, #0b223d 0%, #0c355b 44%, #0c4b68 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.service-page .map-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.3;
}

.service-page .map-stage::after {
  content: "";
  position: absolute;
  inset: 14% 18%;
  border-radius: 46% 54% 58% 42% / 40% 46% 54% 60%;
  background: linear-gradient(
    135deg,
    rgba(84, 164, 255, 0.18),
    rgba(85, 239, 196, 0.12)
  );
  filter: blur(2px);
}

.service-page .map-node {
  position: absolute;
  z-index: 1;
  display: grid;
  gap: 6px;
  min-width: 140px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  color: #fff;
  box-shadow: 0 18px 34px rgba(5, 18, 34, 0.18);
}

.service-page .map-node::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #55efc4;
  box-shadow: 0 0 0 8px rgba(85, 239, 196, 0.14);
  transform: translateY(-50%);
}

.service-page .map-node strong,
.service-page .map-node span {
  position: relative;
  z-index: 1;
  padding-left: 28px;
}

.service-page .map-node strong {
  font-size: 16px;
}

.service-page .map-node span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.65;
}

.service-page .map-node-xinlong {
  left: 18%;
  top: 44%;
}

.service-page .map-node-yajiang {
  left: 58%;
  top: 24%;
}

.service-page .map-node-yibin {
  left: 62%;
  top: 66%;
}

.service-page .project-feed-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-page .project-feed-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.service-page .project-feed-head em {
  color: var(--text-gray);
  font-size: 13px;
  font-style: normal;
}

.service-page .project-badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 102, 204, 0.08);
}

.service-page .project-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.service-page .project-meta span {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(0, 184, 148, 0.08);
  color: #0a836d;
  font-size: 12px;
  font-weight: 700;
}

.service-page .quick-link-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.service-page .quick-link-card {
  text-decoration: none;
}

.service-page .quick-link-card h3 {
  margin-top: 16px;
}

.service-page.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.service-page.error-page .error-main {
  padding: 150px 0 72px;
  flex: 1;
}

.service-page .error-card {
  max-width: 880px;
  margin: 0 auto;
  padding: 44px;
  text-align: center;
}

.service-page .error-code {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 14px 26px;
  border-radius: 999px;
  background: rgba(0, 102, 204, 0.08);
  color: var(--primary);
  font-size: clamp(54px, 8vw, 88px);
  font-weight: 800;
  letter-spacing: 4px;
}

.service-page .error-card h1 {
  position: relative;
  z-index: 1;
  margin: 22px 0 16px;
  color: var(--text-dark);
  font-size: clamp(32px, 4vw, 48px);
}

.service-page .error-card p {
  max-width: 620px;
  margin: 0 auto;
}

.service-page .error-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.service-page .error-links {
  margin-top: 32px;
}

.service-page .main-footer {
  margin-top: auto;
}

@media (max-width: 1200px) {
  .service-page .feature-hero-inner,
  .service-page .feature-overview-grid,
  .service-page .feature-dual-grid,
  .service-page .feature-cta-grid,
  .service-page .coverage-grid,
  .service-page .project-feed-grid,
  .service-page .quick-link-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .service-page .feature-main {
    margin-top: -28px;
    padding-bottom: 60px;
  }

  .service-page .feature-hero {
    min-height: auto;
    padding-top: 128px;
    padding-bottom: 88px;
  }

  .service-page .feature-card-grid {
    grid-template-columns: 1fr;
  }

  .service-page .feature-cta-actions {
    justify-content: flex-start;
  }

  .service-page .map-stage {
    min-height: 480px;
  }
}

@media (max-width: 768px) {
  .service-page .header-inner {
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .service-page .header-logo img {
    height: 38px;
  }

  .service-page .header-nav {
    width: 100%;
  }

  .service-page .header-nav ul {
    flex-wrap: wrap;
    gap: 6px;
  }

  .service-page .header-nav a {
    padding: 8px 12px;
    font-size: 13px;
  }

  .service-page .header-actions {
    display: none;
  }

  .service-page .feature-title {
    font-size: clamp(34px, 9vw, 44px);
  }

  .service-page .feature-panel,
  .service-page .feature-card,
  .service-page .coverage-card,
  .service-page .project-feed-card,
  .service-page .quick-link-card,
  .service-page .error-card,
  .service-page .feature-cta-card,
  .service-page .feature-hero-card {
    padding: 24px;
    border-radius: 24px;
  }

  .service-page .feature-mini-stats {
    grid-template-columns: 1fr;
  }

  .service-page .feature-primary-btn,
  .service-page .feature-secondary-btn {
    width: 100%;
  }

  .service-page .map-node {
    min-width: 0;
    width: calc(100% - 36px);
  }

  .service-page .map-node-xinlong {
    left: 18px;
    top: 26px;
  }

  .service-page .map-node-yajiang {
    left: 18px;
    top: 164px;
  }

  .service-page .map-node-yibin {
    left: 18px;
    top: 302px;
  }
}

@media (max-width: 576px) {
  .service-page .feature-hero {
    padding-top: 114px;
    padding-bottom: 72px;
  }

  .service-page .feature-breadcrumb {
    font-size: 13px;
  }

  .service-page .feature-subtitle {
    font-size: 16px;
  }

  .service-page .feature-panel h2,
  .service-page .feature-cta-copy h2 {
    font-size: 28px;
  }

  .service-page .hero-card-title {
    font-size: 26px;
  }

  .service-page .feature-actions,
  .service-page .error-actions {
    flex-direction: column;
  }

  .service-page .error-main {
    padding-top: 130px;
  }
}

/* ==================== 大屏展示型业务页 ==================== */
body.service-display-page {
  min-height: 100vh;
  background: #07172a;
}

.service-display-page .feature-main,
.service-display-page .main-footer,
.service-display-page .wechat-float,
.service-display-page .back-top {
  display: none;
}

.service-display-page .animate-on-scroll {
  opacity: 1;
  transform: none;
}

.service-display-page .main-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.46);
  box-shadow: 0 10px 34px rgba(7, 23, 42, 0.1);
}

.service-display-page .feature-hero {
  min-height: 100vh;
  padding: clamp(98px, 10vh, 136px) clamp(26px, 4.4vw, 84px)
    clamp(32px, 5vh, 72px);
  display: flex;
  align-items: stretch;
  background: linear-gradient(
    115deg,
    rgba(5, 17, 31, 0.94) 0%,
    rgba(9, 35, 55, 0.89) 46%,
    rgba(233, 242, 244, 0.96) 46.2%,
    rgba(246, 250, 250, 0.98) 100%
  );
}

.service-display-page .feature-hero-bg {
  display: none;
  filter: brightness(0.92) saturate(1.08);
  transform: none;
}

.service-display-page .feature-hero-overlay {
  background:
    radial-gradient(
      circle at 14% 34%,
      rgba(85, 239, 196, 0.13),
      transparent 24%
    ),
    radial-gradient(circle at 84% 14%, rgba(0, 102, 204, 0.08), transparent 24%);
}

.service-display-page .feature-hero-grid {
  opacity: 0.08;
  background-size: 88px 88px;
}

.service-display-page .feature-hero-inner {
  width: 100%;
  max-width: 1680px;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(430px, 0.78fr) minmax(390px, 0.58fr);
  gap: clamp(34px, 5vw, 92px);
  align-items: center;
  align-content: center;
}

.service-display-page .feature-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-display-page .feature-breadcrumb,
.service-display-page .feature-actions {
  display: none;
}

.service-display-page .feature-eyebrow,
.service-display-page .hero-card-kicker,
.service-display-page .feature-tags span {
  letter-spacing: 0;
}

.service-display-page .feature-eyebrow {
  align-self: flex-start;
  padding: 9px 13px;
  border-radius: 8px;
  background: rgba(85, 239, 196, 0.12);
  border-color: rgba(85, 239, 196, 0.28);
  color: #bfffea;
}

.service-display-page .feature-title {
  max-width: 980px;
  margin: clamp(30px, 6vh, 72px) 0 clamp(22px, 4vh, 42px);
  font-size: clamp(52px, 6vw, 104px);
  line-height: 1.02;
  letter-spacing: 0;
}

.service-display-page .feature-subtitle {
  max-width: 600px;
  font-size: clamp(19px, 1.5vw, 30px);
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.9);
}

.service-display-page .feature-tags {
  gap: 10px;
  margin-top: clamp(24px, 4vh, 42px);
}

.service-display-page .feature-tags span {
  min-height: 42px;
  padding: 10px 15px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
  font-size: clamp(14px, 0.9vw, 18px);
}

.service-display-page .feature-hero-card {
  display: none !important;
  align-self: end;
  justify-self: end;
  width: min(560px, 100%);
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3vw, 48px);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 4px solid #55efc4;
  background: rgba(5, 18, 32, 0.58);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.service-display-page .feature-hero-card::before {
  background: linear-gradient(
    135deg,
    rgba(85, 239, 196, 0.11),
    transparent 42%,
    rgba(88, 200, 255, 0.1)
  );
}

.service-display-page .hero-card-title {
  margin-top: 16px;
  font-size: clamp(26px, 2.15vw, 42px);
  line-height: 1.22;
}

.service-display-page .hero-card-copy,
.service-display-page .hero-card-list li {
  font-size: clamp(15px, 0.92vw, 18px);
  line-height: 1.78;
  margin-bottom: 30px;
}

.service-display-page .hero-card-list {
  gap: 14px;
  margin-top: 24px;
}

.service-display-page .feature-mini-stats {
  gap: 10px;
  margin-top: 28px;
}

.service-display-page .feature-mini-stats article {
  min-height: 88px;
  padding: 14px;
  border-radius: 8px;
}

.service-display-page .feature-mini-stats strong {
  font-size: clamp(18px, 1.25vw, 24px);
}

.service-display-page .feature-mini-stats span {
  font-size: 13px;
  line-height: 1.45;
}

.service-display-page .display-photo-story {
  position: relative;
  z-index: 2;
  margin: 0;
  align-self: center;
  justify-self: end;
  width: min(100%, 500px);
  display: grid;
  gap: 18px;
}

.service-display-page .display-photo-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  background: #e8eef0;
  box-shadow: 0 30px 80px rgba(6, 28, 47, 0.22);
}

.service-display-page .display-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: inherit;
  pointer-events: none;
}

.service-display-page .display-photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-display-page .display-photo-contain .display-photo-frame {
  background: #f5f8fa;
}

.service-display-page .display-photo-contain .display-photo-frame img {
  object-fit: contain;
  padding: 18px;
}

.service-display-page .display-photo-story figcaption {
  padding: 22px 0 0;
  border-top: 1px solid rgba(12, 50, 76, 0.14);
}

.service-display-page .display-photo-story strong {
  display: block;
  color: #102334;
  font-size: clamp(24px, 2vw, 36px);
  line-height: 1.22;
}

.service-display-page .display-photo-story p {
  max-width: 880px;
  margin-top: 10px;
  color: #425462;
  font-size: clamp(16px, 1vw, 19px);
  line-height: 1.78;
}

@media (max-width: 1200px) {
  .service-display-page .feature-hero {
    min-height: auto;
    background: linear-gradient(
      180deg,
      rgba(5, 17, 31, 0.95) 0%,
      rgba(9, 35, 55, 0.9) 54%,
      rgba(246, 250, 250, 0.98) 54.2%,
      rgba(246, 250, 250, 0.98) 100%
    );
  }

  .service-display-page .feature-hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .service-display-page .feature-hero-card {
    align-self: auto;
  }

  .service-display-page .feature-eyebrow,
  .service-display-page .feature-title,
  .service-display-page .feature-subtitle,
  .service-display-page .feature-tags,
  .service-display-page .display-photo-story {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 768px) {
  .service-display-page .feature-hero {
    padding: 150px 20px 34px;
  }

  .service-display-page .feature-title {
    font-size: clamp(38px, 12vw, 56px);
  }

  .service-display-page .feature-subtitle {
    font-size: 17px;
  }

  .service-display-page .feature-mini-stats {
    grid-template-columns: 1fr;
  }

  .service-display-page .display-photo-frame {
    aspect-ratio: 4 / 5;
  }

  .service-display-page .display-photo-story figcaption {
    padding-top: 18px;
  }

  .service-display-page .display-photo-story strong {
    font-size: 24px;
  }

  .service-display-page .display-photo-story p {
    font-size: 15px;
  }
}

/* ==================== 简洁产品详情页 ==================== */
body.service-display-page {
  background: #f7fbfa;
  color: #263238;
}

.service-display-page .main-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #edf3f2;
  box-shadow: 0 8px 26px rgba(15, 75, 92, 0.06);
}

.service-display-page .feature-hero {
  min-height: auto;
  display: block;
  padding: 108px 0 64px;
  background: linear-gradient(180deg, #fbfefd 0%, #ffffff 42%, #ffffff 100%);
}

.service-display-page .feature-hero-bg,
.service-display-page .feature-hero-overlay,
.service-display-page .feature-hero-grid,
.service-display-page .feature-breadcrumb,
.service-display-page .feature-eyebrow,
.service-display-page .feature-subtitle,
.service-display-page .feature-tags,
.service-display-page .feature-actions,
.service-display-page .feature-hero-card {
  display: none !important;
}

.service-display-page .feature-hero-inner {
  display: block;
  max-width: 1060px;
  padding: 0 24px;
}

.service-display-page .display-simple-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 0 22px;
  margin-bottom: 22px;
  border: 0;
  border-bottom: 1px solid #dce6e4;
  border-radius: 0;
  background: transparent;
  color: #28424a;
}

.service-display-page .display-simple-head span:first-child {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.service-display-page .display-simple-head span:last-child {
  font-size: 13px;
  color: #60777f;
}

.service-display-page .feature-hero-copy {
  display: block;
  text-align: center;
}

.service-display-page .feature-title {
  max-width: none;
  margin: 0 0 18px;
  color: #16836f;
  font-size: 26px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0;
}

.service-display-page .feature-title::after {
  content: "编辑：新龙县磐腾新能源科技有限公司";
  display: block;
  margin-top: 12px;
  color: #93a3a8;
  font-size: 13px;
  font-weight: 400;
}

.service-display-page .display-photo-story {
  display: block;
  width: 100%;
  max-width: none;
  margin: 18px 0 0;
}

.service-display-page .display-photo-frame {
  width: min(100%, 760px);
  margin: 0 auto;
  aspect-ratio: auto;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #eef3f2;
  box-shadow: 0 16px 42px rgba(34, 92, 103, 0.08);
}

.service-display-page .display-photo-frame::after {
  display: block;
  border-color: rgba(255, 255, 255, 0.68);
}

.service-display-page .display-photo-frame img,
.service-display-page .display-photo-contain .display-photo-frame img {
  display: block;
  width: 100%;
  height: auto;
  padding: 0;
  object-fit: contain;
  object-position: center;
}

.service-display-page .display-photo-story figcaption {
  max-width: 960px;
  margin: 32px auto 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: left;
}

.service-display-page .display-photo-story strong {
  display: none;
}

.service-display-page .display-photo-story p {
  max-width: none;
  margin: 0;
  color: #31444b;
  font-size: 16px;
  line-height: 2;
  text-indent: 2em;
}

@media (max-width: 768px) {
  .service-display-page .feature-hero {
    padding: 128px 0 44px;
  }

  .service-display-page .feature-hero-inner {
    padding: 0 18px;
  }

  .service-display-page .display-simple-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 0 0 16px;
  }

  .service-display-page .feature-title {
    font-size: 23px;
  }

  .service-display-page .display-photo-story figcaption {
    margin-top: 24px;
    padding: 0;
  }

  .service-display-page .display-photo-story p {
    font-size: 15px;
    line-height: 1.85;
  }
}

/* ==================== 最终简洁产品详情版 ==================== */
body.service-display-page {
  background: #f4f7fb;
  color: #25313d;
}

.service-display-page .main-header {
  background: #fff;
  border-bottom: 1px solid #edf1f5;
  box-shadow: 0 6px 18px rgba(22, 42, 68, 0.05);
}

.service-display-page .feature-hero {
  padding: 112px 0 34px;
  background: #f4f7fb;
}

.service-display-page .feature-hero-inner {
  max-width: 1180px;
  padding: 26px 36px 36px;
  background: #fff;
  border: 1px solid #e7edf4;
  border-radius: 18px;
  box-shadow: 0 20px 54px rgba(28, 52, 86, 0.08);
}

.service-display-page .display-simple-head {
  padding: 0 0 18px;
  margin: 0 0 28px;
  border-bottom: 1px solid #e4eaf1;
  color: #26384a;
}

.service-display-page .display-simple-head span:first-child {
  font-size: 20px;
  font-weight: 600;
}

.service-display-page .display-simple-head span:last-child {
  color: #6d7c8c;
}

.service-display-page .feature-title {
  margin: 4px 0 18px;
  color: #1769c2;
  font-size: 28px;
  font-weight: 700;
}

.service-display-page .feature-title::after {
  margin-top: 12px;
  color: #98a4b2;
  font-size: 13px;
}

.service-display-page .display-photo-story {
  margin-top: 16px;
}

.service-display-page .display-photo-frame {
  width: min(100%, 920px);
  border-radius: 10px;
  border: 1px solid #dfe7ef;
  background: #f8fafc;
  box-shadow: 0 14px 34px rgba(24, 54, 88, 0.12);
}

.service-display-page .display-photo-frame img,
.service-display-page .display-photo-contain .display-photo-frame img {
  width: 100%;
  height: auto;
  padding: 0;
}

.service-display-page .display-photo-story figcaption {
  max-width: 980px;
  margin: 34px auto 0;
  padding: 0 8px;
}

.service-display-page .display-photo-story p {
  color: #26323d;
  font-size: 16px;
  line-height: 2;
  text-indent: 2em;
}

@media (max-width: 768px) {
  .service-display-page .feature-hero {
    padding: 118px 14px 42px;
  }

  .service-display-page .feature-hero-inner {
    padding: 22px 18px 34px;
    border-radius: 14px;
  }

  .service-display-page .feature-title {
    font-size: 24px;
  }

  .service-display-page .display-photo-story p {
    font-size: 15px;
    line-height: 1.9;
  }
}

/* ==================== 内容补充区：作用 / 要点 / 场景 ==================== */
.service-display-page .feature-main {
  display: block;
  max-width: 1180px;
  margin: 0 auto 72px;
  padding: 0 0 20px;
}

.service-display-page .feature-main .container {
  max-width: none;
  padding: 0 36px;
}

.service-display-page .feature-section {
  padding-bottom: 22px;
}

.service-display-page .feature-overview-grid,
.service-display-page .feature-dual-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 18px;
}

.service-display-page .feature-panel,
.service-display-page .feature-card,
.service-display-page .feature-cta-card {
  border-radius: 14px;
  border: 1px solid #e6edf3;
  background: #fff;
  box-shadow: 0 10px 28px rgba(27, 51, 82, 0.06);
  backdrop-filter: none;
}

.service-display-page .feature-panel::before,
.service-display-page .feature-card::before,
.service-display-page .feature-cta-card::before {
  display: none;
}

.service-display-page .feature-panel {
  padding: 28px;
}

.service-display-page .feature-section-kicker,
.service-display-page .feature-card span {
  color: #4f8fc9;
  letter-spacing: 0;
  font-size: 13px;
}

.service-display-page .feature-panel h2,
.service-display-page .feature-panel h3,
.service-display-page .feature-card h3 {
  color: #26384a;
}

.service-display-page .feature-panel h2 {
  margin-top: 10px;
  font-size: 28px;
  line-height: 1.35;
}

.service-display-page .feature-panel h3,
.service-display-page .feature-card h3 {
  font-size: 22px;
}

.service-display-page .feature-panel .feature-lead,
.service-display-page .feature-panel p,
.service-display-page .feature-card p {
  color: #4d5f6d;
  font-size: 15px;
  line-height: 1.9;
}

.service-display-page .feature-checklist {
  gap: 14px;
}

.service-display-page .feature-checklist strong,
.service-display-page .feature-process-list strong {
  color: #26384a;
}

.service-display-page .feature-checklist span,
.service-display-page .feature-process-list span {
  color: #5d6d79;
}

.service-display-page .feature-chip-list li {
  border-radius: 8px;
  background: #f0f7ff;
  color: #3179bd;
}

.service-display-page .feature-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-display-page .feature-card {
  padding: 24px;
}

.service-display-page .feature-process-list li {
  border-radius: 10px;
  background: #f7fafc;
  border-color: #e7edf3;
}

.service-display-page .feature-cta-card {
  padding: 28px;
  background: linear-gradient(135deg, #ffffff, #f4f9ff);
}

.service-display-page .feature-cta-copy h2 {
  color: #26384a;
  font-size: 28px;
}

.service-display-page .feature-cta-copy p {
  color: #5d6d79;
}

.service-display-page .feature-cta-card .feature-primary-btn,
.service-display-page .feature-cta-card .feature-secondary-btn {
  display: inline-flex;
  border-radius: 8px;
}

.service-display-page .feature-cta-card .feature-primary-btn {
  background: #1769c2;
  color: #fff;
}

.service-display-page .feature-cta-card .feature-secondary-btn {
  border-color: #d8e4ef;
  background: #fff;
  color: #1769c2;
}

@media (max-width: 992px) {
  .service-display-page .feature-overview-grid,
  .service-display-page .feature-dual-grid,
  .service-display-page .feature-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .service-display-page .feature-main {
    margin-bottom: 44px;
  }

  .service-display-page .feature-main .container {
    padding: 0 14px;
  }

  .service-display-page .feature-panel,
  .service-display-page .feature-card,
  .service-display-page .feature-cta-card {
    padding: 22px;
  }

  .service-display-page .feature-panel h2,
  .service-display-page .feature-cta-copy h2 {
    font-size: 24px;
  }
}

/* 首屏补充信息，避免产品页过空 */
.service-display-page .feature-hero-card {
  display: block !important;
  max-width: 920px;
  margin: 26px auto 0;
  padding: 24px 26px;
  border: 1px solid #e6edf3;
  border-radius: 14px;
  background: #f8fbff;
  box-shadow: none;
  color: #26384a;
}

.service-display-page .feature-hero-card::before {
  display: none;
}

.service-display-page .hero-card-kicker {
  color: #6b8aaa;
  letter-spacing: 0;
  font-size: 13px;
}

.service-display-page .hero-card-title {
  margin: 8px 0 10px;
  color: #26384a;
  font-size: 24px;
  line-height: 1.35;
}

.service-display-page .hero-card-copy {
  color: #526472;
  font-size: 15px;
  line-height: 1.85;
}

.service-display-page .hero-card-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
}

.service-display-page .hero-card-list li {
  min-height: 64px;
  padding: 14px 14px 14px 30px;
  border: 1px solid #e1eaf2;
  border-radius: 10px;
  background: #fff;
  color: #445765;
  font-size: 14px;
  line-height: 1.55;
}

.service-display-page .hero-card-list li::before {
  left: 14px;
  top: 22px;
  background: #5bbfae;
}

.service-display-page .feature-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.service-display-page .feature-mini-stats article {
  min-height: auto;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #e1eaf2;
  background: #fff;
}

.service-display-page .feature-mini-stats strong {
  color: #1769c2;
  font-size: 20px;
}

.service-display-page .feature-mini-stats span {
  color: #667783;
  font-size: 13px;
}

@media (max-width: 768px) {
  .service-display-page .feature-hero-card {
    padding: 20px;
  }

  .service-display-page .hero-card-list,
  .service-display-page .feature-mini-stats {
    grid-template-columns: 1fr;
  }
}

/* ==================== 最终展示版：首屏铺满，图片 + 简介 + 要点 ==================== */
body.service-display-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(25, 137, 220, 0.08), transparent 34%),
    linear-gradient(315deg, rgba(80, 190, 155, 0.1), transparent 36%), #f4f8fb;
  color: #26384a;
}

.service-display-page .main-header {
  background: #fff !important;
  border-bottom: 1px solid #e8eef4;
  box-shadow: 0 4px 18px rgba(34, 62, 92, 0.05);
}

.service-display-page .feature-main,
.service-display-page .main-footer,
.service-display-page .wechat-float,
.service-display-page .back-top,
.service-display-page .feature-hero-bg,
.service-display-page .feature-hero-overlay,
.service-display-page .feature-hero-grid,
.service-display-page .feature-breadcrumb,
.service-display-page .feature-eyebrow,
.service-display-page .feature-actions {
  display: none !important;
}

.service-display-page .animate-on-scroll {
  opacity: 1;
  transform: none;
}

.service-display-page .feature-hero {
  min-height: 100vh;
  padding: 92px 24px 24px;
  background: transparent;
  overflow: hidden;
}

.service-display-page .feature-hero-inner {
  width: min(100%, 1480px);
  min-height: calc(100vh - 116px);
  max-width: 1480px;
  margin: 0 auto;
  padding: 26px;
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(520px, 1.14fr);
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: 22px 28px;
  align-items: stretch;
  background: #fff;
  border: 1px solid #e5edf4;
  border-radius: 18px;
  box-shadow: 0 22px 52px rgba(41, 72, 104, 0.12);
}

.service-display-page .display-simple-head {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 0 0 18px;
  border-bottom: 1px solid #e8eef4;
  color: #26384a;
}

.service-display-page .display-simple-head span:first-child {
  position: relative;
  padding-left: 14px;
  color: #1f6fb5;
  font-size: 22px;
  font-weight: 700;
}

.service-display-page .display-simple-head span:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 22px;
  border-radius: 3px;
  background: #52b788;
  transform: translateY(-50%);
}

.service-display-page .display-simple-head span:last-child {
  color: #7a8b99;
  font-size: 14px;
}

.service-display-page .feature-hero-copy {
  align-self: start;
  min-width: 0;
}

.service-display-page .feature-title {
  margin: 2px 0 18px;
  color: #1f6fb5;
  font-size: clamp(30px, 3.3vw, 46px);
  line-height: 1.16;
  font-weight: 750;
  letter-spacing: 0;
}

.service-display-page .feature-title::after {
  content: "编辑：新龙县磐腾新能源科技有限公司";
  display: block;
  width: auto;
  height: auto;
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid #edf2f6;
  background: none;
  color: #8b9aa8;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
}

.service-display-page .feature-subtitle {
  display: block !important;
  max-width: 100%;
  color: #435462;
  font-size: 17px;
  line-height: 1.86;
}

.service-display-page .feature-tags {
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
}

.service-display-page .feature-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  border: 1px solid #dceaf5;
  border-radius: 8px;
  background: #f3f9ff;
  color: #2f76ad;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
}

.service-display-page .feature-hero-card {
  align-self: start;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #26384a;
}

.service-display-page .feature-hero-card::before,
.service-display-page .hero-card-kicker,
.service-display-page .hero-card-title,
.service-display-page .hero-card-copy {
  display: none;
}

.service-display-page .hero-card-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-display-page .hero-card-list li {
  position: relative;
  min-height: 54px;
  padding: 13px 14px 13px 42px;
  border: 1px solid #e1edf5;
  border-radius: 10px;
  background: linear-gradient(180deg, #fbfdff, #f5faff);
  color: #4a5c69;
  font-size: 14px;
  line-height: 1.55;
}

.service-display-page .hero-card-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #52b788;
  box-shadow: 0 0 0 5px rgba(82, 183, 136, 0.13);
}

.service-display-page .feature-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.service-display-page .feature-mini-stats article {
  min-height: 76px;
  padding: 13px 12px;
  border: 1px solid #e2edf5;
  border-radius: 10px;
  background: #fff;
}

.service-display-page .feature-mini-stats strong {
  display: block;
  color: #1f6fb5;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 750;
}

.service-display-page .feature-mini-stats span {
  display: block;
  margin-top: 8px;
  color: #6c7b87;
  font-size: 13px;
  line-height: 1.45;
}

.service-display-page .display-photo-story {
  grid-column: 2;
  grid-row: 2 / span 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  min-height: 0;
  margin: 0;
}

.service-display-page .display-photo-frame {
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  border: 1px solid #dce8f1;
  border-radius: 14px;
  background: #f8fbfd;
  box-shadow: 0 18px 36px rgba(44, 78, 108, 0.12);
  overflow: hidden;
}

.service-display-page .display-photo-frame::after {
  display: none;
}

.service-display-page .display-photo-frame img,
.service-display-page .display-photo-contain .display-photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  padding: 0;
  object-fit: cover;
  object-position: center;
}

.service-display-page .display-photo-contain .display-photo-frame img {
  object-fit: contain;
  background: #071d24;
}

.service-display-page .display-photo-contain .display-photo-frame {
  flex: 0 0 auto;
  aspect-ratio: 1.86 / 1;
}

.service-display-page .display-photo-contain .display-photo-frame img {
  min-height: 0;
}

.service-display-page .display-photo-story figcaption {
  flex: 0 0 auto;
  max-width: none;
  margin: 16px 0 0;
  padding: 18px 20px;
  border: 1px solid #e3edf5;
  border-radius: 12px;
  background: linear-gradient(180deg, #fbfdff, #f5f9fc);
}

.service-display-page .display-photo-story strong {
  display: block;
  margin: 0 0 8px;
  color: #26384a;
  font-size: 19px;
  line-height: 1.35;
}

.service-display-page .display-photo-story p {
  margin: 0;
  color: #566876;
  font-size: 15px;
  line-height: 1.75;
  text-indent: 0;
}

@media (min-width: 993px) {
  .service-display-page .feature-hero-copy,
  .service-display-page .feature-hero-card {
    grid-column: 1;
  }

  .service-display-page .feature-hero-inner {
    grid-template-areas:
      "head head"
      "copy photo"
      "card photo";
  }

  .service-display-page .display-simple-head {
    grid-area: head;
  }

  .service-display-page .feature-hero-copy {
    grid-area: copy;
  }

  .service-display-page .feature-hero-card {
    grid-area: card;
  }

  .service-display-page .display-photo-story {
    grid-area: photo;
  }
}

@media (max-width: 1280px) {
  .service-display-page .feature-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .service-display-page .feature-hero-inner {
    grid-template-columns: minmax(340px, 0.9fr) minmax(460px, 1.1fr);
    gap: 18px 22px;
    padding: 22px;
  }

  .service-display-page .feature-subtitle {
    font-size: 16px;
    line-height: 1.78;
  }

  .service-display-page .hero-card-list li {
    min-height: auto;
  }
}

@media (max-width: 992px) {
  .service-display-page .feature-hero {
    overflow: visible;
    min-height: auto;
    padding: 92px 18px 26px;
  }

  .service-display-page .feature-hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .service-display-page .display-photo-story {
    grid-column: auto;
    grid-row: auto;
  }

  .service-display-page .display-photo-frame img,
  .service-display-page .display-photo-contain .display-photo-frame img {
    height: auto;
    min-height: 0;
    object-fit: contain;
  }
}

@media (max-width: 768px) {
  .service-display-page .feature-hero {
    padding: 84px 12px 18px;
  }

  .service-display-page .feature-hero-inner {
    padding: 17px;
    border-radius: 14px;
    gap: 17px;
  }

  .service-display-page .display-simple-head {
    display: block;
    padding-bottom: 14px;
  }

  .service-display-page .display-simple-head span {
    display: block;
  }

  .service-display-page .display-simple-head span:first-child {
    font-size: 20px;
  }

  .service-display-page .display-simple-head span:last-child {
    margin-top: 6px;
    font-size: 13px;
  }

  .service-display-page .feature-title {
    font-size: 28px;
  }

  .service-display-page .feature-subtitle {
    font-size: 15px;
    line-height: 1.76;
  }

  .service-display-page .feature-tags {
    gap: 8px;
  }

  .service-display-page .feature-tags span {
    font-size: 13px;
  }

  .service-display-page .feature-mini-stats {
    grid-template-columns: 1fr;
  }

  .service-display-page .display-photo-story figcaption {
    padding: 15px;
  }

  .service-display-page .display-photo-story strong {
    font-size: 17px;
  }

  .service-display-page .display-photo-story p {
    font-size: 14px;
    line-height: 1.7;
  }
}
