.page-products {
  --hero-deep: #081F17;
  --hero-green: #0E4D3A;
  --hero-green-2: #145C44;
  --grid-line: rgba(212, 169, 44, 0.14);
  --gold-soft: rgba(212, 169, 44, 0.18);
  --orange-cta: linear-gradient(135deg, #E87A20 0%, #F2943A 100%);
  --txt-soft: rgba(255, 255, 255, 0.78);
  --card-radius: 18px;
  color: var(--color-text);
  background: var(--color-bg);
}

.page-products .dl-sticky-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  background: rgba(8, 31, 23, 0.96);
  border-bottom: 1px solid rgba(212, 169, 44, 0.35);
  backdrop-filter: blur(8px);
}

.page-products .dl-sticky-bar a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  letter-spacing: 0.02em;
}

.page-products .dl-sticky-bar .bar-download {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--orange-cta);
  box-shadow: 0 6px 18px rgba(232, 122, 32, 0.35);
}

.page-products .dl-sticky-bar .bar-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}

.page-products .dl-sticky-bar .bar-version {
  color: #F3D77C;
}

@media (min-width: 720px) {
  .page-products .dl-sticky-bar {
    padding: 0.75rem 2rem;
  }

  .page-products .dl-sticky-bar a {
    font-size: 0.9rem;
  }
}

@media (min-width: 1180px) {
  .page-products .dl-sticky-bar {
    padding-left: calc((100vw - var(--container-max)) / 2 + 1.25rem);
    padding-right: calc((100vw - var(--container-max)) / 2 + 1.25rem);
  }
}

.page-products .product-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(8, 31, 23, 0.98) 0%, rgba(14, 77, 58, 0.96) 48%, rgba(20, 92, 68, 0.9) 100%),
    repeating-linear-gradient(90deg, transparent 0 42px, var(--grid-line) 42px 43px),
    repeating-linear-gradient(0deg, transparent 0 42px, var(--grid-line) 42px 43px);
  color: var(--color-white);
}

.page-products .product-hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -32%;
  width: 56%;
  height: 90%;
  background: radial-gradient(circle at 70% 30%, rgba(212, 169, 44, 0.16) 0%, transparent 62%);
  pointer-events: none;
}

.page-products .hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.6rem;
  padding-top: 1.6rem;
  padding-bottom: 3.4rem;
}

.page-products .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  color: var(--color-sand);
  margin: 0;
}

.page-products .breadcrumbs a {
  color: #D9E4DC;
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-products .breadcrumbs a:hover {
  color: #F3D77C;
}

.page-products .breadcrumbs span[aria-current="page"] {
  color: var(--color-sand);
  font-weight: 700;
}

.page-products .hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.15rem;
}

.page-products .hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 6vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: 0.01em;
  margin: 0;
  text-transform: none;
}

.page-products .hero-desc {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--txt-soft);
  max-width: 46rem;
  margin: 0;
}

.page-products .hero-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
}

.page-products .hero-points li {
  font-size: 0.86rem;
  color: var(--color-white);
  padding-left: 1.2rem;
  position: relative;
}

.page-products .hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(212, 169, 44, 0.2);
}

.page-products .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.4rem;
}

.page-products .btn-orange {
  background: var(--orange-cta);
  color: var(--color-white);
  border: none;
  box-shadow: 0 12px 28px rgba(232, 122, 32, 0.32);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease;
}

.page-products .btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(232, 122, 32, 0.42);
}

.page-products .hero-device {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 240px;
}

.page-products .phone-shell {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  width: min(220px, 62vw);
  border-radius: 34px;
  padding: 12px 8px 14px;
  background: linear-gradient(160deg, #2A4B3E 0%, #142F25 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45), inset 0 0 0 2px rgba(255, 255, 255, 0.04);
}

.page-products .phone-shell::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 30px;
  border: 1px solid rgba(212, 169, 44, 0.24);
  pointer-events: none;
}

.page-products .phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 82px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 3;
}

.page-products .phone-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  background: #06120D;
}

.page-products .float-tag {
  position: absolute;
  z-index: 3;
  animation: floatTag 4.2s ease-in-out infinite;
}

.page-products .float-tag-one {
  top: 22%;
  right: -2.6rem;
}

.page-products .float-tag-two {
  bottom: 19%;
  left: -2.6rem;
  animation-delay: 1.4s;
}

@keyframes floatTag {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (min-width: 920px) {
  .page-products .hero-inner {
    grid-template-columns: 1.25fr 0.75fr;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2.4rem;
    padding-bottom: 4.8rem;
  }

  .page-products .hero-device {
    max-width: 320px;
    justify-self: end;
    padding-right: 1rem;
  }

  .page-products .phone-shell {
    width: min(250px, 100%);
  }
}

@media (min-width: 1180px) {
  .page-products .hero-device {
    max-width: 360px;
    padding-right: 2.8rem;
  }

  .page-products .float-tag-one {
    right: -0.4rem;
  }

  .page-products .float-tag-two {
    left: -1.6rem;
  }
}

.page-products .features-section {
  position: relative;
  overflow: hidden;
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: var(--color-white);
}

.page-products .features-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-products .features-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.1;
  filter: saturate(0.2) contrast(1.2);
}

.page-products .features-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 246, 244, 0.92) 100%);
}

.page-products .features-section .container {
  position: relative;
  z-index: 1;
}

.page-products .section-heading {
  position: relative;
  margin-bottom: 2.4rem;
  max-width: 720px;
}

.page-products .section-heading .tag {
  margin-bottom: 0.7rem;
}

.page-products .section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  line-height: 1.18;
  margin: 0 0 0.75rem;
  color: var(--color-primary-deep);
  letter-spacing: 0.01em;
}

.page-products .section-heading .lead {
  color: #41534A;
  font-size: 1.02rem;
  margin: 0;
}

.page-products .feature-layout {
  display: grid;
  gap: 2rem;
}

.page-products .feature-cards {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr;
}

.page-products .feature-card {
  display: flex;
  gap: 1.1rem;
  padding: 1.3rem 1.25rem;
  border: 1px solid rgba(14, 77, 58, 0.12);
  border-radius: var(--card-radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-products .feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 169, 44, 0.65);
  box-shadow: var(--shadow-md);
}

.page-products .feature-card h3 {
  font-size: 1.1rem;
  line-height: 1.35;
  margin: 0 0 0.35rem;
  color: var(--color-primary);
  font-weight: 800;
}

.page-products .feature-card p {
  margin: 0;
  font-size: 0.92rem;
  color: #44564D;
  line-height: 1.65;
}

.page-products .feature-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--color-primary);
  background: var(--gold-soft);
  border: 1px solid rgba(212, 169, 44, 0.35);
  transition: color 0.3s ease, background 0.3s ease;
}

.page-products .feature-card:hover .feature-icon {
  color: var(--color-white);
  background: var(--color-gold);
}

.page-products .feature-data-panel {
  background: var(--color-primary-deep);
  border: 1px solid rgba(212, 169, 44, 0.4);
  border-radius: var(--card-radius);
  padding: 1.6rem 1.4rem;
  color: var(--color-white);
  box-shadow: 0 20px 40px rgba(14, 77, 58, 0.18);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.page-products .feature-data-panel h3 {
  margin: 0;
  font-size: 1.15rem;
  color: #F3D77C;
  font-weight: 800;
}

.page-products .coverage-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.2rem;
}

.page-products .coverage-item {
  padding: 0.55rem 0;
}

.page-products .coverage-item dt {
  font-size: 0.78rem;
  color: var(--color-sand);
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.page-products .coverage-item dd {
  margin: 0;
  font-family: var(--font-data);
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
}

.page-products .feature-data-panel > p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

@media (min-width: 720px) {
  .page-products .feature-cards {
    grid-template-columns: 1fr 1fr;
  }

  .page-products .feature-card {
    flex-direction: column;
  }
}

@media (min-width: 1080px) {
  .page-products .feature-layout {
    grid-template-columns: 1.45fr 0.75fr;
    align-items: stretch;
  }

  .page-products .feature-data-panel {
    position: relative;
    overflow: hidden;
  }

  .page-products .feature-data-panel::after {
    content: "";
    position: absolute;
    right: -2rem;
    top: -2rem;
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    border: 26px solid rgba(212, 169, 44, 0.12);
    pointer-events: none;
  }
}

.page-products .download-section {
  background:
    linear-gradient(135deg, rgba(14, 77, 58, 0.06) 0%, rgba(58, 124, 165, 0.06) 100%),
    var(--color-bg);
  padding-top: 4rem;
  padding-bottom: 4.2rem;
  border-top: 1px solid rgba(14, 77, 58, 0.1);
  border-bottom: 1px solid rgba(14, 77, 58, 0.1);
}

.page-products .dl-grid {
  display: grid;
  gap: 1.8rem;
  align-items: stretch;
}

.page-products .dl-card {
  border-radius: var(--card-radius);
  padding: 2rem 1.5rem 1.7rem;
  text-align: center;
  background: var(--color-white);
  border: 1px solid rgba(14, 77, 58, 0.16);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s ease, border-color 0.28s ease;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  position: relative;
}

.page-products .dl-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 169, 44, 0.6);
}

.page-products .dl-card h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--color-primary);
  font-weight: 800;
}

.page-products .dl-card p {
  margin: 0;
  font-size: 0.92rem;
  color: #45584E;
  line-height: 1.6;
}

.page-products .dl-badge {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.32rem 1rem;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  align-self: center;
}

.page-products .dl-badge-android {
  background: var(--color-secondary);
}

.page-products .dl-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  background: var(--orange-cta);
  color: var(--color-white);
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 24px rgba(232, 122, 32, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-products .dl-card:active .dl-action {
  transform: scale(0.97);
  box-shadow: 0 6px 14px rgba(232, 122, 32, 0.24);
}

.page-products .dl-union {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  justify-content: center;
}

.page-products .dl-union img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(14, 77, 58, 0.16);
  box-shadow: var(--shadow-sm);
  flex: 0 0 auto;
}

.page-products .union-line {
  height: 1px;
  flex: 1;
  max-width: 120px;
  background: linear-gradient(90deg, rgba(14, 77, 58, 0.18), transparent);
}

.page-products .dl-union .union-line:last-child {
  background: linear-gradient(90deg, transparent, rgba(14, 77, 58, 0.18));
}

.page-products .dl-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 1.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-products .dl-notes > div {
  background: var(--color-white);
  border: 1px solid rgba(14, 77, 58, 0.12);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  text-align: center;
}

.page-products .dl-notes dt {
  font-size: 0.76rem;
  color: #64786E;
  letter-spacing: 0.05em;
  margin-bottom: 0.24rem;
}

.page-products .dl-notes dd {
  margin: 0;
  font-family: var(--font-data);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.1;
}

.page-products .dl-help {
  margin-top: 2rem;
  text-align: center;
}

@media (min-width: 860px) {
  .page-products .dl-grid {
    grid-template-columns: 1fr auto 1fr;
    gap: 1.4rem;
  }

  .page-products .dl-union {
    flex-direction: column;
  }

  .page-products .union-line {
    width: 1px;
    height: 70px;
    flex: 0 0 auto;
    max-width: none;
    background: linear-gradient(180deg, rgba(14, 77, 58, 0.18), transparent);
  }

  .page-products .dl-union .union-line:last-child {
    background: linear-gradient(0deg, transparent, rgba(14, 77, 58, 0.18));
  }

  .page-products .dl-notes {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}

.page-products .version-section {
  background: var(--color-white);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.page-products .timeline {
  list-style: none;
  margin: 2.4rem 0 0;
  padding: 0;
  position: relative;
}

.page-products .timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--color-gold) 0%, rgba(212, 169, 44, 0.1) 35%, rgba(14, 77, 58, 0.2) 100%);
}

.page-products .timeline-item {
  position: relative;
  padding-left: 48px;
  padding-bottom: 2rem;
}

.page-products .timeline-item:last-child {
  padding-bottom: 0;
}

.page-products .timeline-item::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 22px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--color-gold);
  border: 4px solid var(--color-white);
  box-shadow: 0 0 0 2px rgba(212, 169, 44, 0.45);
}

.page-products .timeline-card {
  background: var(--color-bg);
  border: 1px solid rgba(14, 77, 58, 0.1);
  border-radius: var(--card-radius);
  padding: 1.35rem 1.3rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease-out), border-color 0.25s ease;
}

.page-products .timeline-card:hover {
  transform: translateX(4px);
  border-color: rgba(212, 169, 44, 0.55);
}

.page-products .timeline-card h3 {
  margin: 0.4rem 0 0.45rem;
  font-size: 1.05rem;
  color: var(--color-primary);
  font-weight: 800;
}

.page-products .timeline-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #44564D;
}

.page-products .ver-tag {
  display: inline-block;
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.9rem;
  border-radius: 6px;
  background: rgba(14, 77, 58, 0.08);
  color: var(--color-primary);
  border: 1px solid rgba(14, 77, 58, 0.2);
}

.page-products .ver-current {
  background: var(--gold-soft);
  color: #7A5A10;
  border-color: rgba(212, 169, 44, 0.5);
}

@media (min-width: 960px) {
  .page-products .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .page-products .timeline-item {
    width: 50%;
    padding-left: 0;
    padding-right: 50px;
    margin-left: 0;
  }

  .page-products .timeline-item::before {
    left: auto;
    right: -9px;
  }

  .page-products .timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 50px;
  }

  .page-products .timeline-item:nth-child(even)::before {
    left: -9px;
    right: auto;
  }

  .page-products .timeline-card:hover {
    transform: translateY(-4px);
  }
}

.page-products .feedback-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(212, 169, 44, 0.1) 0%, transparent 24%),
    var(--color-primary-deep);
  color: var(--color-white);
  padding-top: 4rem;
  padding-bottom: 4.2rem;
}

.page-products .feedback-section .section-heading h2 {
  color: var(--color-white);
}

.page-products .feedback-section .section-heading .lead {
  color: rgba(255, 255, 255, 0.75);
}

.page-products .feedback-layout {
  display: grid;
  gap: 2.2rem;
}

.page-products .feedback-stats {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 169, 44, 0.3);
  border-radius: var(--card-radius);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.page-products .feedback-chart {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-products .score-dial {
  text-align: center;
}

.page-products .score-dial .data-number {
  font-family: var(--font-data);
  font-size: 3.6rem;
  color: var(--color-gold);
  line-height: 1;
}

.page-products .score-unit {
  font-size: 0.9rem;
  color: var(--color-sand);
}

.page-products .score-dial p {
  margin: 0.4rem 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.page-products .feedback-list {
  display: grid;
  gap: 1rem;
}

.page-products .feedback-card {
  margin: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 3px solid var(--color-gold);
  border-radius: 14px;
  padding: 1.2rem 1.2rem 1.1rem;
  transition: background 0.25s ease, transform 0.25s var(--ease-out);
}

.page-products .feedback-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.page-products .feedback-card blockquote {
  margin: 0 0 0.8rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.96rem;
  line-height: 1.7;
}

.page-products .feedback-card figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.page-products .star-rating {
  color: var(--color-gold);
  letter-spacing: 0.15em;
  font-size: 0.92rem;
}

@media (min-width: 920px) {
  .page-products .feedback-layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: stretch;
  }

  .page-products .feedback-stats {
    justify-content: center;
  }
}

.page-products .security-section {
  background: var(--color-bg);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.page-products .security-grid {
  display: grid;
  gap: 2.2rem;
}

.page-products .security-visual {
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 1px solid rgba(14, 77, 58, 0.14);
  box-shadow: var(--shadow-sm);
  background: var(--color-white);
}

.page-products .security-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-products .security-content {
  background: var(--color-white);
  border: 1px solid rgba(14, 77, 58, 0.12);
  border-radius: var(--card-radius);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-sm);
}

.page-products .security-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.4rem;
}

.page-products .security-list li {
  display: flex;
  gap: 1rem;
}

.page-products .security-index {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-primary);
  background: var(--gold-soft);
  border: 1px solid rgba(212, 169, 44, 0.35);
}

.page-products .security-list h3 {
  margin: 0 0 0.25rem;
  font-size: 1.02rem;
  color: var(--color-primary);
  font-weight: 800;
}

.page-products .security-list p {
  margin: 0;
  font-size: 0.92rem;
  color: #4A5C52;
  line-height: 1.65;
}

.page-products .trust-stmt {
  margin: 1.6rem 0 1rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: rgba(14, 77, 58, 0.06);
  border-left: 3px solid var(--color-secondary);
  color: #33473D;
  font-size: 0.92rem;
  line-height: 1.7;
}

@media (min-width: 1000px) {
  .page-products .security-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
  }
}

.page-products .faq-section {
  position: relative;
  background:
    linear-gradient(135deg, rgba(14, 77, 58, 0.06) 0%, transparent 45%),
    var(--color-white);
  padding-top: 4rem;
  padding-bottom: 4.2rem;
  border-top: 1px solid rgba(14, 77, 58, 0.08);
}

.page-products .faq-list {
  display: grid;
  gap: 0.9rem;
  max-width: 960px;
}

.page-products .faq-item {
  background: var(--color-bg);
  border: 1px solid rgba(14, 77, 58, 0.14);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-products .faq-item[open] {
  border-color: rgba(212, 169, 44, 0.5);
  box-shadow: var(--shadow-sm);
}

.page-products .faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.25rem;
  font-weight: 800;
  font-size: 0.98rem;
  color: var(--color-primary);
  position: relative;
  padding-right: 3.2rem;
  line-height: 1.45;
}

.page-products .faq-item summary::-webkit-details-marker {
  display: none;
}

.page-products .faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--color-gold);
  font-weight: 400;
  transition: transform 0.25s ease;
}

.page-products .faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.page-products .faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  font-size: 0.92rem;
  color: #42554B;
  line-height: 1.7;
}

.page-products .faq-more {
  margin-top: 2rem;
  padding: 1.5rem 1.4rem;
  background: var(--color-primary-deep);
  border-radius: var(--card-radius);
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
  max-width: 960px;
}

.page-products .faq-more p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.7;
}

.page-products .faq-more .btn {
  align-self: flex-start;
}

.page-products [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.page-products [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .page-products [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .page-products .float-tag,
  .page-products .float-tag-one,
  .page-products .float-tag-two {
    animation: none;
  }
}
