/* ============================================================
   LEAD GENERATION — RELATED ARTICLES
   lg-related-articles.css
   ============================================================ */

.lg-ra-section {
  background: #080808;
  padding: 80px 40px 110px;
  position: relative;
  overflow: hidden;
}

/* Ambient glow */
.lg-ra-glow {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 860px;
  height: 520px;
  background: radial-gradient(
    ellipse at center,
    rgba(233,30,140,0.07) 0%,
    rgba(124,58,237,0.05) 40%,
    transparent 70%
  );
  filter: blur(80px);
  pointer-events: none;
}

/* ── Header ── */
.lg-ra-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.lg-ra-label {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.lg-ra-heading {
  font-family: 'Inter', sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 auto;
  max-width: 800px;
}

.lg-ra-heading-italic {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

/* ── Grid ── */
.lg-ra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ── Card ── */
.lg-ra-card {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.4s ease;
}
.lg-ra-card:hover { transform: translateY(-6px); }
.lg-ra-card:hover .lg-ra-card-title { color: #e91e8c; }

/* ── Card image area ── */
.lg-ra-card-img {
  aspect-ratio: 1.45 / 1;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

/* Card 1 — Meta Ads (deep pink/dark) */
.lg-ra-img-1 { background: linear-gradient(135deg, #1e0533 0%, #3d0a20 100%); }
/* Card 2 — Landing Pages (deep navy) */
.lg-ra-img-2 { background: linear-gradient(135deg, #020e1f 0%, #0a1535 100%); }
/* Card 3 — CPL Funnel (deep amber) */
.lg-ra-img-3 { background: linear-gradient(135deg, #1a0a00 0%, #2d1500 100%); }

.lg-ra-img-vis {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lg-ra-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.28));
  pointer-events: none;
}

.lg-ra-img-stat-pill {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.95);
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: 1.5px;
  z-index: 3;
}

/* ── Card body ── */
.lg-ra-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.lg-ra-card-meta .dot {
  width: 3px;
  height: 3px;
  background: rgba(255,255,255,0.35);
  border-radius: 50%;
  display: inline-block;
}
.lg-ra-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0;
  transition: color 0.3s ease;
}
.lg-ra-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.52);
  margin: 0;
}

/* ════════════════════════════════════════════
   CARD 1 — Meta Ads  (phone + ad mockup)
   ════════════════════════════════════════════ */

.lg-ra-vis1-phone {
  width: 52%;
  height: 75%;
  background: #1a1a2e;
  border-radius: 18px;
  border: 2px solid rgba(255,255,255,0.12);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  position: relative;
}

.lg-ra-vis1-notch {
  width: 36px;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
  margin: 8px auto 6px;
  flex-shrink: 0;
}

.lg-ra-vis1-ad {
  flex: 1;
  background: #f0f2f5;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.lg-ra-vis1-ad-hdr {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 8px 4px;
}

.lg-ra-vis1-av {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e91e8c, #7c3aed);
  flex-shrink: 0;
}

.lg-ra-vis1-nm {
  height: 6px;
  width: 55px;
  background: #0a0a0a;
  border-radius: 3px;
  opacity: 0.75;
}

.lg-ra-vis1-sp {
  height: 4px;
  width: 35px;
  background: rgba(0,0,0,0.3);
  border-radius: 2px;
  margin-top: 2px;
}

.lg-ra-vis1-img {
  height: 52px;
  background: linear-gradient(135deg, #e91e8c 0%, #7c3aed 100%);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lg-ra-vis1-img-lbl {
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  opacity: 0.9;
}

.lg-ra-vis1-body {
  padding: 6px 8px 0;
}

.lg-ra-vis1-line {
  height: 4px;
  background: rgba(0,0,0,0.1);
  border-radius: 2px;
  margin-bottom: 4px;
}

.lg-ra-vis1-cta-bar {
  margin: 6px 8px;
  padding: 5px;
  background: #1877f2;
  border-radius: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: 0.3px;
}

/* floating badge */
.lg-ra-vis1-badge {
  position: absolute;
  top: 14%;
  right: 5%;
  padding: 7px 12px;
  background: rgba(0,0,0,0.85);
  border: 1px solid rgba(233,30,140,0.5);
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  color: #e91e8c;
  letter-spacing: 1px;
  transform: rotate(6deg);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

/* ════════════════════════════════════════════
   CARD 2 — Landing Page  (browser mockup)
   ════════════════════════════════════════════ */

.lg-ra-vis2-browser {
  width: 80%;
  height: 72%;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
}

.lg-ra-vis2-bar {
  height: 18px;
  background: #e8eaed;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 8px;
  gap: 4px;
}

.lg-ra-vis2-bar::before,
.lg-ra-vis2-bar::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  flex-shrink: 0;
}

.lg-ra-vis2-bar::after {
  width: 45px;
  height: 8px;
  border-radius: 4px;
  margin-left: 6px;
  background: rgba(0,0,0,0.1);
}

.lg-ra-vis2-page {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #f8f9ff 0%, #fff 100%);
  overflow: hidden;
}

.lg-ra-vis2-hero-area {
  padding: 10px 10px 0;
  flex-shrink: 0;
}

.lg-ra-vis2-h1 {
  height: 8px;
  background: linear-gradient(90deg, #0a0a0a, rgba(10,10,10,0.5));
  border-radius: 4px;
  margin-bottom: 5px;
}

.lg-ra-vis2-h2 {
  height: 6px;
  width: 70%;
  background: rgba(0,0,0,0.12);
  border-radius: 3px;
  margin-bottom: 8px;
}

.lg-ra-vis2-form-wrap {
  flex: 1;
  margin: 0 10px 8px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.lg-ra-vis2-input {
  height: 12px;
  background: #f4f5f7;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}

.lg-ra-vis2-btn {
  height: 14px;
  background: linear-gradient(90deg, #e91e8c, #7c3aed);
  border-radius: 6px;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 7px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

/* floating conversion badge */
.lg-ra-vis2-cvr {
  position: absolute;
  bottom: 14%;
  right: 5%;
  padding: 7px 12px;
  background: rgba(0,0,0,0.88);
  border: 1px solid rgba(74,222,128,0.45);
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  color: #4ade80;
  letter-spacing: 1px;
  transform: rotate(-5deg);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

/* ════════════════════════════════════════════
   CARD 3 — CPL Funnel
   ════════════════════════════════════════════ */

.lg-ra-vis3-funnel {
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
}

.lg-ra-vis3-stage {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
}

.lg-ra-vis3-stage-1 {
  background: rgba(233,30,140,0.55);
  border: 1px solid rgba(233,30,140,0.4);
  width: 100%;
}
.lg-ra-vis3-stage-2 {
  background: rgba(124,58,237,0.5);
  border: 1px solid rgba(124,58,237,0.4);
  width: 76%;
  align-self: center;
}
.lg-ra-vis3-stage-3 {
  background: rgba(74,222,128,0.35);
  border: 1px solid rgba(74,222,128,0.4);
  width: 52%;
  align-self: center;
}

.lg-ra-vis3-stage span:last-child {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 11px;
}

.lg-ra-vis3-stage-1 span:first-child { color: rgba(255,255,255,0.7); font-size: 9px; }
.lg-ra-vis3-stage-2 span:first-child { color: rgba(255,255,255,0.7); font-size: 9px; }
.lg-ra-vis3-stage-3 span:first-child { color: rgba(74,222,128,0.9); font-size: 9px; }
.lg-ra-vis3-stage-3 span:last-child  { color: #4ade80; }

/* CPL badge */
.lg-ra-vis3-cpl {
  position: absolute;
  top: 10%;
  right: 5%;
  padding: 7px 12px;
  background: rgba(0,0,0,0.88);
  border: 1px solid rgba(245,158,11,0.45);
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  color: #f59e0b;
  letter-spacing: 1px;
  transform: rotate(4deg);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

/* ── Mobile ── */
@media (max-width: 900px) {
  .lg-ra-section  { padding: 50px 20px 70px; }
  .lg-ra-header   { margin-bottom: 36px; }
  .lg-ra-grid     { grid-template-columns: 1fr; gap: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .lg-ra-card { transition: none; }
}

/* mobile readability: micro-labels under 10px are raised on phones */
@media (max-width: 768px) {
  .lg-ra-img-stat-pill { font-size: 10.5px; }
  .lg-ra-vis1-img-lbl { font-size: 10.5px; }
  .lg-ra-vis1-cta-bar { font-size: 10.5px; }
  /* floating badge */
.lg-ra-vis1-badge { font-size: 10.5px; }
  .lg-ra-vis2-btn { font-size: 10.5px; }
  /* floating conversion badge */
.lg-ra-vis2-cvr { font-size: 10.5px; }
  .lg-ra-vis3-stage-1 span:first-child { font-size: 10.5px; }
  .lg-ra-vis3-stage-2 span:first-child { font-size: 10.5px; }
  .lg-ra-vis3-stage-3 span:first-child { font-size: 10.5px; }
  /* CPL badge */
.lg-ra-vis3-cpl { font-size: 10.5px; }
}
