/* ============================================================
   CLICKJI.COM — landing.css
   Only what the ad landing pages add on top of style.css
   ============================================================ */

/* ── BREADCRUMB ── */
.crumbs {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}
.crumbs a { color: rgba(255, 255, 255, 0.72); }
.crumbs a:hover { color: var(--coral); }
.crumbs span { color: rgba(255, 255, 255, 0.4); }

/* ── LANDING HERO TWEAKS ── */
.landing-hero .hero-h1 { max-width: 15ch; }
@media (max-width: 960px) { .landing-hero .hero-h1 { max-width: none; } }

/* ── USP STRIP ── */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.usp {
  display: flex;
  gap: 0.9rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.3rem 1.2rem;
}
.usp i {
  color: var(--coral);
  font-size: 1.05rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.usp h3 { font-size: 1.02rem; margin-bottom: 0.3rem; }
.usp p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* ── MID-PAGE CTA BAND ── */
.cta-band {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}
.cta-band h2 { color: #fff; font-size: clamp(1.35rem, 2.6vw, 1.9rem); margin-bottom: 0.5rem; }
.cta-band p { color: rgba(255, 255, 255, 0.68); font-size: 0.96rem; margin: 0; }
.cta-band .btn-row { flex-wrap: nowrap; }

/* ── SEO PROSE BLOCK ── */
.landing-copy {
  max-width: 780px;
  border-left: 3px solid var(--coral);
  padding-left: clamp(1.1rem, 3vw, 2rem);
}
.landing-copy h2 { margin-bottom: 1rem; }
.landing-copy p { color: var(--muted); line-height: 1.9; margin-bottom: 1rem; max-width: 70ch; }
.landing-copy p:last-child { margin-bottom: 0; }

/* ── RELATED SERVICE LINKS ── */
.rel-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.7rem; }
.rel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 0.85rem 1.1rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.94rem;
  color: var(--ink);
  transition: border-color 0.2s, color 0.2s;
}
.rel:hover { border-color: var(--coral); color: var(--coral-600); }
.rel i { color: var(--coral); font-size: 0.78rem; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .usp-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rel-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-band { grid-template-columns: 1fr; }
  .cta-band .btn-row { flex-wrap: wrap; }
}

@media (max-width: 560px) {
  .usp-grid, .rel-grid { grid-template-columns: 1fr; }
}
