.page-products {
  --products-line: 1px solid rgba(255, 255, 255, 0.08);
  --products-glow-green: 0 12px 40px rgba(0, 255, 102, 0.09);
  --products-glow-blue: 0 12px 36px rgba(0, 204, 255, 0.07);
  --products-radius-lg: 18px;
  --products-radius-md: 12px;
  background: var(--deep-base);
  color: var(--text-primary);
  font-family: var(--font-body);
}

.page-products section[id] {
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.page-products .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  flex-wrap: wrap;
}

.page-products .breadcrumb__link {
  color: var(--electric-blue);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.page-products .breadcrumb__link:hover {
  color: var(--neon-green);
  text-decoration: underline;
}

.page-products .breadcrumb__current {
  color: var(--text-primary);
}

.page-products .breadcrumb__item {
  color: var(--text-secondary);
}

.page-products .services-hero {
  padding-top: 12px;
}

.page-products .services-hero__layout {
  display: grid;
  gap: 36px;
  align-items: stretch;
}

.page-products .services-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.page-products .services-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 8vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0;
  max-width: 820px;
}

.page-products .services-hero__lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 660px;
  margin: 0;
}

.page-products .services-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-products .services-hero__stat {
  display: flex;
  align-items: baseline;
  gap: 6px;
  background: var(--panel-base);
  border: var(--products-line);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.page-products .services-hero__stat .data-num {
  font-size: 1.5rem;
  color: var(--neon-green);
}

.page-products .services-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-products .services-hero__overview {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(135deg, rgba(0, 255, 102, 0.1), rgba(0, 204, 255, 0.05)), var(--glass-bg);
  border: 1px solid rgba(0, 255, 102, 0.24);
  border-radius: var(--radius-lg);
  padding: 38px 24px 24px;
  overflow: hidden;
}

.page-products .services-hero__overview::after {
  content: "02";
  position: absolute;
  right: -16px;
  bottom: -28px;
  font-family: var(--font-data);
  font-size: clamp(7rem, 22vw, 12rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.page-products .services-hero__overview-label {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, var(--neon-green), #00cc66);
  color: var(--deep-base);
  font-family: var(--font-data);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 10px 18px;
  border-bottom-left-radius: 12px;
  z-index: 1;
}

.page-products .services-hero__overview-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  line-height: 1;
  margin: 0;
}

.page-products .services-hero__overview-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
  max-width: 42ch;
}

.page-products .services-hero__overview-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.page-products .services-hero__overview-list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--text-primary);
  padding: 10px 14px;
  background: rgba(10, 14, 23, 0.5);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--electric-blue);
}

.page-products .services-hero__overview-list .data-num {
  font-size: 1.4rem;
  color: var(--electric-blue);
}

.page-products .services-hero__overview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.page-products .services-functions__head {
  margin-bottom: 6px;
}

.page-products .services-functions__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.page-products .services-functions__grid {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.page-products .services-functions__card {
  position: relative;
  background: var(--panel-base);
  border: var(--products-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.page-products .services-functions__card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, transparent 46%, rgba(0, 255, 102, 0.9) 46%);
  border-bottom-left-radius: 8px;
  z-index: 3;
  pointer-events: none;
}

.page-products .services-functions__card:hover {
  transform: translateY(-4px) rotate(-0.5deg);
  border-color: rgba(0, 255, 102, 0.4);
  box-shadow: var(--products-glow-green);
}

.page-products .services-functions__fig {
  margin: 0;
  aspect-ratio: 3 / 2;
  background: var(--deep-base);
  border-bottom: var(--products-line);
  overflow: hidden;
}

.page-products .services-functions__fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.page-products .services-functions__card:hover .services-functions__fig img {
  transform: scale(1.03);
}

.page-products .services-functions__imgless {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
  background: radial-gradient(circle at 50% 110%, rgba(0, 255, 102, 0.1), transparent 70%), var(--deep-base);
  border-bottom: var(--products-line);
}

.page-products .services-functions__icon {
  color: var(--electric-blue);
  filter: drop-shadow(0 0 14px rgba(0, 204, 255, 0.25));
}

.page-products .services-functions__trigger {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 20px;
  background: transparent;
  border: 0;
  color: inherit;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
}

.page-products .services-functions__num {
  font-family: var(--font-data);
  font-size: 1.2rem;
  color: var(--neon-green);
  flex: 0 0 auto;
  line-height: 1;
}

.page-products .services-functions__meta {
  min-width: 0;
  flex: 1;
}

.page-products .services-functions__tag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--electric-blue);
  border: 1px solid rgba(0, 204, 255, 0.3);
  border-radius: 999px;
  padding: 3px 10px;
  margin-bottom: 6px;
}

.page-products .services-functions__tag--green {
  color: var(--neon-green);
  border-color: rgba(0, 255, 102, 0.35);
}

.page-products .services-functions__name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.page-products .services-functions__brief {
  display: block;
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-top: 6px;
  line-height: 1.45;
}

.page-products .services-functions__toggle {
  flex: 0 0 auto;
  font-family: var(--font-data);
  font-size: 0.72rem;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 5px 11px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.page-products .services-functions__toggle::before {
  content: "+";
  margin-right: 4px;
  color: var(--neon-green);
  display: inline-block;
  transition: transform 0.25s var(--ease);
}

.page-products .services-functions__trigger[aria-expanded="true"] .services-functions__toggle {
  color: var(--neon-green);
  border-color: rgba(0, 255, 102, 0.4);
}

.page-products .services-functions__trigger[aria-expanded="true"] .services-functions__toggle::before {
  transform: rotate(45deg);
}

.page-products .services-functions__panel {
  padding: 0 20px 20px;
}

.page-products .services-functions__detail {
  border-top: var(--products-line);
  padding-top: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 0.92rem;
}

.page-products .services-functions__detail p {
  margin: 0;
}

.page-products .services-functions__detail p + p {
  margin-top: 8px;
}

.page-products .services-functions__sub {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-primary);
  margin: 0 0 6px;
  letter-spacing: 0.04em;
}

.page-products .services-functions__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-products .services-v3__head {
  margin-bottom: 6px;
}

.page-products .services-v3__panel {
  position: relative;
  display: grid;
  gap: 24px;
  margin-top: 28px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(0, 255, 102, 0.08), rgba(0, 204, 255, 0.05)), var(--glass-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.page-products .services-v3__panel::after {
  content: "V3";
  position: absolute;
  right: -14px;
  bottom: -30px;
  font-family: var(--font-heading);
  font-size: clamp(6rem, 20vw, 11rem);
  line-height: 1;
  color: rgba(0, 255, 102, 0.04);
  pointer-events: none;
}

.page-products .services-v3__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-products .services-v3__feature {
  padding: 18px;
  background: rgba(10, 14, 23, 0.62);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--neon-green);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.page-products .services-v3__feature:nth-child(2) {
  border-left-color: var(--electric-blue);
}

.page-products .services-v3__feature:hover {
  transform: translateX(4px);
  border-left-color: var(--gold-accent);
}

.page-products .services-v3__feature-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-products .services-v3__feature-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--neon-green);
  color: var(--deep-base);
  font-family: var(--font-data);
  font-size: 0.75rem;
  font-weight: 700;
  flex: 0 0 auto;
}

.page-products .services-v3__feature:nth-child(2) .services-v3__feature-mark {
  background: var(--electric-blue);
}

.page-products .services-v3__feature p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.page-products .services-v3__points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  list-style: none;
  padding: 4px 0 0;
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-primary);
}

.page-products .services-v3__points li::before {
  content: "✓";
  color: var(--neon-green);
  margin-right: 6px;
  font-family: var(--font-data);
}

.page-products .services-v3__device {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 255, 102, 0.2);
  background: var(--deep-base);
}

.page-products .services-v3__device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-products .services-plans__head {
  margin-bottom: 6px;
}

.page-products .services-plans__slider {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 255, 102, 0.4) rgba(255, 255, 255, 0.06);
  -webkit-overflow-scrolling: touch;
}

.page-products .services-plans__card {
  flex: 0 0 84%;
  scroll-snap-align: start;
  background: var(--panel-base);
  border: var(--products-line);
  border-radius: var(--radius-lg);
  padding: 20px;
  position: relative;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.page-products .services-plans__card--hot {
  border-color: rgba(0, 255, 102, 0.45);
  background: linear-gradient(150deg, rgba(0, 255, 102, 0.1), var(--panel-base) 65%);
  box-shadow: var(--products-glow-green);
}

.page-products .services-plans__card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 10px;
}

.page-products .services-plans__card-name {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.page-products .services-plans__card-tag {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-accent);
  border: 1px solid rgba(255, 215, 0, 0.35);
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.page-products .services-plans__card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.page-products .services-plans__card-list li {
  padding-left: 18px;
  position: relative;
}

.page-products .services-plans__card-list li::before {
  content: "▹";
  position: absolute;
  left: 0;
  color: var(--neon-green);
  font-family: var(--font-data);
}

.page-products .services-plans__note {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 4px solid var(--gold-accent);
  background: rgba(255, 215, 0, 0.06);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  transition: background 0.3s var(--ease);
}

.page-products .services-plans__note:hover {
  background: rgba(255, 215, 0, 0.09);
}

.page-products .services-plans__note-label {
  display: block;
  font-family: var(--font-data);
  font-size: 0.85rem;
  color: var(--gold-accent);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.page-products .services-plans__note p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

.page-products .services-plans__figure {
  margin: 24px 0 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--panel-base);
  border: var(--products-line);
}

.page-products .services-plans__figure img {
  width: 100%;
  height: auto;
  display: block;
}

.page-products .services-devices__head {
  margin-bottom: 6px;
}

.page-products .services-devices__layout {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

.page-products .services-devices__intro {
  padding: 20px;
  background: var(--panel-base);
  border-left: 3px solid var(--electric-blue);
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.page-products .services-devices__intro:hover {
  transform: translateX(4px);
  border-left-color: var(--neon-green);
}

.page-products .services-devices__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin: 0 0 6px;
  letter-spacing: 0.02em;
}

.page-products .services-devices__intro p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.92rem;
  margin: 0;
}

.page-products .services-devices__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.page-products .services-devices__steps li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.page-products .services-devices__steps li:hover {
  background: rgba(0, 255, 102, 0.05);
  transform: translateX(3px);
}

.page-products .services-devices__step-num {
  flex: 0 0 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 204, 255, 0.15);
  color: var(--electric-blue);
  font-family: var(--font-data);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-products .services-devices__steps strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.page-products .services-devices__steps p {
  margin: 4px 0 0;
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.55;
}

.page-products .services-devices__figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 204, 255, 0.25);
  background: var(--panel-base);
  align-self: center;
}

.page-products .services-devices__figure img {
  width: 100%;
  height: auto;
  display: block;
}

.page-products .services-next__inner {
  position: relative;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(0, 255, 102, 0.12), rgba(0, 204, 255, 0.06)), var(--panel-base);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  overflow: hidden;
}

.page-products .services-next__inner::before {
  content: "HTH";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: clamp(8rem, 28vw, 16rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.page-products .services-next__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  line-height: 1.05;
  margin: 0 0 10px;
}

.page-products .services-next__text {
  position: relative;
  z-index: 1;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 24px;
}

.page-products .services-next__links {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

@media (min-width: 640px) {
  .page-products .services-functions__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .page-products .services-hero__layout {
    grid-template-columns: 1fr 0.9fr;
    gap: 40px;
  }

  .page-products .services-hero__copy {
    gap: 20px;
  }

  .page-products .services-plans__card {
    flex-basis: 60%;
  }
}

@media (min-width: 900px) {
  .page-products .services-v3__panel {
    grid-template-columns: 1fr 320px;
    gap: 32px;
    padding: 32px;
    align-items: center;
  }

  .page-products .services-devices__layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: center;
  }

  .page-products .services-devices__figure {
    margin: 0;
  }
}

@media (min-width: 1080px) {
  .page-products .services-functions__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-products .services-plans__slider {
    overflow: visible;
    gap: 20px;
  }

  .page-products .services-plans__card {
    flex: 1 1 0;
    scroll-snap-align: unset;
  }

  .page-products .services-plans__card--hot {
    transform: translateY(-8px);
  }

  .page-products .services-plans__card--hot:hover {
    transform: translateY(-10px);
  }

  .page-products .services-hero {
    padding-top: 24px;
  }
}
