/* ──────────────────────────────────────────────────────────────
   LION PROMISE PAGE (page-lion-promise.php)
   Only enqueued when is_page('lion-promise').
   All selectors namespaced under .lp-*.
   ────────────────────────────────────────────────────────────── */

body.page {
  font-family: 'Inter', sans-serif;
  color: var(--black);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 14px;
}

.lp-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--red);
}

.lp-h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--black);
  margin: 0;
}

.lp-h2 em { font-style: italic; color: var(--red); }

/* ── HERO ───────────────────────────────────────────── */
.lp-hero {
  position: relative;
  padding: 96px 48px 88px;
  background:
    radial-gradient(circle at 88% 10%, rgba(255,44,85,0.16) 0%, transparent 45%),
    radial-gradient(circle at 0% 100%, rgba(255,44,85,0.06) 0%, transparent 50%),
    var(--black);
  color: var(--white);
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 80%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 80%);
}

.lp-hero-watermark {
  position: absolute;
  top: 30px;
  right: 48px;
  font-size: clamp(8rem, 16vw, 16rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.08em;
  line-height: 0.85;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.lp-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.lp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 22px;
}

.lp-hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--red);
}

.lp-hero-h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  margin: 0 0 22px;
  color: var(--white);
  max-width: 920px;
}

.lp-hero-h1 em {
  font-style: italic;
  color: var(--red);
}

.lp-hero-sub {
  font-size: 19px;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  max-width: 680px;
  margin: 0 0 36px;
}

.lp-hero-actions {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.lp-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 8px 24px rgba(255,44,85,0.25);
}

.lp-hero-btn svg { width: 14px; height: 14px; transition: transform 0.22s; }

.lp-hero-btn:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.lp-hero-btn:hover svg { transform: translateX(4px); }

.lp-hero-btn-secondary {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 18px 6px;
  transition: color 0.18s;
}

.lp-hero-btn-secondary:hover { color: var(--red); }

/* ── INTRO COPY ──────────────────────────────────────── */
.lp-intro {
  padding: 72px 48px 32px;
  background: var(--white);
}

.lp-intro-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.lp-intro-text {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.55;
  color: var(--black);
  margin: 0;
  font-weight: 400;
}

.lp-intro-text strong { font-weight: 800; color: var(--red); }

/* ── MANIFESTO ──────────────────────────────────────── */
.lp-manifesto {
  padding: 88px 48px;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}

.lp-manifesto-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.lp-manifesto-mark {
  position: absolute;
  top: -56px;
  left: 50%;
  transform: translateX(-50%);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 160px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  color: var(--red);
  opacity: 0.15;
  pointer-events: none;
}

.lp-manifesto-quote {
  font-size: clamp(1.6rem, 3.2vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--black);
  margin: 0 0 24px;
}

.lp-manifesto-quote em {
  font-style: italic;
  color: var(--red);
}

.lp-manifesto-attribution {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

/* ── DIFFERENTIATOR ─────────────────────────────────── */
.lp-diff {
  padding: 72px 48px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255,44,85,0.06) 0%, transparent 50%),
    var(--bg);
  border-bottom: 1px solid var(--rule);
}

.lp-diff-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.lp-diff-inner .lp-eyebrow {
  justify-content: center;
}

.lp-diff-h2 {
  margin: 0 0 28px;
}

.lp-diff-text {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.45;
  color: var(--black);
  margin: 0 0 22px;
}

.lp-diff-text:last-child { margin-bottom: 0; }

.lp-diff-text strong {
  font-weight: 900;
  color: var(--black);
}

.lp-diff-text em {
  font-style: italic;
  color: var(--red);
  font-weight: 700;
}

/* ── PILLARS ────────────────────────────────────────── */
.lp-pillars {
  padding: 96px 48px;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}

.lp-pillars-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.lp-pillars-header {
  max-width: 760px;
  margin-bottom: 56px;
}

/* Two-column layout: stacked pillars on left, portrait video on right.
   Both columns stretch to match the taller column (the video), and the
   3 pillar cards flex-grow to fill that height evenly. */
.lp-pillars-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 56px;
  align-items: stretch;
}

.lp-pillars-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.lp-pillar {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lp-pillars-video {
  position: sticky;
  top: 100px;
  background: #0A0A0A;
  border: 1px solid #EAEAEA;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  width: 100%;
}

.lp-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #0A0A0A;
}

.lp-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.22s;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.35));
}

.lp-video-play svg { width: 100%; height: 100%; display: block; }
.lp-video-play:hover { transform: translate(-50%, -50%) scale(1.06); }

.lp-pillar {
  position: relative;
  padding: 40px 36px 36px;
  background: var(--white);
  border: 1px solid #EAEAEA;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.lp-pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.lp-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(0,0,0,0.06), 0 6px 16px rgba(0,0,0,0.04);
  border-color: rgba(255,44,85,0.25);
}

.lp-pillar:hover::before { transform: scaleX(1); }

.lp-pillar-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  position: absolute;
  top: 22px;
  right: 26px;
}

.lp-pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--red);
}

.lp-pillar-icon svg { width: 60px; height: 60px; display: block; }

.lp-pillar-title {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: var(--red);
  margin: 0 0 12px;
  text-transform: uppercase;
}

.lp-pillar-body {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

/* ── ELIGIBILITY ────────────────────────────────────── */
.lp-eligibility {
  padding: 96px 48px;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}

.lp-eligibility-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.lp-eligibility-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  padding: 8px 14px;
  border: 1px solid rgba(255,44,85,0.35);
  background: rgba(255,44,85,0.06);
  margin-bottom: 24px;
}

.lp-eligibility-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: lp-pulse 2s ease-in-out infinite;
}

@keyframes lp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

.lp-eligibility-h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--black);
  margin: 0 0 16px;
}

.lp-eligibility-h2 em { font-style: italic; color: var(--red); }

.lp-eligibility-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 720px;
  margin: 0 auto 48px;
}

.lp-eligibility-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lp-eligibility-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: start;
  padding: 22px 24px;
  background: var(--bg);
  border: 1px solid #EAEAEA;
}

.lp-eligibility-num {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--red);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.lp-eligibility-list h4 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--black);
  margin: 0 0 6px;
}

.lp-eligibility-list p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

/* ── CASES ──────────────────────────────────────────── */
.lp-cases {
  padding: 96px 48px;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}

.lp-cases-inner { max-width: 1200px; margin: 0 auto; }

.lp-cases-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.lp-cases-header > :first-child { max-width: 760px; }

.lp-cases-nav {
  display: inline-flex;
  gap: 10px;
  flex-shrink: 0;
}

.lp-cases-arrow {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #D8D8D8;
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.lp-cases-arrow svg { width: 18px; height: 18px; }
.lp-cases-arrow:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.lp-cases-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 40px) / 3);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 6px;
}

.lp-cases-slider::-webkit-scrollbar { display: none; }

.lp-cases-slider .lp-case {
  scroll-snap-align: start;
  min-width: 0;
}

/* Full-bleed image card with overlay content — matches live design. */
.lp-case {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  background-color: #0a0a0a;
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s ease;
}

.lp-case::before {
  /* Always-on subtle vignette behind everything */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 10%, rgba(255,44,85,0.12) 0%, transparent 50%),
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.4) 40%, rgba(10,10,10,0.85) 100%);
  z-index: 1;
}

.lp-case-overlay { display: none; }

/* Category tags — top-right corner of each card, matches the live design */
.lp-case-tags {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.lp-case-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px 5px 8px;
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
}

.lp-case-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  flex-shrink: 0;
}

/* Service dot colours — exact palette from liondigital.com.au/case-studies/. */
.lp-case-tag[data-svc="seo"]            .lp-case-tag-dot { background: #00f0ff; }
.lp-case-tag[data-svc="sem"]            .lp-case-tag-dot { background: #ffc000; }
.lp-case-tag[data-svc="email"]          .lp-case-tag-dot { background: #ff8e3e; }
.lp-case-tag[data-svc="social"]         .lp-case-tag-dot { background: #a100ff; }
.lp-case-tag[data-svc="dev"]            .lp-case-tag-dot { background: #0800b2; }
.lp-case-tag[data-svc="seo-migration"]  .lp-case-tag-dot { background: #25f4ee; }
.lp-case-tag[data-svc="blended-search"] .lp-case-tag-dot { background: #8fec3d; }
.lp-case-tag[data-svc="cro"]            .lp-case-tag-dot { background: #ff2c55; }

.lp-case:hover .lp-case-tags { opacity: 0; transition: opacity 0.25s ease; }

.lp-case-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px;
  transition: opacity 0.25s ease;
}

.lp-case-logo-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fff;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}

.lp-case-logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.lp-case-stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.lp-case-stat-num {
  font-size: clamp(3rem, 5vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--red);
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
}

.lp-case-stat-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.35;
  max-width: 220px;
}

/* Title/CTA elements removed — live design shows only logo + metric */
.lp-case-title { display: none; }
.lp-case-cta { display: none; }

/* Hover state — replaces the logo+metric with "View Case Study" arrow */
.lp-case-hover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,44,85,0.45) 0%, rgba(10,10,10,0.85) 65%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.lp-case-hover-title {
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--white);
  text-align: center;
}

.lp-case-hover-arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: transform 0.28s ease;
}

.lp-case-hover-arrow svg { width: 22px; height: 22px; }

.lp-case:hover {
  transform: translateY(-4px);
}

.lp-case:hover .lp-case-content { opacity: 0; }
.lp-case:hover .lp-case-hover { opacity: 1; }
.lp-case:hover .lp-case-hover-arrow { transform: rotate(-45deg); }

/* ── REVIEWS ────────────────────────────────────────── */
.lp-reviews {
  padding: 96px 48px;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}

.lp-reviews-inner { max-width: 1200px; margin: 0 auto; }
.lp-reviews-header { margin-bottom: 48px; max-width: 760px; }

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

.lp-review {
  position: relative;
  padding: 36px 32px 32px;
  background: var(--bg);
  border: 1px solid #EAEAEA;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.lp-review-mark {
  position: absolute;
  top: -16px;
  right: 16px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 120px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  color: rgba(255,44,85,0.10);
  pointer-events: none;
}

.lp-review-stars {
  display: inline-flex;
  gap: 3px;
  color: #FFC000;
  margin-bottom: 16px;
}

.lp-review-stars svg { width: 18px; height: 18px; }

.lp-review-text {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--black);
  margin: 0 0 26px;
  flex: 1;
}

.lp-review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid #EAEAEA;
  margin-top: auto;
}

.lp-review-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg);
}

.lp-review-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-review-name {
  display: block;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--black);
  line-height: 1.2;
}

.lp-review-role {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
  margin-top: 4px;
}

.lp-reviews-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: gap 0.22s;
}

.lp-reviews-more:hover { gap: 12px; }

/* ── FAQ ────────────────────────────────────────────── */
.lp-faq {
  padding: 96px 48px;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}

.lp-faq-inner { max-width: 880px; margin: 0 auto; }
.lp-faq-header { margin-bottom: 48px; }

.lp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-faq-item {
  background: var(--white);
  border: 1px solid #EAEAEA;
  overflow: hidden;
  transition: border-color 0.22s;
}

.lp-faq-item[open] { border-color: rgba(255,44,85,0.35); }

.lp-faq-question {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  font-size: 16.5px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--black);
}

.lp-faq-question::-webkit-details-marker { display: none; }
.lp-faq-question::marker { content: none; }

.lp-faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid #EAEAEA;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.25s, background 0.22s;
}

.lp-faq-toggle svg { width: 14px; height: 14px; }

.lp-faq-item[open] .lp-faq-toggle {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  transform: rotate(45deg);
}

.lp-faq-answer {
  padding: 0 26px 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

/* ── BOTTOM CTA ─────────────────────────────────────── */
.lp-cta {
  position: relative;
  padding: 104px 48px;
  background:
    radial-gradient(circle at 100% 100%, rgba(255,44,85,0.22) 0%, transparent 50%),
    radial-gradient(circle at 0% 0%, rgba(255,44,85,0.08) 0%, transparent 45%),
    var(--black);
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.lp-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,0.5) 0%, transparent 65%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,0.5) 0%, transparent 65%);
}

.lp-cta-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }

.lp-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  padding: 8px 14px;
  border: 1px solid rgba(255,44,85,0.35);
  background: rgba(255,44,85,0.08);
  margin-bottom: 22px;
}

.lp-cta-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: lp-pulse 2s ease-in-out infinite;
}

.lp-cta-h2 {
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.04;
  color: var(--white);
  margin: 0 0 16px;
}

.lp-cta-h2 em { font-style: italic; color: var(--red); }

.lp-cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 32px;
}

.lp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 38px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 8px 24px rgba(255,44,85,0.25);
}

.lp-cta-btn svg { width: 14px; height: 14px; transition: transform 0.22s; }

.lp-cta-btn:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.lp-cta-btn:hover svg { transform: translateX(4px); }

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .lp-pillars-layout { grid-template-columns: 1fr; gap: 32px; }
  .lp-pillars-video { position: static; max-width: 340px; }
  .lp-cases-slider { grid-auto-columns: calc((100% - 20px) / 2); }
  .lp-reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .lp-cases-header { flex-direction: column; align-items: flex-start; }
  .lp-cases-slider { grid-auto-columns: 85%; }
}

@media (max-width: 720px) {
  .lp-hero { padding: 72px 24px 56px; }
  .lp-hero-watermark { display: none; }
  .lp-hero-actions { flex-direction: column; align-items: stretch; }
  .lp-hero-btn { justify-content: center; }
  .lp-intro { padding: 56px 24px 24px; }
  .lp-manifesto { padding: 64px 24px; }
  .lp-manifesto-mark { font-size: 100px; top: -36px; }
  .lp-diff { padding: 56px 24px; }
  .lp-pillars { padding: 64px 24px; }
  .lp-eligibility { padding: 64px 24px; }
  .lp-cases { padding: 64px 24px; }
  .lp-reviews { padding: 64px 24px; }
  .lp-faq { padding: 64px 24px; }
  .lp-faq-question { padding: 18px 22px; font-size: 15px; }
  .lp-faq-answer { padding: 0 22px 20px; }
  .lp-cta { padding: 64px 24px; }
}
