/* =====================================================================
   lp-common.css — Shared styles for YAPLegal Coverage Landing Pages
   ===================================================================== */

/* ── Hero Section ────────────────────────────────────────────────────── */
.lp-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 55%, #1e4976 100%);
  color: #fff;
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}
.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.lp-hero .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(59,130,246,0.2);
  border: 1px solid rgba(59,130,246,0.4);
  color: #93c5fd;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.lp-hero .hero-eyebrow::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100%{opacity:1;transform:scale(1);}
  50%{opacity:.6;transform:scale(.85);}
}

.lp-hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -.02em;
}
.lp-hero h1 span { color: #60a5fa; }

.lp-hero .hero-sub {
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 560px;
}

.lp-hero .hero-pain {
  background: rgba(220,38,38,.15);
  border: 1px solid rgba(220,38,38,.35);
  border-left: 4px solid #ef4444;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: .9rem;
  color: #fca5a5;
  margin-bottom: 28px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.lp-hero .hero-pain::before {
  content: '⚠';
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.lp-hero .hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.lp-hero .btn-wa {
  background: #22c55e;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(34,197,94,.35);
}
.lp-hero .btn-wa:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(34,197,94,.45);
  color: #fff;
}
.lp-hero .btn-tel {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s;
  backdrop-filter: blur(4px);
}
.lp-hero .btn-tel:hover {
  background: rgba(255,255,255,.18);
  color: #fff;
}

.lp-hero .hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lp-hero .hero-badge {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  color: #e2e8f0;
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.lp-hero .hero-badge::before { content: '✓'; color: #4ade80; font-weight: 800; }

/* Hero side panel */
.lp-hero .hero-panel {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 28px 24px;
  backdrop-filter: blur(8px);
  height: 100%;
}
.lp-hero .hero-panel .panel-head {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.lp-hero .hero-panel .panel-note {
  font-size: .9rem;
  color: #cbd5e1;
  line-height: 1.65;
  margin-bottom: 18px;
}
.lp-hero .hero-panel .panel-tags {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-hero .hero-panel .panel-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: #e2e8f0;
}
.lp-hero .hero-panel .panel-tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
}
.lp-hero .hero-panel .panel-cta-sm {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .82rem;
  color: #94a3b8;
}
.lp-hero .hero-panel .panel-cta-sm a {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 600;
}
.lp-hero .hero-panel .panel-cta-sm a:hover { text-decoration: underline; }

/* Rating stars in panel */
.lp-hero .hero-panel .panel-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 14px;
  background: rgba(245,158,11,.1);
  border: 1px solid rgba(245,158,11,.25);
  border-radius: 8px;
}
.lp-hero .hero-panel .panel-rating .stars { color: #f59e0b; font-size: .9rem; }
.lp-hero .hero-panel .panel-rating .rating-text { font-size: .8rem; color: #cbd5e1; }
.lp-hero .hero-panel .panel-rating strong { color: #fff; }

@media (max-width: 768px) {
  .lp-hero { padding: 48px 0 40px; }
  .lp-hero .hero-panel { margin-top: 32px; }
}

/* ── Lawyers Section ─────────────────────────────────────────────────── */
.lp-lawyers {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  padding: 70px 0;
  border-top: 1px solid #e2e8f0;
}
.lp-lawyers .lawyer-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 0 0 20px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.lp-lawyers .lawyer-card .lawyer-avatar-wrap {
  border-radius: 0;
  margin-bottom: 0;
}
.lp-lawyers .lawyer-card .lawyer-body {
  padding: 16px 18px 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.lp-lawyers .lawyer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1e3a5f, #3b82f6);
}
.lp-lawyers .lawyer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
}

/* Photo + fallback avatar */
.lp-lawyers .lawyer-avatar-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #e2e8f0;
}
.lp-lawyers .lawyer-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .35s ease;
}
.lp-lawyers .lawyer-card:hover .lawyer-photo {
  transform: scale(1.04);
}
.lp-lawyers .lawyer-avatar {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e3a5f, #3b82f6);
  color: #fff;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-lawyers .lawyer-name {
  font-weight: 800;
  font-size: .95rem;
  color: #1e3a5f;
  margin-bottom: 4px;
  line-height: 1.35;
}
.lp-lawyers .lawyer-title {
  font-size: .8rem;
  color: #64748b;
  margin-bottom: 10px;
  line-height: 1.4;
}
.lp-lawyers .lawyer-peradi {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #dbeafe;
  color: #1e40af;
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.lp-lawyers .lawyer-spec {
  font-size: .82rem;
  color: #475569;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
  text-align: left;
}

/* Card footer: profile link + WA icon */
.lp-lawyers .lawyer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
  margin-top: auto;
}
.lp-lawyers .lawyer-profile-btn {
  font-size: .8rem;
  font-weight: 700;
  color: #1e3a5f;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color .15s;
}
.lp-lawyers .lawyer-profile-btn:hover { color: #3b82f6; }
.lp-lawyers .lawyer-wa-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  flex-shrink: 0;
  transition: background .15s, transform .15s;
}
.lp-lawyers .lawyer-wa-btn:hover {
  background: #16a34a;
  transform: scale(1.1);
}

/* "Lihat Semua" button */
.lp-lawyers .btn-lawyers-all {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #1e3a5f;
  color: #fff;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(26,58,92,.25);
  transition: background .2s, box-shadow .2s;
}
.lp-lawyers .btn-lawyers-all:hover {
  background: #163050;
  box-shadow: 0 6px 20px rgba(26,58,92,.35);
  color: #fff;
}

/* ── Local SEO section ───────────────────────────────────────────────── */
.lp-local-seo-text {
  font-size: .82rem;
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 10px;
}
.lp-breadcrumb {
  font-size: .8rem;
  color: #94a3b8;
  margin-bottom: 10px;
}
.lp-breadcrumb a { color: #3b82f6; text-decoration: none; }
.lp-breadcrumb a:hover { text-decoration: underline; }
.lp-breadcrumb span { margin: 0 5px; }

/* ── Internal Links ──────────────────────────────────────────────────── */
.lp-internal-links {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #e2e8f0;
}
.lp-internal-links h6 {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #94a3b8;
  margin-bottom: 10px;
}
.lp-internal-links .il-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.lp-internal-links .il-grid a {
  font-size: .78rem;
  color: #3b82f6;
  text-decoration: none;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 4px 10px;
  border-radius: 5px;
  transition: background .15s, color .15s;
}
.lp-internal-links .il-grid a:hover {
  background: #dbeafe;
  color: #1e40af;
}

/* =====================================================================
   Shared .lp-tng page styles — Stats, Problem, Services, Why, Testi,
   FAQ, CTA, Local, Sticky bar (all Coverage landing pages)
   ===================================================================== */

/* ── CSS Variables & Base ───────────────────────────────────────────── */
.lp-tng {
  --lp-navy: #1e3a5f;
  --lp-dark: #0f172a;
  --lp-blue: #3b82f6;
  --lp-muted: #64748b;
  --lp-light: #f8fafc;
  --lp-border: #e2e8f0;
  font-family: 'Inter', sans-serif;
}

/* ── Section titles ─────────────────────────────────────────────────── */
.lp-tng .sec-title {
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  font-weight: 800;
  color: var(--lp-navy);
  margin-bottom: .45rem;
}
.lp-tng .sec-sub {
  color: var(--lp-muted);
  margin-bottom: 2.2rem;
  font-size: .95rem;
}

/* ── Stats bar ──────────────────────────────────────────────────────── */
.lp-tng .lp-stats {
  background: var(--lp-light);
  border-top: 3px solid var(--lp-navy);
  padding: 40px 0;
}
.lp-tng .stat-num {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--lp-navy);
  line-height: 1;
}
.lp-tng .stat-lbl {
  color: var(--lp-muted);
  font-size: .875rem;
  margin-top: 5px;
}

/* ── Problem-Agitation cards ────────────────────────────────────────── */
.lp-tng .lp-problem { padding: 60px 0; background: #fff; }
.lp-tng .problem-card {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-left: 4px solid #dc2626;
  border-radius: 10px;
  padding: 20px;
  height: 100%;
}
.lp-tng .problem-card .pi { font-size: 1.6rem; margin-bottom: 10px; }
.lp-tng .problem-card h5 { font-weight: 700; font-size: .92rem; color: #991b1b; margin-bottom: 5px; }
.lp-tng .problem-card p  { font-size: .85rem; color: #7f1d1d; margin: 0; }

/* ── Services grid ──────────────────────────────────────────────────── */
.lp-tng .lp-services { background: #f1f5f9; padding: 70px 0; }
.lp-tng .svc-card {
  background: #fff;
  border-radius: 12px;
  padding: 26px;
  height: 100%;
  border: 1px solid var(--lp-border);
  transition: transform .25s, box-shadow .25s;
}
.lp-tng .svc-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.1); }
.lp-tng .svc-card .si   { font-size: 1.9rem; margin-bottom: 12px; }
.lp-tng .svc-card h4    { font-size: .97rem; font-weight: 700; color: var(--lp-navy); margin-bottom: 7px; }
.lp-tng .svc-card p     { font-size: .85rem; color: var(--lp-muted); margin-bottom: 10px; }
.lp-tng .svc-card a     { font-size: .83rem; font-weight: 600; color: var(--lp-blue); text-decoration: none; }
.lp-tng .svc-card a:hover { text-decoration: underline; }

/* ── Why Us items ───────────────────────────────────────────────────── */
.lp-tng .lp-why { background: #fff; padding: 70px 0; }
.lp-tng .why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 10px;
  background: var(--lp-light);
  border: 1px solid var(--lp-border);
  height: 100%;
}
.lp-tng .why-item .wi { font-size: 1.9rem; flex-shrink: 0; }
.lp-tng .why-item h5  { font-weight: 700; color: var(--lp-navy); margin-bottom: 5px; font-size: .93rem; }
.lp-tng .why-item p   { font-size: .85rem; color: var(--lp-muted); margin: 0; }

/* ── Testimonials ───────────────────────────────────────────────────── */
.lp-tng .lp-testi { background: var(--lp-light); padding: 70px 0; }
.lp-tng .testi-card {
  background: #fff;
  border-radius: 12px;
  padding: 26px;
  border: 1px solid var(--lp-border);
  height: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.lp-tng .testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--lp-navy);
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lp-tng .testi-stars { color: #f59e0b; font-size: .88rem; margin-bottom: 9px; }
.lp-tng .testi-quote { font-size: .9rem; color: #374151; line-height: 1.7; font-style: italic; margin-bottom: 14px; }
.lp-tng .testi-name  { font-weight: 700; font-size: .86rem; color: var(--lp-navy); }
.lp-tng .testi-role  { font-size: .8rem; color: #94a3b8; }

/* ── FAQ Accordion ──────────────────────────────────────────────────── */
.lp-tng .lp-faq { background: #fff; padding: 70px 0; }
.lp-tng .lp-faq .accordion-item {
  border: 1px solid var(--lp-border);
  border-radius: 10px !important;
  margin-bottom: 10px;
  overflow: hidden;
}
.lp-tng .lp-faq .accordion-button {
  font-weight: 600;
  color: var(--lp-navy);
  background: var(--lp-light);
  font-size: .95rem;
}
.lp-tng .lp-faq .accordion-button:not(.collapsed) {
  color: var(--lp-navy);
  background: #dbeafe;
  box-shadow: none;
}
.lp-tng .lp-faq .accordion-collapse { transition: height .3s ease !important; }
.lp-tng .lp-faq .accordion-body { font-size: .9rem; color: #4b5563; line-height: 1.75; }

/* ── Closing CTA section ────────────────────────────────────────────── */
.lp-tng .lp-cta-close {
  background: linear-gradient(135deg, var(--lp-navy) 0%, var(--lp-dark) 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.lp-tng .lp-cta-close h2  { font-size: clamp(1.5rem,3vw,2.1rem); font-weight: 800; margin-bottom: 10px; color: #fff; }
.lp-tng .lp-cta-close .sub { color: #94a3b8; margin-bottom: 2rem; font-size: .97rem; }
.lp-tng .lp-cta-close .tel { margin-top: 1.2rem; color: #60a5fa; font-size: 1.05rem; font-weight: 600; }
.lp-tng .lp-cta-close .tel a { color: inherit; text-decoration: none; }

/* ── Local SEO footer ───────────────────────────────────────────────── */
.lp-tng .lp-local {
  background: #f1f5f9;
  padding: 26px 0;
  border-top: 1px solid var(--lp-border);
}
.lp-tng .lp-local p     { font-size: .8rem; color: #94a3b8; margin: 0 0 7px; line-height: 1.7; }
.lp-tng .lp-local .lp-bc { font-size: .8rem; color: #94a3b8; }
.lp-tng .lp-local .lp-bc a { color: var(--lp-blue); text-decoration: none; }

/* ── Sticky mobile CTA bar (.lp-tng pages) ─────────────────────────── */
#lp-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1040;
  background: #fff;
  border-top: 1px solid #e2e8f0;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 16px rgba(0,0,0,.1);
}
#lp-sticky-cta .sticky-inner {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}
#lp-sticky-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 8px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
  transition: opacity .2s;
}
#lp-sticky-cta a:hover  { opacity: .88; }
#lp-sticky-cta .sticky-wa  { background: #25d366; color: #fff; }
#lp-sticky-cta .sticky-tel { background: #1e3a5f; color: #fff; }
@media (min-width: 769px) { #lp-sticky-cta { display: none !important; } }

/* =====================================================================
   jasa_pendirian_pt_tangerang — Unique page styles
   ===================================================================== */

/* Pricing cards */
.lp-tng .price-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  border: 2px solid var(--lp-border);
  height: 100%;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.lp-tng .price-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.1); }
.lp-tng .price-card.featured {
  border-color: var(--lp-navy);
  position: relative;
}
.lp-tng .price-card.featured::before {
  content: 'Paling Populer';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--lp-navy);
  color: #fff;
  padding: 3px 16px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  white-space: nowrap;
}
.lp-tng .price-card .price-icon { font-size: 2.2rem; margin-bottom: 10px; }
.lp-tng .price-card h4    { font-size: 1rem; font-weight: 700; color: var(--lp-navy); margin-bottom: 8px; }
.lp-tng .price-card .price { font-size: 1.4rem; font-weight: 800; color: var(--lp-navy); margin-bottom: 10px; }
.lp-tng .price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  text-align: left;
  font-size: .85rem;
  color: var(--lp-muted);
}
.lp-tng .price-card ul li { padding: 4px 0; border-bottom: 1px solid var(--lp-border); }
.lp-tng .price-card ul li:last-child { border: none; }
.lp-tng .price-card ul li::before { content: '✓ '; color: #22c55e; font-weight: 700; }

/* Steps / Process */
.lp-tng .lp-steps { background: var(--lp-light); padding: 70px 0; }
.lp-tng .step-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.lp-tng .step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--lp-navy);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lp-tng .step-item h5 { font-weight: 700; color: var(--lp-navy); margin-bottom: 4px; font-size: .93rem; }
.lp-tng .step-item p  { font-size: .85rem; color: var(--lp-muted); margin: 0; }

/* =====================================================================
   legal_retainer_perusahaan_jabodetabek — .lp-ret design system
   ===================================================================== */
.lp-ret {
  --ret-primary: #1a3c6e;
  --ret-accent:  #e8a020;
  --ret-green:   #198754;
  --ret-light:   #f0f4fa;
  --ret-border:  #d0dcea;
  font-family: 'Segoe UI', sans-serif;
}
.lp-ret a { color: var(--ret-primary); }
.lp-ret .btn-wa { background: var(--ret-green); color: #fff; border: none; font-weight: 600; transition: opacity .2s; }
.lp-ret .btn-wa:hover { opacity: .88; color: #fff; }
.lp-ret .btn-primary-ret { background: var(--ret-primary); color: #fff; border: none; font-weight: 600; transition: opacity .2s; }
.lp-ret .btn-primary-ret:hover { opacity: .88; color: #fff; }
.lp-ret .btn-outline-ret { border: 2px solid var(--ret-primary); color: var(--ret-primary); font-weight: 600; background: transparent; transition: all .2s; }
.lp-ret .btn-outline-ret:hover { background: var(--ret-primary); color: #fff; }
.lp-ret .trust-bar { background: #fff; border-bottom: 1px solid var(--ret-border); padding: 14px 0; }
.lp-ret .trust-bar .trust-item { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: #333; white-space: nowrap; }
.lp-ret .trust-bar .trust-item i { color: var(--ret-primary); font-size: 1rem; }
.lp-ret section { padding: 56px 0; }
.lp-ret section:nth-child(odd)  { background: #fff; }
.lp-ret section:nth-child(even) { background: var(--ret-light); }
.lp-ret .section-title    { font-size: clamp(1.35rem,3vw,1.9rem); font-weight: 800; color: var(--ret-primary); margin-bottom: 10px; }
.lp-ret .section-subtitle { color: #555; font-size: 1rem; margin-bottom: 36px; max-width: 620px; }
.lp-ret .problem-card  { background: #fff; border: 1px solid var(--ret-border); border-left: 4px solid #dc3545; border-radius: 10px; padding: 20px 22px; height: 100%; }
.lp-ret .problem-card h5 { color: #dc3545; font-weight: 700; font-size: .95rem; margin-bottom: 6px; }
.lp-ret .solution-card { background: #fff; border: 1px solid var(--ret-border); border-left: 4px solid var(--ret-green); border-radius: 10px; padding: 20px 22px; height: 100%; }
.lp-ret .solution-card h5 { color: var(--ret-green); font-weight: 700; font-size: .95rem; margin-bottom: 6px; }
.lp-ret .service-card { background: #fff; border: 1px solid var(--ret-border); border-radius: 12px; padding: 24px; height: 100%; transition: box-shadow .25s, transform .25s; }
.lp-ret .service-card:hover { box-shadow: 0 6px 24px rgba(26,60,110,.12); transform: translateY(-3px); }
.lp-ret .service-card .icon-wrap { width: 50px; height: 50px; border-radius: 12px; background: var(--ret-light); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.lp-ret .service-card .icon-wrap i { font-size: 1.4rem; color: var(--ret-primary); }
.lp-ret .service-card h5 { font-weight: 700; color: var(--ret-primary); font-size: .95rem; margin-bottom: 8px; }
.lp-ret .pricing-card { background: #fff; border: 2px solid var(--ret-border); border-radius: 16px; padding: 32px 28px; height: 100%; transition: transform .25s, box-shadow .25s; }
.lp-ret .pricing-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(26,60,110,.13); }
.lp-ret .pricing-card.featured { border-color: var(--ret-primary); background: var(--ret-primary); color: #fff; position: relative; }
.lp-ret .pricing-card.featured .pricing-label { color: rgba(255,255,255,.8); }
.lp-ret .pricing-card.featured .pricing-name  { color: #fff; }
.lp-ret .pricing-card.featured .pricing-price { color: var(--ret-accent); }
.lp-ret .pricing-card.featured ul li          { color: rgba(255,255,255,.9); }
.lp-ret .pricing-card.featured ul li i        { color: var(--ret-accent); }
.lp-ret .pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--ret-accent); color: #fff; font-size: .72rem; font-weight: 700; padding: 4px 16px; border-radius: 20px; white-space: nowrap; text-transform: uppercase; letter-spacing: .5px; }
.lp-ret .pricing-label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: #888; margin-bottom: 6px; }
.lp-ret .pricing-name  { font-size: 1.2rem; font-weight: 800; color: var(--ret-primary); margin-bottom: 4px; }
.lp-ret .pricing-price { font-size: 1.8rem; font-weight: 800; color: var(--ret-primary); line-height: 1.1; }
.lp-ret .pricing-price small { font-size: .75rem; font-weight: 400; color: #888; }
.lp-ret .pricing-card ul { list-style: none; padding: 0; margin: 20px 0 24px; }
.lp-ret .pricing-card ul li { font-size: .88rem; padding: 5px 0; display: flex; align-items: flex-start; gap: 8px; }
.lp-ret .pricing-card ul li i { color: var(--ret-green); margin-top: 2px; flex-shrink: 0; }
.lp-ret .process-step { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 32px; }
.lp-ret .step-num  { width: 44px; height: 44px; border-radius: 50%; background: var(--ret-primary); color: #fff; font-weight: 800; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lp-ret .step-body h5 { font-weight: 700; color: var(--ret-primary); font-size: .95rem; margin-bottom: 4px; }
.lp-ret .step-body p  { font-size: .88rem; color: #555; margin: 0; }
.lp-ret .testimonial-card { background: #fff; border: 1px solid var(--ret-border); border-radius: 12px; padding: 24px; height: 100%; }
.lp-ret .testimonial-card .stars { color: #f5b800; font-size: .9rem; margin-bottom: 10px; }
.lp-ret .testimonial-card blockquote { font-size: .88rem; color: #333; line-height: 1.6; font-style: italic; margin-bottom: 14px; }
.lp-ret .testimonial-card .client-name { font-weight: 700; font-size: .85rem; color: var(--ret-primary); }
.lp-ret .testimonial-card .client-role { font-size: .78rem; color: #888; }
.lp-ret .accordion-button { font-weight: 600; color: var(--ret-primary); font-size: .95rem; }
.lp-ret .accordion-button:not(.collapsed) { background: var(--ret-light); color: var(--ret-primary); box-shadow: none; }
.lp-ret .accordion-body  { font-size: .9rem; color: #444; line-height: 1.7; }
.lp-ret .accordion-collapse { transition: height .3s ease !important; }
.lp-ret .cta-section { background: linear-gradient(135deg, var(--ret-primary) 0%, #2d5fa6 100%); color: #fff; padding: 72px 0; text-align: center; }
.lp-ret .cta-section h2 { font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 800; margin-bottom: 14px; }
.lp-ret .cta-section p  { opacity: .9; max-width: 520px; margin: 0 auto 32px; }
.lp-ret .internal-links { background: var(--ret-light); padding: 40px 0; border-top: 1px solid var(--ret-border); }
.lp-ret .internal-links a { color: var(--ret-primary); text-decoration: none; font-size: .88rem; font-weight: 600; }
.lp-ret .internal-links a:hover { text-decoration: underline; }
/* Sticky mobile CTA — retainer page */
#ret-sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 1090; padding-bottom: env(safe-area-inset-bottom, 0); }
#ret-sticky-cta .sticky-inner { display: flex; border-top: 1px solid #d0d0d0; background: #fff; }
#ret-sticky-cta .sticky-wa  { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 10px; background: #198754; color: #fff; font-weight: 700; font-size: .88rem; text-decoration: none; }
#ret-sticky-cta .sticky-tel { flex: 0 0 90px; display: flex; align-items: center; justify-content: center; gap: 6px; padding: 13px 10px; background: var(--ret-primary); color: #fff; font-weight: 700; font-size: .85rem; text-decoration: none; }
@media (min-width: 769px) { #ret-sticky-cta { display: none !important; } }
