/* ================================================================
   startbuddi — product-pages.css
   On-brand product LP styles using site tokens from main.css
   Uses: --blue, --navy, --cream, --border, --text, --mint, --gold,
   --f-head (Kontorra/Poppins), --f-body (Poppins), --f-mono
   .btn .btn-primary .btn-gold .btn-outline .btn-outline-white from main.css
   .sb-wrap .sb-section .sb-eyebrow from main.css
   ================================================================ */

/* ── Product LP wrapper ── */
.plp { font-family: var(--f-body); }
.plp * { box-sizing: border-box; }
.plp a { text-decoration: none; }

/* ── HERO ── */
.plp-hero {
  background: linear-gradient(180deg, #08101f 0%, var(--navy) 100%);
  padding: 80px 0 0; overflow: hidden; position: relative;
}
.plp-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 55% 60% at 5% 45%, rgba(26,86,219,.25) 0%, transparent 55%),
              radial-gradient(ellipse 40% 50% at 95% 5%, rgba(5,150,105,.15) 0%, transparent 50%);
}
.plp-hero__inner { position: relative; z-index: 2; }
.plp-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  border-radius: 99px; padding: 6px 14px; margin-bottom: 22px;
  font-family: var(--f-mono); font-size: .72rem; font-weight: 600;
  color: rgba(255,255,255,.7); letter-spacing: .08em; text-transform: uppercase;
}
.plp-hero h1 {
  font-family: var(--f-head); font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 800; color: #fff; line-height: 1.04; letter-spacing: -.04em;
  margin: 0 0 20px;
}
.plp-hero h1 em { font-style: normal; color: #60a5fa; }
.plp-hero__sub {
  font-size: 1.0625rem; color: rgba(255,255,255,.6); line-height: 1.72;
  max-width: 580px; margin: 0 0 32px;
}
.plp-hero__actions {
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
  margin-bottom: 36px;
}
.plp-hero__proof {
  display: flex; align-items: center; gap: 10px;
  font-size: .82rem; color: rgba(255,255,255,.42); flex-wrap: wrap; margin-bottom: 48px;
}
.plp-hero__proof strong { color: rgba(255,255,255,.75); }

/* Hero stats strip */
.plp-hero__stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px 14px 0 0; overflow: hidden; margin-top: 0;
}
.plp-hero__stat { padding: 20px 24px; }
.plp-hero__stat + .plp-hero__stat { border-left: 1px solid rgba(255,255,255,.06); }
.plp-hero__stat-val {
  font-family: var(--f-head); font-size: 1.75rem; font-weight: 800;
  color: #fff; letter-spacing: -.03em; line-height: 1;
}
.plp-hero__stat-lbl {
  font-family: var(--f-mono); font-size: .62rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.42); margin-top: 4px;
}

/* ── TRUSTED LOGOS BAR ── */
.plp-logos { background: rgba(255,255,255,.03); border-bottom: 1px solid var(--border); padding: 20px 0; }
.plp-logos__label {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--text-3); margin-bottom: 14px; text-align: center;
}
.plp-logos__track {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.plp-logos__item {
  font-family: var(--f-head); font-size: .84rem; font-weight: 700;
  color: var(--text-3); opacity: .6;
}

/* ── PROBLEM SECTION ── */
.plp-problem { background: var(--cream-2); padding: 80px 0; }
.plp-problem__head { max-width: 620px; margin: 0 auto 48px; text-align: center; }
.plp-problem__head h2 { font-family: var(--f-head); margin-bottom: 12px; font-size: clamp(1.8rem, 3vw, 2.5rem); letter-spacing: -.03em; }
.plp-problem__head p { font-size: 1rem; line-height: 1.72; }
.plp-pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.plp-pain-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--r-lg);
  padding: 24px 22px; display: flex; flex-direction: column; gap: 10px;
}
.plp-pain-card__icon {
  width: 40px; height: 40px; border-radius: var(--r-md);
  background: #FEF2F2; color: #dc2626;
  display: flex; align-items: center; justify-content: center; font-size: .9rem;
}
.plp-pain-card h3 { font-family: var(--f-head); font-size: .9375rem; font-weight: 700; color: var(--text); margin: 0; }
.plp-pain-card p { font-size: .84rem; color: var(--text-3); line-height: 1.62; margin: 0; }
.plp-pain-card .plp-cost { font-size: .8rem; color: #dc2626; font-weight: 600; margin-top: 2px; }

/* ── FEATURE SECTIONS (alternating) ── */
.plp-feature { padding: 80px 0; }
.plp-feature--cream { background: var(--cream); }
.plp-feature--white { background: #fff; }
.plp-feature--dark { background: var(--navy); }
.plp-feature__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.plp-feature__grid--flip .plp-feature__visual { order: -1; }
.plp-feature__copy { display: flex; flex-direction: column; gap: 0; }
.plp-feature__ey {
  display: inline-flex; align-items: center; gap: 7px;
  border-radius: 99px; padding: 4px 13px; margin-bottom: 14px;
  font-family: var(--f-head); font-size: .72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .07em; border: 1px solid; width: fit-content;
}
.plp-feature__ey--blue { background: var(--blue-l); color: var(--blue); border-color: rgba(26,86,219,.2); }
.plp-feature__ey--mint { background: var(--mint-l); color: var(--mint); border-color: rgba(5,150,105,.2); }
.plp-feature__ey--gold { background: var(--gold-l); color: #B45309; border-color: rgba(245,158,11,.25); }
.plp-feature__ey--white { background: rgba(255,255,255,.12); color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.15); }
.plp-feature__copy h2 {
  font-family: var(--f-head); font-size: clamp(1.6rem, 2.8vw, 2.25rem);
  font-weight: 800; letter-spacing: -.03em; color: var(--text); margin: 0 0 12px; line-height: 1.1;
}
.plp-feature--dark .plp-feature__copy h2 { color: #fff; }
.plp-feature__copy > p {
  font-size: .9375rem; color: var(--text-2); line-height: 1.74; margin: 0 0 20px;
}
.plp-feature--dark .plp-feature__copy > p { color: rgba(255,255,255,.6); }
.plp-feature__bullets { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plp-feature__bullet { display: flex; align-items: flex-start; gap: 10px; font-size: .875rem; color: var(--text-2); }
.plp-feature__bullet i { font-size: .8rem; flex-shrink: 0; margin-top: 3px; }
.plp-feature--dark .plp-feature__bullet { color: rgba(255,255,255,.7); }

/* Visual card (dark) */
.plp-vis {
  background: linear-gradient(135deg, #0a1527 0%, #0f1e35 100%);
  border-radius: var(--r-xl); padding: 28px; position: relative; overflow: hidden;
  box-shadow: 0 32px 80px rgba(10,15,30,.22);
}
.plp-vis::before {
  content: ''; position: absolute; left: -40px; bottom: -40px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,86,219,.3), transparent 70%);
  pointer-events: none;
}
.plp-vis-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md); padding: 14px 16px; margin-bottom: 10px; position: relative;
}
.plp-vis-card:last-child { margin-bottom: 0; }
.plp-vis-card__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; margin-bottom: 8px; }
.plp-vis-card strong { display: block; color: #fff; font-size: .86rem; font-family: var(--f-head); font-weight: 700; }
.plp-vis-card span { font-size: .76rem; color: rgba(255,255,255,.5); line-height: 1.4; }
.plp-vis-badge {
  font-family: var(--f-head); font-size: .6rem; font-weight: 800;
  padding: 3px 9px; border-radius: 99px; white-space: nowrap; flex-shrink: 0;
}
.plp-vis-badge--green { background: rgba(5,150,105,.25); color: #6ee7b7; }
.plp-vis-badge--blue { background: rgba(26,86,219,.25); color: #93c5fd; }
.plp-vis-badge--gold { background: rgba(245,158,11,.2); color: #fcd34d; }
.plp-vis-badge--red { background: rgba(220,38,38,.2); color: #fca5a5; }
.plp-vis-progress { height: 5px; background: rgba(255,255,255,.08); border-radius: 3px; margin-top: 8px; }
.plp-vis-fill { height: 100%; border-radius: 3px; background: var(--blue); }
.plp-vis-chip {
  display: flex; align-items: center; gap: 10px;
  background: rgba(245,158,11,.1); border: 1px solid rgba(245,158,11,.2);
  border-radius: var(--r-md); padding: 12px 14px; margin-top: 12px;
}
.plp-vis-chip i { color: #F59E0B; font-size: .82rem; flex-shrink: 0; }
.plp-vis-chip span { font-size: .78rem; color: rgba(255,255,255,.78); line-height: 1.5; }
.plp-vis-chip strong { color: #F59E0B; }

/* Chip chat card */
.plp-chat { border-radius: var(--r-xl); overflow: hidden; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); }
.plp-chat__head {
  background: rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 13px 16px; display: flex; align-items: center; gap: 10px;
}
.plp-chat__av {
  width: 36px; height: 36px; border-radius: 50%; background: var(--gold);
  color: var(--navy); display: flex; align-items: center; justify-content: center;
  font-size: .88rem; flex-shrink: 0;
}
.plp-chat__name { font-family: var(--f-head); font-size: .875rem; font-weight: 700; color: #fff; }
.plp-chat__sub { font-size: .65rem; color: rgba(255,255,255,.38); }
.plp-chat__dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; margin-left: auto; }
.plp-chat__msgs { padding: 14px 16px; display: flex; flex-direction: column; gap: 9px; }
.plp-msg {
  padding: 10px 13px; border-radius: 11px; font-size: .8rem; line-height: 1.58; max-width: 92%;
}
.plp-msg--u { background: rgba(26,86,219,.35); color: #fff; align-self: flex-end; border-radius: 11px 11px 3px 11px; }
.plp-msg--a { background: rgba(255,255,255,.07); color: rgba(255,255,255,.82); align-self: flex-start; border-radius: 11px 11px 11px 3px; }
.plp-msg--a strong { color: #F59E0B; }

/* ── SOCIAL PROOF ── */
.plp-testi-strip { background: var(--blue); padding: 64px 0; position: relative; overflow: hidden; }
.plp-testi-strip::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,.1), transparent 55%);
}
.plp-testi-strip__inner { max-width: 900px; position: relative; }
.plp-testi-strip__qm { font-size: 64px; line-height: 1; color: rgba(255,255,255,.25); font-family: var(--f-head); display: block; margin-bottom: -10px; }
.plp-testi-strip__inner blockquote {
  font-family: var(--f-head); font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-weight: 600; color: #fff; line-height: 1.28; letter-spacing: -.02em; margin: 0 0 22px;
}
.plp-testi-strip__author { display: flex; align-items: center; gap: 14px; }
.plp-testi-strip__av {
  width: 48px; height: 48px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.3);
}
.plp-testi-strip__av img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.plp-testi-strip__av-ph {
  width: 100%; height: 100%; background: rgba(255,255,255,.2); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-head); font-size: .9rem; font-weight: 700;
}
.plp-testi-strip__author strong { display: block; color: #fff; font-size: .9rem; font-family: var(--f-head); }
.plp-testi-strip__author span { font-size: .78rem; color: rgba(255,255,255,.65); }

/* Multi testimonials grid */
.plp-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.plp-tcard {
  background: var(--cream); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px;
  display: flex; flex-direction: column; gap: 12px;
}
.plp-tcard--dark { background: var(--navy); border-color: transparent; }
.plp-tcard__stars { color: var(--gold); font-size: .78rem; }
.plp-tcard blockquote { font-size: .875rem; line-height: 1.7; color: var(--text-2); margin: 0; flex: 1; }
.plp-tcard--dark blockquote { color: rgba(255,255,255,.65); }
.plp-tcard__auth { display: flex; align-items: center; gap: 10px; }
.plp-tcard__av { width: 36px; height: 36px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.plp-tcard__av img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.plp-tcard__av-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-head); font-size: .75rem; font-weight: 800; color: #fff;
}
.plp-tcard__name { font-family: var(--f-head); font-size: .8rem; font-weight: 700; color: var(--text); }
.plp-tcard--dark .plp-tcard__name { color: #fff; }
.plp-tcard__role { font-size: .72rem; color: var(--text-3); }
.plp-tcard--dark .plp-tcard__role { color: rgba(255,255,255,.42); }

/* ── FAQ ── */
.plp-faq { background: var(--cream-2); padding: 80px 0; }
.plp-faq__layout { display: grid; grid-template-columns: 320px 1fr; gap: 72px; align-items: start; }
.plp-faq__intro h2 { font-family: var(--f-head); margin-bottom: 12px; font-size: clamp(1.6rem, 2.5vw, 2.25rem); letter-spacing: -.03em; }
.plp-faq__intro p { font-size: .9375rem; color: var(--text-2); line-height: 1.7; margin-bottom: 20px; }
.plp-faq-list { display: flex; flex-direction: column; gap: 8px; }
.plp-faq-item { border: 1.5px solid var(--border); border-radius: var(--r-md); overflow: hidden; background: #fff; transition: border-color .18s; }
.plp-faq-item[open] { border-color: var(--blue); }
.plp-faq-item summary {
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 18px; cursor: pointer;
  font-family: var(--f-head); font-size: .9375rem; font-weight: 700; color: var(--text);
}
.plp-faq-item summary::-webkit-details-marker { display: none; }
.plp-faq-icon {
  width: 24px; height: 24px; border-radius: 50%; background: var(--blue-l); color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-size: .75rem;
  flex-shrink: 0; transition: transform .2s, background .18s;
}
.plp-faq-item[open] .plp-faq-icon { background: var(--blue); color: #fff; transform: rotate(45deg); }
.plp-faq-answer { padding: 0 18px 16px; font-size: .9rem; color: var(--text-2); line-height: 1.7; }

/* ── CROSSSELL ── */
.plp-crosssell { background: var(--navy); padding: 64px 0; }
.plp-crosssell__head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 28px; flex-wrap: wrap; gap: 12px; }
.plp-crosssell__head h3 { font-family: var(--f-head); font-size: 1.5rem; font-weight: 700; color: #fff; margin: 0; }
.plp-crosssell__head a { color: rgba(255,255,255,.5); font-size: .875rem; text-decoration: none; font-family: var(--f-head); display: inline-flex; align-items: center; gap: 5px; }
.plp-crosssell__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.plp-cross-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-lg); padding: 18px; text-decoration: none;
  display: flex; flex-direction: column; gap: 10px; transition: .2s;
}
.plp-cross-card:hover { background: rgba(255,255,255,.09); }
.plp-cross-card__icon {
  width: 38px; height: 38px; border-radius: var(--r-md); flex-shrink: 0;
  background: rgba(255,255,255,.08); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: .88rem;
}
.plp-cross-card span { font-family: var(--f-head); font-size: .9rem; font-weight: 600; color: #fff; }
.plp-cross-card small { font-family: var(--f-head); font-size: .78rem; font-weight: 700; color: #93B4FF; display: flex; align-items: center; gap: 4px; }

/* ── FINAL CTA ── */
.plp-cta { background: var(--blue); padding: 88px 0; text-align: center; position: relative; overflow: hidden; }
.plp-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 25% 30%, rgba(255,255,255,.18), transparent 45%),
              radial-gradient(circle at 80% 80%, rgba(255,255,255,.1), transparent 45%);
}
.plp-cta__inner { max-width: 700px; margin: 0 auto; position: relative; }
.plp-cta__inner h2 {
  font-family: var(--f-head); font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800; color: #fff; margin: 0 0 14px; line-height: 1.05; letter-spacing: -.03em;
}
.plp-cta__inner p { font-size: 1.0625rem; color: rgba(255,255,255,.72); margin: 0 auto 28px; max-width: 52ch; }
.plp-cta__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.plp-cta__note { font-size: .78rem; color: rgba(255,255,255,.45); margin-top: 16px; }

/* ── HOW IT WORKS ── */
.plp-hiw { padding: 80px 0; background: var(--cream); }
.plp-hiw__head { text-align: center; max-width: 540px; margin: 0 auto 48px; }
.plp-hiw__head h2 { font-family: var(--f-head); margin-bottom: 10px; font-size: clamp(1.7rem, 2.8vw, 2.4rem); letter-spacing: -.03em; }
.plp-hiw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.plp-hiw-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--r-xl); padding: 28px 24px; }
.plp-hiw-num {
  width: 44px; height: 44px; border-radius: var(--r-md); background: var(--blue); color: #fff;
  font-family: var(--f-head); font-size: .9rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(26,86,219,.3);
}
.plp-hiw-card h3 { font-family: var(--f-head); font-size: 1rem; font-weight: 700; margin: 0 0 8px; color: var(--text); }
.plp-hiw-card p { font-size: .875rem; color: var(--text-2); line-height: 1.65; margin: 0; }

/* ── PRICING TEASER ── */
.plp-pricing { background: #fff; padding: 64px 0; }
.plp-pricing__strip {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  background: var(--cream-2); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 28px 32px;
}
.plp-pricing__copy h3 { font-family: var(--f-head); font-size: 1.1rem; font-weight: 800; color: var(--text); margin: 0 0 6px; }
.plp-pricing__copy p { font-size: .9375rem; color: var(--text-2); margin: 0; }
.plp-pricing__copy strong { color: var(--blue); }
.plp-pricing__btns { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }

/* ── COMPARISON TABLE (compare section within product pages) ── */
.plp-compare-table { width: 100%; border-collapse: collapse; border-radius: var(--r-lg); overflow: hidden; }
.plp-compare-table th {
  background: var(--navy); color: #fff; font-family: var(--f-head); font-size: .84rem; font-weight: 700;
  padding: 14px 18px; text-align: left;
}
.plp-compare-table th:first-child { background: var(--navy); }
.plp-compare-table th.plp-compare-table__sb { background: var(--blue); text-align: center; }
.plp-compare-table td {
  padding: 12px 18px; font-size: .875rem; color: var(--text-2);
  border-bottom: 1px solid var(--border);
}
.plp-compare-table tbody tr:last-child td { border-bottom: none; }
.plp-compare-table tbody tr:nth-child(even) td { background: var(--cream); }
.plp-compare-table td.plp-compare-table__sb { text-align: center; font-weight: 700; color: var(--blue); }
.plp-compare-table td .plp-yes { color: var(--mint); font-size: 1rem; }
.plp-compare-table td .plp-no  { color: var(--text-3); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .plp-feature__grid { grid-template-columns: 1fr; gap: 40px; }
  .plp-feature__grid--flip .plp-feature__visual { order: 0; }
  .plp-hero__stats { grid-template-columns: repeat(2, 1fr); }
  .plp-testi-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .plp-hero { padding: 56px 0 0; }
  .plp-hero h1 { font-size: 2.375rem; }
  .plp-hero__actions { flex-direction: column; align-items: stretch; }
  .plp-hero__actions > * { justify-content: center; }
  .plp-hero__stats { grid-template-columns: 1fr 1fr; }
  .plp-pain-grid { grid-template-columns: 1fr; }
  .plp-hiw-grid { grid-template-columns: 1fr; }
  .plp-testi-grid { grid-template-columns: 1fr; }
  .plp-crosssell__grid { grid-template-columns: repeat(2, 1fr); }
  .plp-faq__layout { grid-template-columns: 1fr; gap: 32px; }
  .plp-cta__btns { flex-direction: column; align-items: stretch; }
  .plp-cta__btns > * { justify-content: center; }
  .plp-pricing__strip { flex-direction: column; }
}
@media (max-width: 480px) {
  .plp-crosssell__grid { grid-template-columns: 1fr; }
  .plp-hero__stats { grid-template-columns: 1fr; }
}
