.page-products {
  --panel-radius: 3px;
  --panel-border: 1px solid var(--color-glacier);
  --panel-shadow: 0 8px 30px rgba(30, 58, 138, 0.08);
  --speed-line-opacity: 0.35;
  position: relative;
}

.page-products .container-main {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.page-products .breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 24px 0 8px;
  font-size: 14px;
  color: #4b5b70;
}

.page-products .breadcrumbs a {
  color: var(--color-navy);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.page-products .breadcrumbs a:hover {
  border-bottom-color: var(--color-navy);
}

.page-products .sep {
  color: var(--color-glacier);
}

.page-products .service-hero {
  position: relative;
  display: grid;
  gap: 24px;
  padding: 40px 0 56px;
}

.page-products .service-hero__copy {
  position: relative;
  z-index: 2;
}

.page-products .service-hero__lead {
  max-width: 640px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-main);
  margin: 16px 0 20px;
}

.page-products .service-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-products .tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: var(--color-white);
  border: var(--panel-border);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-navy);
}

.page-products .tag-teal {
  background: rgba(0, 179, 164, 0.08);
  border-color: rgba(0, 179, 164, 0.3);
  color: #00897f;
}

.page-products .tag-orange {
  background: rgba(255, 107, 53, 0.08);
  border-color: rgba(255, 107, 53, 0.3);
  color: #e4572b;
}

.page-products .service-hero__visual {
  position: relative;
  min-height: 140px;
  background: linear-gradient(120deg, rgba(227, 244, 253, 0.5), rgba(255, 255, 255, 0) 70%);
  border-radius: var(--panel-radius);
  overflow: hidden;
}

.page-products .speed-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.4), transparent);
  transform-origin: left center;
}

.page-products .speed-line--one {
  top: 30%;
  left: -10%;
  width: 70%;
  transform: rotate(-18deg);
}

.page-products .speed-line--two {
  top: 55%;
  left: 5%;
  width: 55%;
  transform: rotate(-14deg);
  opacity: 0.6;
}

.page-products .speed-line--three {
  top: 75%;
  left: -5%;
  width: 80%;
  transform: rotate(-20deg);
  opacity: 0.3;
}

.page-products .hero-batch {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--color-white);
  border: 1px solid rgba(0, 179, 164, 0.3);
  border-radius: var(--panel-radius);
  box-shadow: var(--panel-shadow);
}

.page-products .batch-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-teal);
  box-shadow: 0 0 0 4px rgba(0, 179, 164, 0.15);
}

.page-products .batch-label {
  font-size: 12px;
  font-weight: 600;
  color: #4b5b70;
}

.page-products .batch-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-navy);
}

.page-products .service-overview {
  background: var(--color-white);
  border: var(--panel-border);
  border-radius: var(--panel-radius);
  box-shadow: var(--panel-shadow);
  padding: 32px 24px;
  margin-bottom: 24px;
}

.page-products .section-head {
  margin-bottom: 24px;
}

.page-products .section-kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--color-orange);
  text-transform: uppercase;
  margin: 0 0 8px;
}

.page-products .section-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.3;
  color: var(--color-navy);
  margin: 0;
}

.page-products .overview-grid {
  display: grid;
  gap: 12px;
}

.page-products .overview-card {
  display: block;
  padding: 20px;
  background: var(--color-warm);
  border: 1px solid rgba(176, 196, 222, 0.5);
  border-radius: var(--panel-radius);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.page-products .overview-card:hover,
.page-products .overview-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--panel-shadow);
  border-color: var(--color-orange);
  outline: none;
}

.page-products .overview-card__num {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-orange);
  margin-bottom: 8px;
}

.page-products .overview-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-navy);
  margin: 0 0 6px;
}

.page-products .overview-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-main);
  margin: 0;
}

.page-products .detail-panel {
  display: grid;
  gap: 24px;
  padding: 32px 24px;
  background: var(--color-white);
  border: var(--panel-border);
  border-radius: var(--panel-radius);
  box-shadow: var(--panel-shadow);
  margin-bottom: 24px;
}

.page-products .detail-panel__text {
  min-width: 0;
}

.page-products .detail-panel__text p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-main);
  margin: 12px 0;
}

.page-products .detail-panel__media {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.page-products .feature-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.page-products .feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-main);
  border-bottom: 1px solid rgba(176, 196, 222, 0.35);
}

.page-products .feature-list li:last-child {
  border-bottom: none;
}

.page-products .feature-list__mark {
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--color-teal);
}

.page-products .detail-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  background: rgba(0, 179, 164, 0.06);
  border-left: 3px solid var(--color-teal);
  border-radius: 0 var(--panel-radius) var(--panel-radius) 0;
}

.page-products .detail-note__icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-teal);
  border-radius: 50%;
}

.page-products .detail-note p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-main);
}

.page-products .figure-frame {
  position: relative;
  border-radius: var(--panel-radius);
  overflow: hidden;
  border: var(--panel-border);
  background: var(--color-ice);
  box-shadow: var(--shadow-sm);
}

.page-products .figure-frame::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(to right, rgba(30, 58, 138, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(30, 58, 138, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.page-products .figure-frame__img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
}

.page-products .tab-block {
  margin-top: 16px;
}

.page-products .tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  border-bottom: 1px solid var(--color-glacier);
  padding-bottom: 0;
}

.page-products .tab {
  background: transparent;
  border: none;
  padding: 10px 16px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #4b5b70;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.page-products .tab:hover {
  color: var(--color-navy);
}

.page-products .tab[aria-selected="true"] {
  color: var(--color-navy);
  border-bottom-color: var(--color-orange);
}

.page-products .tab:focus-visible {
  outline: 2px solid var(--color-orange);
  outline-offset: 2px;
}

.page-products .tabpanel {
  padding: 14px 4px 4px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-main);
}

.page-products .tabpanel[hidden] {
  display: none;
}

.page-products .batch-visual {
  position: relative;
  border-radius: var(--panel-radius);
  overflow: hidden;
  border: var(--panel-border);
  box-shadow: var(--shadow-sm);
}

.page-products .batch-visual__img {
  display: block;
  width: 100%;
  height: auto;
}

.page-products .batch-visual__overlay {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: var(--panel-radius);
  backdrop-filter: blur(4px);
}

.page-products .batch-visual__overlay .batch-value {
  color: var(--color-orange);
}

.page-products .feature-grid {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.page-products .feature-grid__item {
  padding: 16px;
  background: var(--color-warm);
  border: 1px solid rgba(176, 196, 222, 0.5);
  border-radius: var(--panel-radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-products .feature-grid__item:hover {
  border-color: var(--color-teal);
  box-shadow: var(--panel-shadow);
}

.page-products .feature-grid__num {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-orange);
  margin-bottom: 6px;
}

.page-products .feature-grid__item h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-navy);
  margin: 0 0 4px;
}

.page-products .feature-grid__item p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-main);
  margin: 0;
}

.page-products .mobile-panel {
  background: var(--color-white);
  border: var(--panel-border);
  border-radius: var(--panel-radius);
  box-shadow: var(--panel-shadow);
  padding: 32px 24px;
  margin-bottom: 24px;
  overflow: hidden;
}

.page-products .mobile-panel__grid {
  display: grid;
  gap: 24px;
}

.page-products .mobile-panel__media {
  min-width: 0;
}

.page-products .mobile-panel__list {
  display: grid;
  gap: 20px;
}

.page-products .mobile-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.page-products .mobile-point__num {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-orange);
  background: rgba(255, 107, 53, 0.08);
  border-radius: 50%;
}

.page-products .mobile-point h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-navy);
  margin: 0 0 4px;
}

.page-products .mobile-point p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-main);
  margin: 0;
}

.page-products .cta-panel {
  background: var(--color-ink);
  border-radius: var(--panel-radius);
  color: var(--color-white);
  padding: 0;
  margin-bottom: 48px;
  overflow: hidden;
  position: relative;
}

.page-products .cta-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-navy), var(--color-teal), var(--color-orange));
}

.page-products .cta-panel__inner {
  padding: 36px 24px 32px;
}

.page-products .cta-panel h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 22px;
  color: var(--color-white);
  margin: 0 0 24px;
  max-width: 560px;
}

.page-products .cta-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 12px;
}

.page-products .cta-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(176, 196, 222, 0.2);
}

.page-products .cta-steps li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.page-products .cta-steps__num {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-orange);
}

.page-products .cta-steps p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.page-products .cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-products .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--panel-radius);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.page-products .btn-accent {
  background: var(--color-orange);
  color: var(--color-white);
}

.page-products .btn-accent:hover,
.page-products .btn-accent:focus-visible {
  background: #e4572b;
  transform: translateY(-1px);
  outline: none;
}

.page-products .btn-ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.page-products .btn-ghost:hover,
.page-products .btn-ghost:focus-visible {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

@media (min-width: 360px) {
  .page-products .service-hero__lead {
    font-size: 18px;
  }
}

@media (min-width: 640px) {
  .page-products .service-hero {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 56px 0 72px;
  }

  .page-products .service-hero__visual {
    min-height: 180px;
  }

  .page-products .overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-products .detail-panel {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .page-products .detail-panel--reverse .detail-panel__text {
    order: 2;
  }

  .page-products .detail-panel--reverse .detail-panel__media {
    order: 1;
  }

  .page-products .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-products .mobile-panel__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .page-products .cta-panel__inner {
    padding: 40px 48px 36px;
  }

  .page-products .cta-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-products .cta-steps li {
    display: block;
    border-bottom: none;
    border-right: 1px solid rgba(176, 196, 222, 0.2);
    padding-bottom: 0;
    padding-right: 16px;
  }

  .page-products .cta-steps li:last-child {
    border-right: none;
  }
}

@media (min-width: 1024px) {
  .page-products .service-hero__lead {
    font-size: 20px;
    max-width: 540px;
  }

  .page-products .service-hero__visual {
    min-height: 220px;
  }

  .page-products .service-overview,
  .page-products .detail-panel,
  .page-products .mobile-panel {
    padding: 40px 48px;
  }

  .page-products .section-title {
    font-size: 28px;
  }

  .page-products .overview-card {
    padding: 24px;
  }

  .page-products .detail-panel__text p {
    font-size: 16px;
  }

  .page-products .cta-panel {
    margin-bottom: 64px;
  }

  .page-products .cta-panel h2 {
    font-size: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-products .overview-card,
  .page-products .feature-grid__item,
  .page-products .btn-accent,
  .page-products .btn-ghost {
    transition: none;
  }

  .page-products .overview-card:hover,
  .page-products .overview-card:focus-visible,
  .page-products .feature-grid__item:hover,
  .page-products .btn-accent:hover,
  .page-products .btn-ghost:hover {
    transform: none;
  }
}
