.page-products {
  --pv-gold: #C9A063;
  --pv-gold-light: #E5C17A;
  --pv-gold-strong: #8A6A34;
  --pv-deep: #0B1D3A;
  --pv-warm: #F5F3EF;
  --pv-cream: #FDFBF7;
  --pv-ink: #101820;
  --pv-cyan: #3FE0C5;
  --pv-violet: #7A5CFF;
  --pv-line: #2A3A5C;
  background-color: var(--pv-warm);
  overflow-x: hidden;
}

.page-products .breadcrumb-sep {
  margin: 0 8px;
  color: rgba(16, 24, 32, 0.42);
  font-family: var(--font-mono);
}

.page-products .solutions-hero {
  background:
    radial-gradient(700px 340px at 88% 12%, rgba(201, 160, 99, 0.22), transparent 60%),
    radial-gradient(500px 300px at 8% 82%, rgba(63, 224, 197, 0.10), transparent 60%),
    var(--pv-deep);
  color: var(--pv-warm);
  padding: 48px 0 56px;
}

.page-products .solutions-hero .section-kicker {
  color: var(--pv-gold-light);
  letter-spacing: 0.08em;
}

.page-products .hero-inner {
  display: grid;
  gap: 32px;
}

.page-products .hero-copy h1 {
  font-family: var(--font-title);
  font-size: 32px;
  line-height: 1.35;
  margin: 12px 0 16px;
  color: var(--pv-cream);
  letter-spacing: 0.02em;
}

.page-products .hero-desc {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(245, 243, 239, 0.82);
  max-width: 560px;
}

.page-products .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.page-products .hero-actions .btn-primary,
.page-products .faq-actions .btn-primary {
  background: var(--pv-gold);
  border-color: var(--pv-gold);
  color: var(--pv-deep);
}

.page-products .hero-actions .btn-ghost,
.page-products .faq-actions .btn-ghost {
  border-color: rgba(229, 193, 122, 0.7);
  color: var(--pv-gold-light);
}

.page-products .hero-console {
  border: 1px solid rgba(201, 160, 99, 0.55);
  border-radius: var(--radius-m);
  background: rgba(9, 20, 42, 0.72);
  box-shadow: 0 14px 36px rgba(4, 12, 28, 0.18);
  padding: 20px;
  font-family: var(--font-mono);
}

.page-products .console-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(201, 160, 99, 0.25);
  font-size: 13px;
}

.page-products .console-line:last-child {
  border-bottom: 0;
}

.page-products .console-label {
  color: rgba(229, 193, 122, 0.7);
}

.page-products .console-value {
  color: var(--pv-warm);
  text-align: right;
}

.page-products .status-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--pv-cyan);
}

.page-products .status-live .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pv-cyan);
  box-shadow: 0 0 8px rgba(63, 224, 197, 0.8);
  display: inline-block;
}

.page-products .solutions-index {
  background: var(--pv-warm);
  padding: 40px 0;
}

.page-products .index-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.page-products .index-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 16px;
  border-radius: var(--radius-m);
  text-decoration: none;
  color: var(--pv-ink);
  background: var(--pv-cream);
  border: 1px solid rgba(201, 160, 99, 0.45);
  box-shadow: 0 8px 24px rgba(4, 12, 28, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-products .index-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(4, 12, 28, 0.14);
}

.page-products .index-num {
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--pv-gold-strong);
  font-weight: 700;
}

.page-products .index-card--dark {
  background: var(--pv-deep);
  color: var(--pv-cream);
  border-color: var(--pv-deep);
}

.page-products .index-card--dark .index-num {
  color: var(--pv-gold-light);
}

.page-products .index-card--dark .index-desc {
  color: rgba(245, 243, 239, 0.68);
}

.page-products .index-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
}

.page-products .index-desc {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(16, 24, 32, 0.62);
}

.page-products .solution-card {
  position: relative;
  overflow: hidden;
  padding: 56px 0 64px;
}

.page-products .solution-card-inner {
  position: relative;
  z-index: 1;
}

.page-products .solution-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px;
  border-bottom: 1px solid rgba(42, 58, 92, 0.22);
  padding-bottom: 18px;
  margin-bottom: 28px;
}

.page-products .solution-card-head .tag {
  align-self: center;
  flex-shrink: 0;
}

.page-products .solution-num {
  font-family: var(--font-mono);
  font-size: 44px;
  line-height: 1;
  color: var(--pv-gold);
  font-weight: 800;
  flex-shrink: 0;
}

.page-products .solution-heading {
  flex: 1;
  min-width: 0;
}

.page-products .solution-heading h2 {
  font-family: var(--font-title);
  font-size: 26px;
  line-height: 1.3;
  margin: 4px 0 0;
  color: var(--pv-ink);
}

.page-products .solution-heading .section-kicker {
  color: rgba(16, 24, 32, 0.56);
}

.page-products .split-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.page-products .split-aside {
  display: flex;
  justify-content: center;
}

.page-products .lead-text {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(16, 24, 32, 0.84);
  margin-top: 0;
}

.page-products .organic-blob {
  position: absolute;
  z-index: 0;
  border-radius: 48% 62% 40% 58% / 56% 38% 62% 44%;
  pointer-events: none;
  opacity: 0.30;
}

.page-products .media-frame,
.page-products .channel-media,
.page-products .local-media,
.page-products .schedule-media-frame {
  margin: 0;
}

.page-products .media-frame img,
.page-products .ios-icon-wrap img,
.page-products .ios-qr-frame img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.page-products .media-frame {
  box-shadow: 0 10px 26px rgba(4, 12, 28, 0.10);
  border-radius: var(--radius-m);
}

.page-products .accordion {
  margin-top: 20px;
}

.page-products .accordion-item {
  border-bottom: 1px solid rgba(42, 58, 92, 0.14);
}

.page-products .accordion-item:first-child {
  border-top: 1px solid rgba(42, 58, 92, 0.14);
}

.page-products .accordion-trigger {
  background: transparent;
  border: 0;
  padding: 14px 6px;
  width: 100%;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--pv-ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-products .accordion-trigger::after {
  content: "+";
  font-family: var(--font-mono);
  color: var(--pv-gold);
  font-size: 18px;
  font-weight: 700;
}

.page-products .accordion-panel {
  padding: 0 6px 14px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(16, 24, 32, 0.76);
}

.page-products .solution-card--channel {
  background: var(--pv-cream);
}

.page-products .solution-card--channel .organic-blob {
  width: 280px;
  height: 220px;
  right: -70px;
  bottom: 60px;
  background: linear-gradient(135deg, rgba(201, 160, 99, 0.5), rgba(229, 193, 122, 0.18));
}

.page-products .channel-steps {
  list-style: none;
  margin: 22px 0;
  padding: 0;
  counter-reset: channel-step;
  display: grid;
  gap: 12px;
}

.page-products .channel-steps li {
  counter-increment: channel-step;
  position: relative;
  padding: 14px 14px 14px 52px;
  background: rgba(245, 243, 239, 0.7);
  border: 1px solid rgba(201, 160, 99, 0.35);
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(16, 24, 32, 0.86);
}

.page-products .channel-steps li::before {
  content: counter(channel-step, decimal-leading-zero);
  position: absolute;
  left: 14px;
  top: 14px;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--pv-deep);
  color: var(--pv-gold-light);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-products .channel-steps li span {
  display: block;
  font-weight: 700;
  color: var(--pv-ink);
  margin-bottom: 2px;
}

.page-products .channel-media,
.page-products .local-media {
  border: 1px solid rgba(42, 58, 92, 0.16);
}

.page-products .solution-card--ios {
  background:
    linear-gradient(135deg, rgba(16, 24, 32, 0.82), rgba(11, 29, 58, 0.94)),
    var(--pv-deep);
  color: rgba(245, 243, 239, 0.88);
}

.page-products .solution-card--ios .solution-heading h2 {
  color: var(--pv-cream);
}

.page-products .solution-card--ios .solution-heading .section-kicker {
  color: var(--pv-gold-light);
}

.page-products .solution-card--ios .solution-card-head {
  border-bottom-color: rgba(201, 160, 99, 0.28);
}

.page-products .solution-card--ios .organic-blob {
  width: 300px;
  height: 260px;
  left: -80px;
  top: 80px;
  background: linear-gradient(135deg, rgba(122, 92, 255, 0.32), rgba(63, 224, 197, 0.16));
}

.page-products .ios-layout {
  display: grid;
  gap: 32px;
}

.page-products .ios-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-products .ios-icon-wrap {
  width: 108px;
  flex-shrink: 0;
  padding: 14px;
  background: rgba(253, 251, 247, 0.96);
  border-radius: 24px;
  box-shadow: 0 10px 24px rgba(4, 12, 28, 0.2);
}

.page-products .ios-copy p {
  font-size: 15px;
  line-height: 1.7;
  margin-top: 0;
  color: rgba(245, 243, 239, 0.88);
}

.page-products .ios-checklist {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.page-products .ios-checklist li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245, 243, 239, 0.86);
}

.page-products .ios-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--pv-cyan);
  font-weight: 700;
}

.page-products .ios-note {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(245, 243, 239, 0.66);
  border-left: 3px solid var(--pv-gold);
  padding-left: 14px;
  margin-top: 24px;
}

.page-products .ios-scan {
  text-align: center;
  background: rgba(9, 20, 42, 0.45);
  border: 1px solid rgba(201, 160, 99, 0.38);
  border-radius: 18px;
  padding: 28px 20px;
}

.page-products .ios-qr-frame {
  display: inline-block;
  background: var(--pv-cream);
  padding: 10px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(4, 12, 28, 0.28);
  transition: transform 0.2s ease;
}

.page-products .ios-qr-frame:hover {
  transform: scale(1.04);
}

.page-products .ios-qr-frame img {
  border-radius: 10px;
}

.page-products .ios-qr-desc {
  margin-top: 16px;
  font-weight: 700;
  color: var(--pv-gold-light);
  font-size: 15px;
}

.page-products .ios-qr-hint {
  margin-top: 4px;
  font-size: 13px;
  color: rgba(245, 243, 239, 0.62);
  font-family: var(--font-mono);
}

.page-products .solution-card--local {
  background: var(--pv-warm);
}

.page-products .solution-card--local .organic-blob {
  width: 260px;
  height: 220px;
  left: -60px;
  bottom: 40px;
  background: linear-gradient(135deg, rgba(63, 224, 197, 0.30), rgba(122, 92, 255, 0.14));
}

.page-products .local-accordion {
  margin-top: 8px;
}

.page-products .solution-card--schedule {
  background: var(--pv-cream);
}

.page-products .solution-card--schedule .organic-blob {
  width: 240px;
  height: 200px;
  right: -40px;
  top: 100px;
  background: linear-gradient(135deg, rgba(122, 92, 255, 0.24), rgba(201, 160, 99, 0.16));
}

.page-products .schedule-layout {
  display: grid;
  gap: 32px;
}

.page-products .schedule-list {
  list-style: none;
  margin: 22px 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.page-products .schedule-list li {
  position: relative;
  padding: 18px 16px 18px 92px;
  background: var(--pv-warm);
  border-radius: var(--radius-m);
  border: 1px solid rgba(201, 160, 99, 0.4);
}

.page-products .schedule-time {
  position: absolute;
  left: 16px;
  top: 18px;
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--pv-gold-strong);
}

.page-products .schedule-title {
  display: block;
  font-weight: 700;
  font-size: 16px;
  color: var(--pv-ink);
  margin-bottom: 4px;
}

.page-products .schedule-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(16, 24, 32, 0.7);
}

.page-products .schedule-media-frame {
  border: 1px solid rgba(42, 58, 92, 0.16);
}

.page-products .faq-guide {
  background:
    radial-gradient(600px 260px at 20% 10%, rgba(201, 160, 99, 0.2), transparent 60%),
    var(--pv-deep);
  text-align: center;
  color: var(--pv-cream);
  padding: 56px 16px;
}

.page-products .faq-guide .section-kicker {
  color: var(--pv-gold-light);
}

.page-products .faq-guide h2 {
  font-family: var(--font-title);
  font-size: 26px;
  line-height: 1.35;
  margin: 8px 0 12px;
  color: var(--pv-cream);
}

.page-products .faq-guide p {
  color: rgba(245, 243, 239, 0.76);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.page-products .faq-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.page-products .tag--cyan {
  background: rgba(63, 224, 197, 0.12);
  border-color: rgba(63, 224, 197, 0.45);
  color: #1FA0B0;
}

.page-products .tag--violet {
  background: rgba(122, 92, 255, 0.12);
  border-color: rgba(122, 92, 255, 0.5);
  color: #8A6CFF;
}

@media (min-width: 768px) {
  .page-products .index-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

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

  .page-products .index-num {
    font-size: 28px;
  }

  .page-products .ios-main {
    flex-direction: row;
    align-items: flex-start;
  }

  .page-products .ios-icon-wrap {
    width: 120px;
  }

  .page-products .schedule-layout {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
  }

  .page-products .schedule-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .page-products .hero-inner {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 48px;
  }

  .page-products .hero-copy h1 {
    font-size: 38px;
  }

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

  .page-products .split-layout {
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 48px;
  }

  .page-products .solution-card {
    padding: 72px 0 84px;
  }

  .page-products .solution-card-head {
    align-items: center;
  }

  .page-products .solution-num {
    font-size: 64px;
  }

  .page-products .solution-heading h2 {
    font-size: 28px;
  }

  .page-products .ios-layout {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 48px;
  }

  .page-products .ios-scan {
    padding: 36px 28px;
  }

  .page-products .schedule-list li {
    padding-left: 100px;
  }
}
