.page-products {
  position: relative;
  overflow-x: hidden;
  color: var(--color-white);
  font-family: var(--font-body);
  background: var(--color-bg-dark);
}
.page-products .bg-effect {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
}
.page-products .breadcrumbs {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1.5rem 1.5rem 0;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.page-products .breadcrumbs a {
  color: var(--color-silver);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.page-products .breadcrumbs a:hover {
  color: var(--color-primary);
}
.page-products .breadcrumbs a::after {
  content: "›";
  margin-left: 0.5rem;
  color: var(--color-text-secondary);
}
.page-products .breadcrumbs span[aria-current="page"] {
  color: var(--color-white);
  font-weight: 600;
}
@media (prefers-reduced-motion: reduce) {
  .page-products *,
  .page-products *::before,
  .page-products *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.6); }
  60% { box-shadow: 0 0 0 1.2rem rgba(255, 102, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 102, 0, 0); }
}
.page-products .download-section {
  position: relative;
  z-index: 1;
  padding: 2rem 0 3rem;
  background: linear-gradient(135deg, var(--color-bg-dark) 60%, var(--color-bg-medium));
  margin-bottom: 2rem;
}
.page-products .download-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 32%;
  height: 100%;
  background: linear-gradient(160deg, rgba(255, 102, 0, 0.15), rgba(204, 85, 0, 0.05));
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
  z-index: 0;
}
.page-products .download-layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.page-products .download-info {
  text-align: center;
}
.page-products .download-info h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  color: var(--color-white);
  text-shadow: 0 2px 12px rgba(255, 102, 0, 0.2);
}
.page-products .download-sub {
  font-size: 1.15rem;
  color: var(--color-text-secondary);
  margin: 0 0 1.8rem;
  line-height: 1.5;
  max-width: 32rem;
}
.page-products .btn--primary.download-btn {
  display: inline-block;
  padding: 0.9rem 2.8rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  background: var(--gradient-orange);
  border: none;
  border-radius: 0.25rem;
  cursor: default;
  text-decoration: none;
  animation: pulse-glow 2.4s ease-in-out infinite;
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.page-products .btn--primary.download-btn:hover {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  transform: scale(1.03);
}
.page-products .download-icon-wrap {
  flex-shrink: 0;
}
.page-products .download-icon {
  display: block;
  width: 120px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(255, 102, 0, 0.25));
  transition: transform var(--transition-medium);
}
.page-products .download-icon:hover {
  transform: rotate(-6deg) scale(1.04);
}
@media (min-width: 700px) {
  .page-products .download-section {
    padding: 3rem 0 4rem;
  }
  .page-products .download-layout {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .page-products .download-info {
    text-align: left;
    flex: 1 1 auto;
  }
  .page-products .download-info h1 {
    font-size: 3.6rem;
  }
  .page-products .download-icon {
    width: 180px;
  }
}
@media (min-width: 1024px) {
  .page-products .download-info h1 {
    font-size: 4.2rem;
  }
  .page-products .download-sub {
    font-size: 1.3rem;
  }
  .page-products .download-icon {
    width: 220px;
  }
}
.page-products .features-section {
  position: relative;
  z-index: 1;
  padding: 2rem 0 3rem;
}
.page-products .features-section h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 0.4rem;
  color: var(--color-white);
  letter-spacing: -0.01em;
}
.page-products .section-desc {
  color: var(--color-text-secondary);
  font-size: 1rem;
  margin: 0 0 2rem;
  max-width: 36rem;
  line-height: 1.5;
}
.page-products .features-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.page-products .feature-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.page-products .feature-card {
  background: var(--color-bg-medium);
  border: 1px solid rgba(192, 192, 192, 0.15);
  border-radius: 0.5rem;
  padding: 1.5rem 1.2rem 1.8rem;
  flex: 1 1 100%;
  max-width: 22rem;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium), border-color var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.page-products .feature-card:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-card);
  border-color: rgba(255, 102, 0, 0.3);
}
.page-products .card-icon-wrap {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  border-radius: 50%;
  background: rgba(255, 102, 0, 0.08);
  transition: background var(--transition-fast);
}
.page-products .feature-card:hover .card-icon-wrap {
  background: rgba(255, 102, 0, 0.18);
}
.page-products .card-icon {
  width: 64px;
  height: auto;
  object-fit: contain;
  transition: transform var(--transition-medium);
}
.page-products .feature-card:hover .card-icon {
  transform: rotate(360deg);
}
.page-products .card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.3rem;
  color: var(--color-white);
}
.page-products .card-desc {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin: 0;
}
.page-products .feature-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-products .screenshot-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 0.4rem;
  border: 1px solid rgba(192, 192, 192, 0.12);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  object-fit: cover;
}
.page-products .screenshot-img:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.4);
}
@media (min-width: 700px) {
  .page-products .features-section {
    padding: 3rem 0 4rem;
  }
  .page-products .features-section h2 {
    font-size: 2.4rem;
  }
  .page-products .feature-card {
    flex: 1 1 calc(50% - 0.75rem);
    max-width: none;
  }
  .page-products .feature-card:last-child {
    flex: 0 1 60%;
  }
}
@media (min-width: 1024px) {
  .page-products .features-layout {
    flex-direction: row;
    align-items: flex-start;
  }
  .page-products .feature-cards {
    flex: 1 1 60%;
    gap: 1.8rem;
  }
  .page-products .feature-card {
    flex: 1 1 calc(50% - 0.9rem);
    padding: 2rem 1.5rem;
  }
  .page-products .feature-card:last-child {
    flex: 0 1 55%;
    margin-top: 0.5rem;
  }
  .page-products .feature-visual {
    flex: 0 0 auto;
    margin-top: 0.5rem;
  }
  .page-products .screenshot-img {
    max-width: 460px;
  }
  .page-products .features-section h2 {
    font-size: 2.8rem;
  }
}
.page-products .membership-section {
  position: relative;
  z-index: 1;
  padding: 2rem 0 3rem;
  background: linear-gradient(135deg, var(--color-bg-medium), var(--color-bg-dark));
  margin-top: 1rem;
  border-top: 1px solid rgba(192, 192, 192, 0.08);
}
.page-products .membership-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.page-products .membership-icon-box {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(57, 255, 20, 0.08);
  border: 1px solid rgba(57, 255, 20, 0.2);
}
.page-products .membership-icon {
  width: 56px;
  height: auto;
  object-fit: contain;
  transition: transform var(--transition-medium);
}
.page-products .membership-icon-box:hover .membership-icon {
  transform: scale(1.12) rotate(-8deg);
}
.page-products .membership-content {
  text-align: center;
}
.page-products .membership-content h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 0.8rem;
  color: var(--color-white);
}
.page-products .benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 28rem;
}
.page-products .benefits-list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.98rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}
.page-products .benefits-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--color-accent-green);
  font-weight: 700;
}
.page-products .btn--secondary {
  display: inline-block;
  padding: 0.7rem 2.2rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-white);
  background: transparent;
  border: 1.5px solid var(--color-silver);
  border-radius: 0.25rem;
  cursor: default;
  text-decoration: none;
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}
.page-products .btn--secondary:hover {
  background: rgba(192, 192, 192, 0.08);
  border-color: var(--color-primary);
  transform: scale(1.02);
}
@media (min-width: 700px) {
  .page-products .membership-section {
    padding: 3rem 0 4rem;
  }
  .page-products .membership-layout {
    flex-direction: row;
    justify-content: center;
    gap: 2.5rem;
  }
  .page-products .membership-content {
    text-align: left;
    flex: 1 1 auto;
  }
  .page-products .membership-content h2 {
    font-size: 2.2rem;
  }
  .page-products .benefits-list {
    gap: 0.7rem;
  }
  .page-products .membership-icon-box {
    width: 88px;
    height: 88px;
  }
  .page-products .membership-icon {
    width: 68px;
  }
}
@media (min-width: 1024px) {
  .page-products .membership-section {
    padding: 4rem 0 5rem;
  }
  .page-products .membership-content h2 {
    font-size: 2.6rem;
  }
  .page-products .benefits-list li {
    font-size: 1.05rem;
  }
}
.page-products .container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 700px) {
  .page-products .container {
    padding: 0 2rem;
  }
}
