/* Products page – light theme, "We sell your gift cards" (not marketplace) */

/* No dark overrides: keep default landing header, subnav, footer (light) */

/* Block sections: no solid background so body grid shows through (same as .hero / .section) */
.block-dark {
  background: transparent;
  color: var(--text);
  position: relative;
}

.block-dark .wrap {
  position: relative;
  z-index: 2;
}

/* Hero */
.products-hero {
  padding: 48px 0 56px;
}

.products-hero-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.products-kicker {
  font-size: 12px;
  font-weight: 600;
  color: var(--subtle);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 8px;
}

.products-hero-title {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--text);
}

.products-hero-lead {
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 24px;
}

.products-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-products {
  background: var(--primary) !important;
  color: #fff !important;
  border: none;
  box-shadow: 0 8px 24px rgba(195, 58, 236, 0.25);
}

.btn-products:hover {
  filter: brightness(1.05);
}

.btn-ghost-light {
  background: rgba(195, 58, 236, 0.08) !important;
  color: var(--primary) !important;
  border: 1px solid rgba(195, 58, 236, 0.25);
  box-shadow: none;
}

.btn-ghost-light:hover {
  background: rgba(195, 58, 236, 0.12) !important;
}

/* Value section – two cards */
.products-value {
  padding: 48px 0 56px;
}

.products-section-kicker {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.products-section-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--text);
}

.products-section-sub {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 32px;
}

.products-cards-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.products-cards-two.solutions-steps {
  grid-template-columns: repeat(3, 1fr);
}

.products-card-light {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.products-card-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  border: 1px solid rgba(195, 58, 236, 0.35);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.products-card-light h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text);
}

.products-card-light p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 16px;
}

.products-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.products-card-list li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}

.products-card-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* Benefits grid 2x3 */
.products-benefits {
  padding: 48px 0 56px;
}

.products-benefits-title {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 32px;
  color: var(--text);
}

.products-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.products-benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(10, 37, 64, 0.04);
}

.products-benefit-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(10, 37, 64, 0.04);
  border: 1px solid rgba(10, 37, 64, 0.1);
  display: grid;
  place-items: center;
  color: var(--text);
}

.products-benefit-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.products-benefit-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}

/* Summary + features grid */
.products-summary {
  padding: 48px 0 56px;
}

.products-summary-crown {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  background: transparent;
  border: 1px solid rgba(10, 37, 64, 0.12);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--text);
}

.products-summary-crown svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.products-summary-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 8px;
  line-height: 1.3;
  color: var(--text);
}

.products-summary-lead {
  text-align: center;
  font-size: 15px;
  color: var(--muted);
  margin: 0 auto 32px;
  max-width: 560px;
}

.products-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.products-feature-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(10, 37, 64, 0.04);
}

.products-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--text);
}

.products-feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
}

.products-feature-box h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text);
}

.products-feature-box p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.products-cta-center {
  text-align: center;
}

.btn-large {
  padding: 12px 24px !important;
  font-size: 14px !important;
}

/* Resources page: FAQ and doc cards */
.resources-faq {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}

.resources-faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(10, 37, 64, 0.04);
}

.resources-faq-item h4 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.resources-faq-item p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

.resources-faq-item .link {
  font-size: 13px;
  font-weight: 600;
}

.resources-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.resources-card-link:hover {
  border-color: rgba(195, 58, 236, 0.25);
  box-shadow: 0 4px 16px rgba(195, 58, 236, 0.08);
}

.resources-card-link .link {
  color: var(--primary);
  font-weight: 600;
}

.resources-support-cards {
  margin-top: 24px;
}

/* Testimonial */
.products-testimonial {
  padding: 48px 0 56px;
}

.products-testimonial-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}

.products-testimonial-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.products-quote {
  display: block;
  font-size: 48px;
  line-height: 1;
  color: var(--primary);
  font-family: Georgia, serif;
}

.products-quote.open {
  margin-bottom: 8px;
}

.products-quote.close {
  margin-top: 8px;
}

.products-testimonial-text {
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
}

.products-testimonial-cite {
  display: block;
  font-size: 14px;
  font-style: normal;
  color: var(--subtle);
  margin-top: 12px;
}

/* Payments */
.products-payments {
  padding: 48px 0 56px;
}

.products-payments-bg {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  pointer-events: none;
}

.products-payments-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.products-payments-lock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.products-payments-lock svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
}

.products-payments-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.products-payments-desc {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin: 0 auto 24px;
  max-width: 560px;
}

.products-payments-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.products-payment-badge {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

/* CTA block */
.products-cta-block {
  padding: 48px 0 64px;
}

.products-cta-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 12px;
  color: var(--text);
}

.products-cta-text {
  text-align: center;
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 24px;
}

.products-cta-block .btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 980px) {
  .products-cards-two {
    grid-template-columns: 1fr;
  }

  .products-cards-two.solutions-steps {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .products-hero,
  .products-value,
  .products-benefits,
  .products-summary,
  .products-testimonial,
  .products-payments {
    padding: 32px 0 40px;
  }

  .products-cta-block {
    padding: 32px 0 48px;
  }

  .products-hero-title {
    font-size: 32px;
  }

  .products-hero-lead {
    font-size: 15px;
  }

  .products-benefits-title {
    margin-bottom: 24px;
  }

  .products-benefits-grid,
  .products-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .products-summary-lead {
    margin-bottom: 24px;
  }

  .products-features-grid {
    margin-bottom: 24px;
  }

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

  .products-summary-title {
    font-size: 20px;
  }

  .products-testimonial-header {
    margin-bottom: 16px;
  }

  .products-testimonial-text {
    font-size: 16px;
  }

  .products-payments-desc {
    margin-bottom: 20px;
  }

  .products-payments-title {
    font-size: 18px;
  }

  .products-card-light,
  .products-benefit-item,
  .products-feature-box {
    padding: 20px;
  }
}
