/* Product/Services page-specific styles */

/* Page hero (fallback; shared styles live in index-new.css) */
.page-hero{
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 64px 0 54px;
  border-bottom: 1px solid var(--line);
  display:flex;
  align-items: center;
  background:
    radial-gradient(900px 520px at 18% 18%, rgba(252,124,52,.14), transparent 62%),
    radial-gradient(820px 520px at 86% 18%, rgba(252,124,52,.08), transparent 60%),
    radial-gradient(980px 620px at 50% 120%, rgba(0,0,0,.22), transparent 62%),
    linear-gradient(180deg, #0b1220 0%, #121a2a 100%);
}
.page-hero .container{ width: 100%; }
.page-hero-bg{
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity: .26;
  background-image:
    linear-gradient(to right, rgba(252,124,52,.10) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(252,124,52,.10) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(70% 80% at 50% 30%, #000 45%, transparent 100%);
  -webkit-mask-image: radial-gradient(70% 80% at 50% 30%, #000 45%, transparent 100%);
}
.page-hero-inner{
  position: relative;
  z-index: 1;
  max-width: 980px;
}
.page-kicker{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.86);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: var(--fs-12);
}
.page-kicker:before{
  content:"";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(252,124,52,.12);
}
.page-hero h1{
  margin: 14px 0 10px;
  color: rgba(255,255,255,.96);
  font-size: 46px;
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: .01em;
  text-shadow: 0 18px 44px rgba(0,0,0,.35);
}
.page-hero-lead{
  color: rgba(255,255,255,.78);
  max-width: 70ch;
}
.page-hero-actions{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 980px){
  .page-hero{ min-height: 320px; padding: 56px 0 46px; }
  .page-hero h1{ font-size: 38px; }
}
@media (max-width: 520px){
  .page-hero{ min-height: 280px; padding: 48px 0 38px; }
  .page-hero h1{ font-size: 32px; }
}

/* Keep only Product-specific layout/meta below. */
.page-hero-grid{ display:block; }
.page-hero-main{ min-width: 0; }

.page-hero-meta{
  margin-top: 14px;
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page-hero .pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.86);
  font-weight: 850;
  font-size: var(--fs-12);
  white-space: nowrap;
}
.page-hero .pill i{ color: rgba(252,124,52,.95); }
.page-hero-actions{
  margin-top: 16px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}
.page-hero-lead{ max-width: 70ch; }

.product-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.product-card{
  display:flex;
  gap: 12px;
  padding: 16px 16px;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(252,124,52,.16);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.product-card:before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(680px 240px at 12% 0%, rgba(252,124,52,.06), transparent 60%),
    radial-gradient(620px 240px at 92% 0%, rgba(38,79,147,.04), transparent 62%);
  opacity: .9;
}
.product-card > *{ position: relative; z-index: 1; }
.product-card:hover{
  transform: translateY(-3px);
  border-color: rgba(252,124,52,.22);
  box-shadow: 0 18px 46px rgba(17,24,39,.10);
}
.product-icon{
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:
    radial-gradient(28px 28px at 30% 25%, rgba(255,255,255,.85), rgba(255,255,255,0)),
    linear-gradient(180deg, rgba(252,124,52,.16), rgba(252,124,52,.07));
  border: 1px solid rgba(252,124,52,.18);
  color: rgba(11,18,32,.92);
  flex: 0 0 auto;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72), 0 14px 28px rgba(252,124,52,.12);
}
.product-icon i{ font-size: 18px; line-height: 1; }
.product-body{ min-width: 0; }
.product-title{
  font-size: var(--fs-14);
  font-weight: 950;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: .01em;
}
.product-desc{
  margin-top: 6px;
  font-size: var(--fs-13);
  color: rgba(11,18,32,.78);
  line-height: 1.85;
}
.product-points{
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display:grid;
  gap: 6px;
}
.product-points li{
  display:flex;
  align-items:flex-start;
  gap: 8px;
  color: rgba(11,18,32,.76);
  font-size: var(--fs-12);
  line-height: 1.55;
}
.product-points li i{
  margin-top: 2px;
  color: rgba(252,124,52,.92);
  font-size: 14px;
  line-height: 1;
  flex: 0 0 auto;
}
.product-points li span{ min-width: 0; }
.product-tags{
  margin-top: 10px;
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-tags .tag{
  display:inline-flex;
  align-items:center;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(252,124,52,.18);
  background: rgba(252,124,52,.08);
  color: rgba(11,18,32,.78);
  font-size: var(--fs-12);
  line-height: 1;
  white-space: nowrap;
}

.faq{
  border: 1px solid rgba(252,124,52,.16);
  background: rgba(255,255,255,.92);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  counter-reset: faq;
}
.faq-item{
  padding: 16px 16px;
  border-bottom: 1px solid rgba(252,124,52,.12);
  transition: background .18s ease;
}
.faq-item:last-child{ border-bottom: 0; }
.faq-item:hover{ background: rgba(252,124,52,.035); }
.faq-q{
  font-weight: 950;
  color: var(--ink);
  font-size: var(--fs-14);
  letter-spacing: .01em;
  display:flex;
  align-items:flex-start;
  gap: 10px;
}
.faq-q:before{
  counter-increment: faq;
  content: counter(faq);
  width: 22px;
  height: 22px;
  border-radius: 999px;
  flex: 0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top: 1px;
  background: rgba(252,124,52,.10);
  border: 1px solid rgba(252,124,52,.18);
  color: rgba(11,18,32,.80);
  font-size: 12px;
}
.faq-a{
  margin-top: 8px;
  color: rgba(11,18,32,.78);
  font-size: var(--fs-13);
  line-height: 1.9;
}

@media (max-width: 980px){
  .page-hero h1{ font-size: 38px; }
  .product-grid{ grid-template-columns: 1fr; }
  .page-hero-inner{ max-width: 980px; }
}

