/* ============================================================
   ProductTrio - Service landing pages
   Loaded alongside blog.css (tokens, nav/footer overrides,
   buttons, .eyebrow, .cta-band all come from blog.css).
   Layout principle: one centered column, consistent widths,
   centered section headers + intros, content blocks centered.
   ============================================================ */

.lp-wrap { max-width: 960px; margin: 0 auto; width: 100%; }
.lp-section { padding: 72px 5vw; }
.lp-section.tint { background: var(--surface-mint); }
.lp-section.pearl { background: var(--surface-pearl); }
.lp-section > .lp-wrap > h2,
.lp-section > h2 {
  font-size: clamp(26px, 3.4vw, 36px); font-weight: 700; line-height: 1.15;
  letter-spacing: -0.4px; margin: 0 auto 14px; color: var(--ink);
  max-width: 720px; text-align: center;
}
.lp-lead {
  font-size: 19px; line-height: 1.55; color: var(--ink-muted);
  max-width: 680px; margin: 0 auto 36px; text-align: center;
}

/* ---------- Hero (asymmetric two-column) ---------- */
.lp-hero { padding: 60px 5vw 64px; overflow: hidden; }
.lp-hero-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 56px; align-items: center;
}
.lp-hero-copy { max-width: 600px; }
.lp-hero .eyebrow {
  display: inline-block; margin: 0 0 18px; padding: 7px 15px;
  background: var(--tint-indigo); color: var(--primary);
  border-radius: var(--radius-pill); letter-spacing: 1.4px;
}
.lp-hero h1 {
  font-size: clamp(34px, 4.4vw, 52px); font-weight: 700; line-height: 1.06;
  letter-spacing: -1px; margin: 0 0 20px; color: var(--ink);
}
.lp-tagline { font-size: clamp(19px, 2vw, 23px); font-weight: 600; line-height: 1.35; color: var(--primary); margin: 0 0 16px; max-width: 560px; }
.lp-sub { font-size: clamp(17px, 1.6vw, 19px); font-weight: 500; line-height: 1.55; color: var(--ink-muted); max-width: 560px; margin: 0 0 30px; }
.lp-hero .btn { margin: 0; }
.lp-audience { margin-top: 22px; font-size: 14px; font-weight: 600; letter-spacing: 0.3px; color: var(--ink-soft); }

/* hero media + decorative accent */
.lp-hero-media { position: relative; }
.lp-hero-media::before {
  content: ""; position: absolute; inset: -10% -8% -10% 0;
  background: radial-gradient(60% 60% at 70% 30%, rgba(77,83,196,.18), transparent 70%);
  filter: blur(6px); z-index: 0;
}
.lp-hero-media::after {
  content: ""; position: absolute; right: -10px; bottom: -10px; width: 116px; height: 116px; z-index: 0;
  background-image: radial-gradient(rgba(77,83,196,.35) 1.6px, transparent 1.6px);
  background-size: 14px 14px; border-radius: 8px;
}
.lp-figure { position: relative; z-index: 1; margin: 0; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-hover); }
.lp-figure.photo img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.lp-figure.illus { background: var(--surface-mint); padding: 36px; display: flex; justify-content: center; }
.lp-figure.illus img { display: block; width: auto; max-width: 100%; max-height: 340px; margin: 0 auto; }

/* staggered page-load reveal */
@keyframes lpRise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.lp-hero-copy > * { animation: lpRise .7s var(--ease) both; }
.lp-hero-copy > *:nth-child(1) { animation-delay: .04s; }
.lp-hero-copy > *:nth-child(2) { animation-delay: .12s; }
.lp-hero-copy > *:nth-child(3) { animation-delay: .20s; }
.lp-hero-copy > *:nth-child(4) { animation-delay: .28s; }
.lp-hero-copy > *:nth-child(5) { animation-delay: .36s; }
.lp-hero-copy > *:nth-child(6) { animation-delay: .44s; }
.lp-hero-media { animation: lpRise .85s var(--ease) .22s both; }

@media (max-width: 860px) {
  .lp-hero-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .lp-hero-copy { max-width: none; }
  .lp-hero h1, .lp-tagline, .lp-sub { margin-left: auto; margin-right: auto; }
  .lp-hero .btn { margin: 0 auto; }
  .lp-hero-media::after { display: none; }
}

/* ---------- Card hover micro-interactions ---------- */
.lp-why .w, .lp-problems .p, .lp-steps .s, .lp-meta .m {
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.lp-why .w:hover, .lp-problems .p:hover, .lp-steps .s:hover, .lp-meta .m:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-hover);
}

/* ---------- What's included: subgroups + 2-col checklist ---------- */
.lp-group { max-width: 860px; margin: 26px auto 8px; }
.lp-group-title { font-size: 18px; font-weight: 700; color: var(--primary); margin: 0; text-align: left; }
.lp-checks {
  list-style: none; margin: 0 auto 8px; padding: 0; max-width: 860px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 36px; text-align: left;
}
.lp-checks li { position: relative; padding-left: 32px; font-size: 16px; line-height: 1.5; color: var(--ink-muted); }
.lp-checks li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 20px; height: 20px;
  border-radius: 50%; background: var(--success);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center / 14px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.lp-checks li strong { color: var(--ink); font-weight: 700; }
@media (max-width: 640px) { .lp-checks { grid-template-columns: 1fr; } }

/* meta cards (format / group size / participants) */
.lp-meta { display: flex; flex-wrap: wrap; gap: 16px; max-width: 860px; margin: 32px auto 0; }
.lp-meta .m { flex: 1; min-width: 220px; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 20px 22px; box-shadow: var(--shadow-card); }
.lp-meta .m .m-ico { width: 36px; height: 36px; border-radius: 10px; background: var(--tint-indigo); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; color: var(--primary); }
.lp-meta .m .m-ico svg { width: 20px; height: 20px; }
.lp-meta .m .k { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--primary); margin-bottom: 6px; }
.lp-meta .m .v { font-size: 15.5px; color: var(--ink-muted); line-height: 1.45; }

/* ---------- Problems ---------- */
.lp-problems { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.lp-problems .p {
  background: var(--surface); border-radius: 16px; padding: 22px 24px;
  box-shadow: var(--shadow-card); border-left: 3px solid var(--primary);
}
.lp-problems .p b { display: block; font-size: 16.5px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.lp-problems .p span { font-size: 15.5px; line-height: 1.5; color: var(--ink-muted); }

/* ---------- Process steps ---------- */
.lp-steps { display: grid; gap: 18px; max-width: 760px; margin: 0 auto; }
.lp-steps .s {
  background: var(--surface); border-radius: 18px; padding: 24px 26px;
  box-shadow: var(--shadow-card); position: relative;
}
.lp-steps .s .label { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--primary); background: var(--tint-indigo); padding: 5px 12px; border-radius: var(--radius-pill); margin-bottom: 12px; }
.lp-steps .s h3 { font-size: 20px; font-weight: 700; margin: 0 0 8px; color: var(--ink); }
.lp-steps .s p { font-size: 16px; line-height: 1.6; color: var(--ink-muted); margin: 0; }

/* ---------- Why choose us ---------- */
.lp-why { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.lp-why .w { background: var(--surface); border-radius: 18px; padding: 26px; box-shadow: var(--shadow-card); }
.lp-why .w .w-ico { width: 44px; height: 44px; border-radius: 12px; background: var(--tint-indigo); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--primary); }
.lp-why .w .w-ico svg { width: 24px; height: 24px; }
.lp-why .w h3 { font-size: 18px; font-weight: 700; margin: 0 0 8px; color: var(--ink); }
.lp-why .w p { font-size: 15.5px; line-height: 1.55; color: var(--ink-muted); margin: 0; }

/* ---------- Track record (client proof cards) ---------- */
.lp-track { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.lp-track .t {
  background: var(--surface); border-radius: 18px; padding: 26px;
  box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 14px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.lp-track .t:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.lp-track .t .t-logo { height: 30px; display: flex; align-items: center; }
.lp-track .t .t-logo img { height: 100%; width: auto; max-width: 150px; object-fit: contain; object-position: left center; }
.lp-track .t p { font-size: 15.5px; line-height: 1.55; color: var(--ink-muted); margin: 0; flex: 1; }
.lp-track .t a { font-size: 14.5px; font-weight: 700; color: var(--primary); text-decoration: none; }
.lp-track .t a:hover { text-decoration: underline; }

/* ---------- FAQs ---------- */
.lp-faqs { max-width: 760px; margin: 0 auto; text-align: left; }
.lp-faqs details { border-bottom: 1px solid var(--border); padding: 4px 0; }
.lp-faqs summary {
  list-style: none; cursor: pointer; padding: 18px 44px 18px 0; position: relative;
  font-size: 18px; font-weight: 600; color: var(--ink); line-height: 1.4;
}
.lp-faqs summary::-webkit-details-marker { display: none; }
.lp-faqs summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 26px; font-weight: 400; color: var(--primary); transition: transform 200ms var(--ease);
}
.lp-faqs details[open] summary::after { content: "\2212"; }
.lp-faqs details[open] summary { color: var(--primary); }
.lp-faqs .a { padding: 0 44px 20px 0; font-size: 16px; line-height: 1.65; color: var(--ink-muted); }
.lp-faqs .a a { color: var(--primary); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Service area ---------- */
.lp-area { text-align: center; }
.lp-area p { font-size: 17px; line-height: 1.65; color: var(--ink-muted); max-width: 760px; margin: 0 auto 18px; }

@media (max-width: 760px) {
  .lp-section { padding: 52px 6vw; }
  .lp-hero { padding: 56px 6vw 32px; }
  .lp-figure.illus { padding: 28px; }
}
