/* ==========================================================
   LINQUR DESIGN SYSTEM — Product page stylesheet
   ========================================================== */

*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Roboto', sans-serif;
  color: #585858;
  background: #fff;
  font-size: 16px;
  line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  color: #10395D;
  font-weight: 400;
}
h1 { font-size: 2.125rem; line-height: 1.2; }
h2 { font-size: 1.75rem; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; }
h5 { font-size: 1rem; font-weight: 500; margin-bottom: .35rem; }
p  { color: #585858; }
a  { color: #F79442; }

/* ── Overline ── */
.lq-overline {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #CD0074;
  margin-bottom: .6rem;
}

/* ── Orange divider ── */
.lq-divider {
  width: 48px;
  height: 4px;
  background: #F79442;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

/* ── Heading accent ── */
.lq-accent { color: #752B6A; }

/* ── Buttons ── */
.btn-lq-primary,
a.btn-lq-primary,
a.btn-lq-primary:link,
a.btn-lq-primary:visited {
  background: #F79442;
  border: 2px solid #F79442;
  color: #fff !important;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .65rem 1.75rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background .2s, border-color .2s;
}
.btn-lq-primary:hover,
a.btn-lq-primary:hover {
  background: #e07630;
  border-color: #e07630;
  color: #fff !important;
}

.btn-lq-outline {
  background: transparent;
  border: 2px solid #F79442;
  color: #F79442 !important;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .65rem 1.75rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: all .2s;
}
.btn-lq-outline:hover { background: #F79442; color: #fff !important; }

.btn-lq-ghost {
  background: transparent;
  border: 2px solid rgba(255,255,255,.55);
  color: #fff !important;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .65rem 1.75rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background .2s;
}
.btn-lq-ghost:hover { background: rgba(255,255,255,.15); color: #fff !important; }

/* ── Icon circles ── */
.lq-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.35rem;
}
.ic-navy   { background: #10395D; color: #fff; }
.ic-purple { background: #752B6A; color: #fff; }
.ic-orange { background: #F79442; color: #fff; }

/* ── Feature cards (legacy grid, kept for reference) ── */
.lq-feat-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  height: 100%;
  box-shadow: 0 2px 16px rgba(16,57,93,.07);
  border-left: 4px solid #F79442;
  transition: box-shadow .2s, transform .2s;
}
.lq-feat-card:hover { box-shadow: 0 6px 28px rgba(16,57,93,.13); transform: translateY(-3px); }
.lq-feat-card h5 { color: #10395D; font-size: .9375rem; font-weight: 500; }
.lq-feat-card p  { font-size: 13.5px; margin: 0; }

/* ── Feature rows (two-column layout) ── */
.lq-feat-row {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 14px rgba(16,57,93,.07);
  height: 100%;
  transition: box-shadow .2s, transform .2s;
}
.lq-feat-row:hover { box-shadow: 0 6px 24px rgba(16,57,93,.13); transform: translateY(-2px); }
.lq-feat-row .feat-body { flex: 1; }
.lq-feat-row h5 { color: #10395D; font-size: .9375rem; font-weight: 600; margin-bottom: .3rem; }
.lq-feat-row p  { font-size: 13.5px; margin: 0; }

/* ── Cluster chips ── */
.lq-cluster-chip {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 20px;
  padding: .2rem .75rem;
  margin-bottom: .5rem;
}
.chip-distribute { background: rgba(247,148,66,.15); color: #c0631a; }
.chip-manage     { background: rgba(117,43,106,.13); color: #752B6A; }
.chip-report     { background: rgba(16,57,93,.1);    color: #10395D; }

/* ── Cluster divider ── */
.lq-cluster-divider {
  border: none;
  border-top: 1px solid #e4e9ed;
  margin: 2.5rem 0;
}

/* ── Cluster heading ── */
.lq-cluster-heading {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.lq-cluster-heading .cluster-line {
  flex: 1;
  height: 2px;
  border-radius: 2px;
}
.line-distribute { background: #F79442; }
.line-manage     { background: #752B6A; }
.line-report     { background: #10395D; }
.lq-cluster-heading span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  white-space: nowrap;
}
.txt-distribute { color: #c0631a; }
.txt-manage     { color: #752B6A; }
.txt-report     { color: #10395D; }

/* ── Checklist card (hero right) ── */
.lq-check-card {
  background: #fff;
  border-radius: 10px;
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 28px rgba(16,57,93,.10);
  border-top: 4px solid #CD0074;
  height: 100%;
}
.lq-check-card h3 { font-size: 1.0625rem; font-weight: 500; color: #10395D; margin-bottom: 1.25rem; }
.lq-check-item { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: .9rem; }
.lq-check-item:last-child { margin-bottom: 0; }
.lq-check-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #CD0074;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.lq-check-text { font-size: .875rem; color: #585858; line-height: 1.45; }

/* ── Step numbers ── */
.lq-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #F79442;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.0625rem;
  flex-shrink: 0;
  line-height: 1;
}

/* ── Phase chip ── */
.lq-phase-chip {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #CD0074;
  padding: .25rem .85rem;
  border: 1px solid rgba(205,0,116,.3);
  border-radius: 20px;
  display: inline-block;
  margin-bottom: .85rem;
}

/* ── Specs table ── */
.lq-spec-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.lq-spec-table thead tr { background: #10395D; }
.lq-spec-table thead th { color: #fff; padding: .75rem 1.1rem; text-align: left; font-weight: 500; font-size: .85rem; letter-spacing: .03em; }
.lq-spec-table tbody tr:nth-child(even) { background: #F1F4F6; }
.lq-spec-table tbody tr:nth-child(odd)  { background: #fff; }
.lq-spec-table tbody td { padding: .65rem 1.1rem; border-bottom: 1px solid #e8ecef; vertical-align: top; }
.lq-spec-table .spec-label { font-weight: 500; color: #10395D; width: 35%; }
.lq-spec-table .spec-value { color: #585858; }

/* ── CTA section ── */
.lq-cta-purple {
  background: #752B6A;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.lq-cta-purple::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(205,0,116,.15);
  pointer-events: none;
}
.lq-cta-purple::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(16,57,93,.2);
  pointer-events: none;
}
.lq-cta-purple h2    { color: #fff; }
.lq-cta-purple p     { color: rgba(255,255,255,.85); font-size: 1.0625rem; }
.lq-cta-purple .lq-overline { color: rgba(255,255,255,.65); }

/* ── Logo slider ── */
.logos {
  overflow: hidden;
  padding: 20px 0;
  white-space: nowrap;
  position: relative;
}
.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  content: '';
  width: 200px;
  height: 100%;
  z-index: 2;
}
.logos:before { left: 0; background: linear-gradient(to left, rgba(255,255,255,0), white); }
.logos:after  { right: 0; background: linear-gradient(to right, rgba(255,255,255,0), white); }
.logos-slide  { display: inline-block; animation: 20s slide infinite linear; }
.logos-slide img { height: 50px; margin: 0 30px; }

@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* ── Magenta blog link ── */
.lq-link-magenta {
  color: #CD0074 !important;
  font-weight: 700;
  text-decoration: none;
}
.lq-link-magenta:hover { text-decoration: underline; }

/* ── Background utilities ── */
.bg-lq-light { background-color: #F1F4F6; }
.bg-lq-white { background-color: #ffffff; }

/* ── Blob decorations ── */
.lq-blob-wrap {
  position: absolute;
  pointer-events: none;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.lq-blob-wrap svg { position: absolute; }

/* ── FAQ accordion ── */
.lq-faq-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: .75rem;
  box-shadow: 0 2px 10px rgba(16,57,93,.06);
  overflow: hidden;
}
.lq-faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 1.125rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  font-family: 'Roboto', sans-serif;
  font-size: .9375rem;
  font-weight: 500;
  color: #10395D;
  transition: background .15s;
}
.lq-faq-btn:hover { background: #F1F4F6; }
.lq-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #F1F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s, transform .2s;
  color: #10395D;
  font-size: .8rem;
}
.lq-faq-btn[aria-expanded="true"] .lq-faq-icon {
  background: #F79442;
  color: #fff;
  transform: rotate(45deg);
}
.lq-faq-body {
  padding: 0 1.5rem 1.125rem;
  font-size: .9rem;
  color: #585858;
  line-height: 1.65;
  display: none;
}
.lq-faq-item.open .lq-faq-body { display: block; }
