/* ════════════════════════════════════════
   MedTrue — Loja (Storefront) v2
   Brand: Lime #8cb800 / Forest #0e1c08
   ════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Panton', 'Nunito', system-ui, sans-serif;
  background: #f8faf2;
  color: #1a2010;
  line-height: 1.6;
  min-height: 100vh;
}

/* ─── Brand Variables ─────────────────── */
:root {
  --lj-primary:   #8cb800;
  --lj-primary-d: #6e9200;
  --lj-primary-l: #f0f8d8;
  --lj-brown:     #1a2e0a;
  --lj-brown-d:   #0e1c08;
  --lj-green:     #8cb800;
  --lj-green-l:   #e8f5c0;
  --lj-blue:      #3b82f6;
  --lj-red:       #ef4444;
  --lj-text:      #1a2010;
  --lj-text-soft: #344020;
  --lj-muted:     #6a7a38;
  --lj-line:      #dce8b8;
  --lj-surface:   #ffffff;
  --lj-bg:        #f8faf2;
  --lj-bg2:       #eef5d8;
  --lj-radius:    16px;
  --lj-shadow:    0 2px 12px rgba(14,28,8,.08);
  --lj-shadow-lg: 0 8px 40px rgba(14,28,8,.12);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }
input, select, textarea { font-family: inherit; outline: none; }

/* ─── Navbar ────────────────────────────── */
.lj-nav {
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 3px solid var(--lj-primary);
  border-bottom: 1px solid rgba(0,0,0,.07);
  padding: 0 40px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 200;
}
.lj-nav__brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 19px;
  color: #1a2010;
  letter-spacing: -0.3px;
  flex-shrink: 0;
  text-decoration: none;
}
.lj-nav__logo {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lj-nav__brand-icon {
  width: 38px; height: 38px;
  object-fit: contain; display: block; flex-shrink: 0;
}
.lj-nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 13.5px;
  font-weight: 500;
}
.lj-nav__link {
  display: flex; align-items: center;
  padding: 7px 15px; border-radius: 8px;
  color: #607030; transition: all .15s;
  white-space: nowrap; position: relative;
}
.lj-nav__link:hover { color: #1a2010; background: rgba(140,184,0,.09); }
.lj-nav__link.active { color: #1a2010; font-weight: 700; background: rgba(140,184,0,.11); }
.lj-nav__link.active::after {
  content: ''; position: absolute; bottom: -1px; left: 15px; right: 15px;
  height: 2px; background: var(--lj-primary); border-radius: 2px 2px 0 0;
}
.lj-nav__links a:hover { color: #1a2010; }
.lj-nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lj-nav__portal {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 22px;
  border-radius: 50px;
  background: transparent;
  color: #0f1c06;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  border: 1.5px solid #2a4a10;
  cursor: pointer;
  transition: background .16s, color .16s, border-color .16s, box-shadow .16s;
  white-space: nowrap;
  text-decoration: none;
}
.lj-nav__portal:hover { background: #0f1c06; color: #fff; border-color: #0f1c06; box-shadow: 0 4px 16px rgba(14,28,8,.22); }
.lj-nav__wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 22px;
  border-radius: 50px;
  background: #0f1c06;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  border: 1.5px solid transparent;
  transition: background .16s, box-shadow .16s;
  white-space: nowrap;
  text-decoration: none;
}
.lj-nav__wa:hover { background: #1a3408; box-shadow: 0 4px 16px rgba(14,28,8,.28); color: #fff; }
.lj-nav__portal svg, .lj-nav__portal i[data-lucide],
.lj-nav__wa svg { width: 15px; height: 15px; stroke-width: 1.6; flex-shrink: 0; }
/* Legacy CTA (backwards compat) */
.lj-nav__cta {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--lj-primary); color: #fff;
  padding: 9px 20px; border-radius: 10px; font-size: 13px; font-weight: 700;
  transition: all .18s; box-shadow: 0 2px 8px rgba(140,184,0,.28);
}
.lj-nav__cta:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(140,184,0,.36); color: #fff; }

/* ─── Hamburger ──────────────────────── */
.lj-nav__ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.lj-nav__ham span {
  display: block; width: 22px; height: 2px;
  background: #1a2010; border-radius: 2px; transition: all .2s;
}

/* ─── Mobile Drawer ──────────────────── */
.lj-drawer { display: none; }
.lj-drawer__backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 300;
  animation: fadeIn .2s ease;
}
.lj-drawer__panel {
  position: fixed;
  top: 0; right: 0;
  width: min(280px,88vw);
  height: 100%;
  background: #fff;
  z-index: 301;
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 4px;
  box-shadow: -4px 0 30px rgba(0,0,0,.15);
  animation: slideInRight .22s ease;
}
.lj-drawer.open { display: block; }
.lj-drawer__logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 18px; margin-bottom: 20px;
}
.lj-drawer__link {
  padding: 10px 4px;
  font-size: 15px; font-weight: 500; color: #344020;
  border-bottom: 1px solid #eef5d8;
  transition: color .15s;
}
.lj-drawer__link:hover, .lj-drawer__link.active { color: var(--lj-primary); font-weight: 600; }
.lj-drawer__sep { height: 1px; background: #eef5d8; margin: 8px 0; }
.lj-drawer__portal, .lj-drawer__wa {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 18px; border-radius: 50px;
  font-size: 13.5px; font-weight: 600; margin-top: 6px;
  letter-spacing: .01em; transition: background .15s;
}
.lj-drawer__portal { background: transparent; color: #0f1c06; border: 1.5px solid #2a4a10; cursor: pointer; }
.lj-drawer__portal:hover { background: #0f1c06; color: #fff; }
.lj-drawer__wa { background: #0f1c06; color: #fff; border: 1.5px solid transparent; }
.lj-drawer__wa:hover { background: #1a3408; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInRight { from { transform: translateX(100%); } to { transform: translateX(0); } }

/* ─── Hero Split ──────────────────────── */
.lj-hero {
  min-height: clamp(580px, 88vh, 840px);
  background: var(--lj-brown-d);
  color: #fff;
  display: grid;
  grid-template-columns: 58% 42%;
  position: relative;
  overflow: hidden;
}

.lj-hero__left {
  display: flex;
  align-items: center;
  padding: 80px 48px 80px 60px;
  position: relative;
  z-index: 1;
}

/* Subtle left vertical stripe accent */
.lj-hero__left::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--lj-primary), transparent);
  opacity: .6;
}

.lj-hero__content { max-width: 560px; }

.lj-hero__inner { position: relative; max-width: 700px; margin: 0 auto; text-align: center; }

.lj-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(140,184,0,.15);
  border: 1px solid rgba(140,184,0,.28);
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 28px;
  color: #d8f070;
  letter-spacing: .3px;
}

.lj-hero__title {
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 900;
  line-height: 1.07;
  margin-bottom: 22px;
  letter-spacing: -2px;
  color: #fff;
}
.lj-hero__title span { color: #d8f070; }

.lj-hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,.72);
  margin-bottom: 38px;
  line-height: 1.65;
  font-weight: 400;
  max-width: 480px;
}

.lj-hero__btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.lj-btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--lj-primary);
  color: #fff; font-weight: 700; font-size: 15px;
  padding: 14px 32px;
  border-radius: 999px;
  transition: all .22s;
  box-shadow: 0 4px 20px rgba(140,184,0,.38);
  white-space: nowrap; border: none; cursor: pointer;
}
.lj-btn-primary:hover { background: #7aa300; transform: translateY(-2px); box-shadow: 0 6px 28px rgba(140,184,0,.5); color: #fff; }

.lj-btn-ghost {
  display: inline-flex; align-items: center; gap: 9px;
  border: 2px solid rgba(255,255,255,.35);
  color: rgba(255,255,255,.88);
  font-weight: 600; font-size: 15px;
  padding: 12px 28px;
  border-radius: 999px;
  transition: all .22s;
  background: transparent;
  white-space: nowrap;
}
.lj-btn-ghost:hover { border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.08); color: #fff; }

.lj-hero__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.lj-stat { }
.lj-stat__num {
  font-size: 28px; font-weight: 900;
  color: #d8f070;
  letter-spacing: -1px;
  line-height: 1;
}
.lj-stat__label {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  margin-top: 3px;
  font-weight: 500;
}

/* ─── Hero Right (decorative) ─────────── */
.lj-hero__right {
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.lj-hero__right::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 35% 50%, rgba(140,184,0,.1) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(140,184,0,.06) 0%, transparent 50%);
}
/* Large decorative ring */
.lj-hero__ring {
  position: absolute;
  width: clamp(320px, 44vw, 520px);
  height: clamp(320px, 44vw, 520px);
  border-radius: 50%;
  border: 1.5px solid rgba(140,184,0,.14);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.lj-hero__ring::before {
  content: '';
  position: absolute; inset: 40px;
  border-radius: 50%;
  background: rgba(140,184,0,.05);
}
.lj-hero__ring::after {
  content: '';
  position: absolute; inset: -50px;
  border-radius: 50%;
  border: 1px solid rgba(140,184,0,.07);
}
/* Floating proof cards */
.lj-hero__float {
  position: absolute;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  z-index: 2;
}
.lj-hero__float--1 { top: 22%; right: 12%; animation: floatA 5s ease-in-out infinite; }
.lj-hero__float--2 { bottom: 26%; left: 8%;  animation: floatB 6s ease-in-out infinite; }
.lj-hero__float--3 { top: 58%; right: 6%;   animation: floatA 7s ease-in-out infinite 1s; }
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.lj-hero__float-icon {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: rgba(140,184,0,.2);
  display: flex; align-items: center; justify-content: center;
  color: #d8f070; font-size: 15px; flex-shrink: 0;
}
.lj-hero__float-text strong { display: block; font-size: 13.5px; font-weight: 700; color: #fff; }
.lj-hero__float-text span   { font-size: 11px; color: rgba(255,255,255,.55); }

/* ─── Banner Hero (with photo) ───────── */
.lj-banner-hero {
  position: relative;
  min-height: clamp(480px, 80vh, 760px);
  overflow: hidden;
  background: var(--lj-brown-d);
  display: flex; align-items: flex-end;
}
/* Single hero with uploaded image — respects natural 1774x887 (2:1) ratio */
.lj-hero-bg-single {
  aspect-ratio: 1774 / 887;
  min-height: 0;
  max-height: none;
}
/* Image-only mode (no overlay, no text) — shows at natural aspect ratio */
.lj-banner-hero--clean {
  min-height: 80px;
  display: block;
  background: var(--lj-brown-d);
}
/* picture wrapper — fills the hero absolutely */
.lj-banner-hero__pic {
  position: absolute; inset: 0;
  display: block; overflow: hidden;
}
.lj-banner-hero--clean .lj-banner-hero__pic {
  position: static;
  width: 100%; height: auto; overflow: visible;
}
/* img fills the picture (which fills the hero) */
.lj-banner-hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.lj-banner-hero--clean .lj-banner-hero__bg {
  position: static;
  height: auto;
  width: 100%;
  display: block;
}
/* Mobile: taller minimum for portrait images */
@media (max-width: 768px) {
  .lj-banner-hero { min-height: clamp(420px, 100vw, 680px); }
  .lj-banner-hero--clean { min-height: 80px; }
  .lj-banner-hero__bg { object-position: center center; }
  /* On mobile the 2:1 ratio would be too short — let natural height show */
  .lj-hero-bg-single { aspect-ratio: auto; min-height: clamp(180px, 56vw, 400px); }
}
.lj-banner-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    90deg,
    rgba(14,28,8,.92) 0%,
    rgba(14,28,8,.72) 45%,
    rgba(14,28,8,.18) 100%
  );
}
.lj-banner-hero__content {
  position: relative; z-index: 2;
  width: 100%; padding: 0 0 64px;
}
.lj-banner-hero__inner {
  max-width: 700px; margin: 0 auto;
  padding: 0 60px;
}
.lj-banner-hero__title {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  letter-spacing: -2px;
  margin-bottom: 16px;
}
.lj-banner-hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,.78);
  margin-bottom: 28px;
  line-height: 1.6;
  max-width: 460px;
}

/* ── Banner slider ──────────────────── */
.lj-banner-hero--slider { min-height: clamp(420px, 70vh, 680px); }
.lj-banner-hero--slider.lj-banner-hero--clean-active { min-height: 0; }
.lj-banner-slider {
  position: absolute; inset: 0;
  overflow: hidden;
}
/* Each slide fills the slider */
.lj-banner-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .65s ease;
  overflow: hidden;
}
.lj-banner-slide.active { opacity: 1; }

/* Clean slides (pre-designed, no text) need auto height on mobile */
.lj-banner-hero--clean-active .lj-banner-slider {
  position: static;
}
.lj-banner-hero--clean-active .lj-banner-slide {
  position: static;
  display: none;
}
.lj-banner-hero--clean-active .lj-banner-slide.active {
  display: block;
}

/* picture inside slide — fills the slide absolutely */
.lj-slide-pic {
  position: absolute; inset: 0;
  display: block; overflow: hidden;
}
.lj-banner-slide--clean .lj-slide-pic {
  position: static;
  width: 100%; height: auto; overflow: visible;
}
/* img fills the picture (which fills the slide) */
.lj-slide-pic img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.lj-banner-slide--clean .lj-slide-pic img {
  position: static;
  height: auto; max-height: 540px;
  object-fit: cover; width: 100%;
}

/* Dots */
.lj-banner-dots {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 3;
}
.lj-banner-dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4);
  border: none; cursor: pointer; padding: 0; transition: all .2s;
}
.lj-banner-dot.active { background: #fff; width: 22px; border-radius: 4px; }

/* Arrows */
.lj-banner-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  background: rgba(255,255,255,.15); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.25); color: #fff;
  width: 44px; height: 44px; border-radius: 50%; font-size: 22px;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: all .2s;
}
.lj-banner-nav:hover { background: rgba(255,255,255,.25); }
.lj-banner-nav--prev { left: 20px; }
.lj-banner-nav--next { right: 20px; }

/* Mobile: taller slides for portrait images */
@media (max-width: 768px) {
  .lj-banner-hero--slider { min-height: clamp(400px, 100vw, 700px); }
  .lj-slide-pic img { object-position: center center; }
}

/* ─── Trust Bar ──────────────────────── */
.lj-trust-bar {
  background: #fff;
  border-top: 1.5px solid #e8f2d0;
  border-bottom: 1.5px solid #e8f2d0;
  padding: 0;
}
.lj-trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.lj-trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px 32px;
  border-right: 1px solid #eff7dd;
  transition: background .18s;
  position: relative;
}
.lj-trust-item:last-child { border-right: none; }
.lj-trust-item:hover { background: rgba(140,184,0,.04); }
.lj-trust-icon {
  flex-shrink: 0;
  width: 50px; height: 50px;
  border-radius: 14px;
  background: rgba(140,184,0,.07);
  border: 1.5px solid rgba(140,184,0,.18);
  display: flex; align-items: center; justify-content: center;
  color: #3d6400;
  transition: border-color .18s, transform .18s;
}
.lj-trust-item:hover .lj-trust-icon {
  border-color: rgba(140,184,0,.38);
  transform: translateY(-2px);
}
.lj-trust-icon svg {
  width: 22px; height: 22px;
  stroke-width: 1.5;
}
.lj-trust-icon i {
  font-size: 20px;
}
.lj-trust-text {
  display: flex; flex-direction: column; gap: 3px; min-width: 0;
}
.lj-trust-text strong {
  font-size: 14px;
  font-weight: 700;
  color: #1a2e0a;
  line-height: 1.25;
  letter-spacing: -.2px;
}
.lj-trust-text span {
  font-size: 12px;
  color: #6b8a40;
  line-height: 1.4;
  font-weight: 500;
}

/* ─── Wrapper / Container ───────────── */
.lj-container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.lj-section { padding: 72px 0; }
.lj-section--alt { background: #fff; }
.lj-section__head {
  text-align: center;
  margin: 0 auto 52px;
  max-width: 1200px;
  padding: 0 40px;
}
.lj-plans-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.lj-section__eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--lj-primary);
  background: var(--lj-primary-l);
  padding: 5px 16px; border-radius: 999px;
  margin-bottom: 14px;
}
.lj-section__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: var(--lj-text);
  margin-bottom: 12px;
  letter-spacing: -1.5px;
  line-height: 1.1;
}
.lj-section__sub { font-size: 16px; color: var(--lj-muted); max-width: 520px; margin: 0 auto; line-height: 1.6; }

/* ─── Category Filters ──────────────── */
.lj-cats {
  display: flex; align-items: center;
  gap: 8px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.lj-cat-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--lj-line);
  background: #fff;
  font-size: 13px; font-weight: 500;
  color: var(--lj-muted);
  transition: all .15s;
}
.lj-cat-btn:hover { border-color: var(--lj-primary); color: var(--lj-brown); }
.lj-cat-btn.active {
  background: var(--lj-primary);
  border-color: var(--lj-primary);
  color: #fff; font-weight: 700;
  box-shadow: 0 2px 10px rgba(140,184,0,.28);
}
.lj-cat-count {
  background: rgba(0,0,0,.08);
  border-radius: 999px;
  padding: 1px 7px;
  font-size: 11px;
  font-weight: 700;
}
.lj-cat-btn.active .lj-cat-count { background: rgba(255,255,255,.25); color: #fff; }

/* Filter bar (legacy) */
.lj-filters {
  display: flex; align-items: center;
  gap: 8px; flex-wrap: wrap; margin-bottom: 28px;
}
.lj-filter-btn {
  padding: 8px 20px; border-radius: 999px;
  border: 1.5px solid var(--lj-line);
  background: #fff; font-size: 13px; font-weight: 500;
  color: var(--lj-muted); transition: all .15s;
}
.lj-filter-btn:hover, .lj-filter-btn.active {
  border-color: var(--lj-primary);
  background: var(--lj-primary-l); color: var(--lj-brown); font-weight: 700;
}

/* ─── Search ────────────────────────── */
.lj-search-wrap {
  position: relative; margin-bottom: 32px;
  max-width: 360px;
}
.lj-search-input {
  width: 100%; padding: 11px 16px 11px 42px;
  border: 1.5px solid var(--lj-line); border-radius: 999px;
  font-size: 14px; background: #fff; color: var(--lj-text);
  transition: border .15s, box-shadow .15s;
}
.lj-search-input:focus {
  border-color: var(--lj-primary);
  box-shadow: 0 0 0 3px rgba(140,184,0,.12);
}
.lj-search-icon {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--lj-muted); font-size: 13px; pointer-events: none;
  display: flex; align-items: center;
}
.lj-search { margin-left: auto; position: relative; }
.lj-search input {
  padding: 8px 14px 8px 36px; border: 1.5px solid var(--lj-line);
  border-radius: 999px; font-size: 13px; width: 220px;
  background: #fff; transition: border .15s, box-shadow .15s;
}
.lj-search input:focus { border-color: var(--lj-primary); box-shadow: 0 0 0 3px rgba(140,184,0,.1); }
.lj-search__icon {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  color: var(--lj-muted); font-size: 12px; pointer-events: none;
}

/* ─── Plans Grid ────────────────────── */
.lj-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.lj-card {
  background: var(--lj-surface);
  border: 1.5px solid var(--lj-line);
  border-radius: var(--lj-radius);
  padding: 28px;
  display: flex; flex-direction: column;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}
.lj-card:hover {
  box-shadow: var(--lj-shadow-lg);
  transform: translateY(-4px);
  border-color: var(--lj-primary);
}
/* Top accent line on hover */
.lj-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--lj-primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
  border-radius: var(--lj-radius) var(--lj-radius) 0 0;
}
.lj-card:hover::after { transform: scaleX(1); }
.lj-card--featured {
  border-color: var(--lj-primary);
  background: #fff;
  box-shadow: 0 4px 28px rgba(140,184,0,.14);
}
.lj-card--featured::after { transform: scaleX(1); }
.lj-card__badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--lj-primary); color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 4px 12px; border-radius: 999px;
  letter-spacing: .5px; text-transform: uppercase;
}
.lj-card__icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--lj-primary-l);
  display: flex; align-items: center; justify-content: center;
  color: var(--lj-brown); font-size: 20px; margin-bottom: 18px;
}
.lj-card__name {
  font-size: 15.5px; font-weight: 700; line-height: 1.3;
  color: var(--lj-text); margin-bottom: 8px; flex: 1;
}
/* In the coloured header, name is white */
.lj-card__header .lj-card__name { color: #fff; font-size: 16px; }
.lj-card__desc {
  font-size: 13px; color: var(--lj-muted); margin-bottom: 18px; line-height: 1.55;
}
.lj-card__price-row {
  display: flex; align-items: baseline; gap: 6px; margin-bottom: 20px;
}
.lj-card__price-label { font-size: 13px; color: var(--lj-muted); }
.lj-card__price {
  font-size: 32px; font-weight: 900;
  color: var(--lj-primary-d); letter-spacing: -1px;
}
.lj-card__price-cents { font-size: 15px; font-weight: 600; color: var(--lj-muted); }
.lj-card__btn {
  display: block; width: 100%;
  padding: 14px; background: var(--lj-primary); color: #fff;
  border-radius: 999px; font-size: 14px; font-weight: 700;
  text-align: center; transition: all .2s; margin-top: auto;
  box-shadow: 0 2px 10px rgba(140,184,0,.22);
}
.lj-card__btn:hover { background: #7aa300; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(140,184,0,.36); color: #fff; }
.lj-card--free .lj-card__btn { background: #94a3b8; cursor: not-allowed; box-shadow: none; }

/* ─── Checkout ──────────────────────── */
.lj-checkout {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 32px; align-items: start;
  padding: 44px 0 72px;
}
.lj-panel {
  background: #fff; border: 1.5px solid var(--lj-line);
  border-radius: var(--lj-radius); padding: 28px;
}
.lj-panel__title {
  font-size: 17px; font-weight: 800; margin-bottom: 22px;
  display: flex; align-items: center; gap: 8px; color: var(--lj-brown);
}
.lj-panel__title i { color: var(--lj-primary); }
.lj-plan-summary {
  background: linear-gradient(135deg, #f2f8e4, #eaf5d0);
  border: 1.5px solid var(--lj-line);
  border-radius: var(--lj-radius); padding: 20px; margin-bottom: 22px;
}
.lj-plan-summary__name { font-weight: 700; font-size: 16px; margin-bottom: 4px; color: var(--lj-brown); }
.lj-plan-summary__price { font-size: 30px; font-weight: 900; color: var(--lj-primary); letter-spacing: -0.5px; }

/* Form */
.lj-form-group { margin-bottom: 16px; }
.lj-form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--lj-text-soft); margin-bottom: 6px; }
.lj-form-group label .req { color: var(--lj-red); }
.lj-input {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--lj-line); border-radius: 10px;
  font-size: 14px; background: #fff; color: var(--lj-text);
  transition: border .15s, box-shadow .15s;
}
.lj-input:focus { border-color: var(--lj-primary); box-shadow: 0 0 0 3px rgba(140,184,0,.13); }
.lj-input.error { border-color: var(--lj-red); }
.lj-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lj-select {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--lj-line); border-radius: 10px;
  font-size: 14px; background: #fff; color: var(--lj-text);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236a7a38' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; cursor: pointer;
}
.lj-select:focus { border-color: var(--lj-primary); }

/* Coupon */
.lj-coupon-row { display: flex; gap: 10px; }
.lj-coupon-row .lj-input { flex: 1; }
.lj-btn-coupon {
  padding: 11px 18px; background: var(--lj-bg2);
  border: 1.5px solid var(--lj-line); border-radius: 10px;
  font-size: 13px; font-weight: 600; color: var(--lj-muted);
  transition: all .15s; white-space: nowrap;
}
.lj-btn-coupon:hover { border-color: var(--lj-primary); color: var(--lj-brown); background: var(--lj-primary-l); }
.lj-coupon-msg { font-size: 12px; margin-top: 6px; }
.lj-coupon-msg.ok { color: var(--lj-green); }
.lj-coupon-msg.err { color: var(--lj-red); }

/* Payment methods */
.lj-pay-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 22px; }
.lj-pay-option {
  border: 2px solid var(--lj-line); border-radius: 12px;
  padding: 14px; cursor: pointer; transition: all .15s;
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 14px;
}
.lj-pay-option:hover { border-color: var(--lj-primary); }
.lj-pay-option.selected { border-color: var(--lj-primary); background: var(--lj-primary-l); color: var(--lj-primary-d); }
.lj-pay-option input { display: none; }
.lj-pay-icon { font-size: 20px; }

/* Terms */
.lj-terms-box {
  background: var(--lj-bg2); border: 1.5px solid var(--lj-line);
  border-radius: 12px; padding: 16px; margin-bottom: 20px;
}
.lj-terms-box .lj-terms-scroll {
  max-height: 120px; overflow-y: auto;
  font-size: 12px; color: var(--lj-muted); line-height: 1.7;
  margin-bottom: 12px; padding: 10px 12px;
  background: #fff; border: 1px solid var(--lj-line); border-radius: 8px;
}
.lj-terms-check {
  display: flex; align-items: flex-start; gap: 10px; cursor: pointer;
  font-size: 13px; font-weight: 500; color: var(--lj-text-soft); line-height: 1.5;
}
.lj-terms-check input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0;
  accent-color: var(--lj-primary); margin-top: 2px; cursor: pointer;
}
.lj-terms-check a { color: var(--lj-primary); text-decoration: underline; }

/* Order summary */
.lj-order-summary { position: sticky; top: 90px; }
.lj-summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; font-size: 14px;
  border-bottom: 1px solid var(--lj-line);
}
.lj-summary-row:last-child { border-bottom: none; }
.lj-summary-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0 0; font-size: 18px; font-weight: 800; color: var(--lj-text);
}
.lj-total-price { color: var(--lj-primary-d); font-size: 26px; }
.lj-discount-row { color: var(--lj-green); font-size: 13px; }
.lj-btn-buy {
  display: block; width: 100%; padding: 17px;
  background: var(--lj-primary); color: #fff;
  border-radius: 999px; font-size: 16px; font-weight: 700;
  text-align: center; margin-top: 22px; transition: all .2s;
  box-shadow: 0 4px 18px rgba(140,184,0,.32);
  border: none; cursor: pointer; letter-spacing: -.2px;
}
.lj-btn-buy:hover { background: var(--lj-primary-d); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(140,184,0,.4); }
.lj-btn-buy:disabled { opacity: .6; cursor: not-allowed; transform: none; box-shadow: none; }
.lj-trust-badges {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin-top: 14px; font-size: 11px; color: var(--lj-muted); flex-wrap: wrap;
}
.lj-trust-badge { display: flex; align-items: center; gap: 4px; }
.lj-trust-badge i { color: var(--lj-green); }

/* ─── Testimonials ──────────────────── */
.lj-testimonials { background: #fff; }
.lj-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.lj-testimonial {
  background: var(--lj-bg);
  border: 1.5px solid var(--lj-line);
  border-radius: var(--lj-radius); padding: 26px;
  position: relative;
}
.lj-testimonial::before {
  content: '"';
  position: absolute; top: 16px; right: 22px;
  font-size: 60px; font-weight: 900;
  color: var(--lj-primary-l);
  line-height: 1;
}
.lj-testimonial__stars { color: #f59e0b; font-size: 13px; margin-bottom: 12px; letter-spacing: 2px; }
.lj-testimonial__text { font-size: 14.5px; color: var(--lj-text-soft); line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.lj-testimonial__author { display: flex; align-items: center; gap: 10px; }
.lj-testimonial__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--lj-primary); display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 15px; flex-shrink: 0;
}
.lj-testimonial__name { font-weight: 700; font-size: 13px; }
.lj-testimonial__role { font-size: 11px; color: var(--lj-muted); }

/* ─── Steps ─────────────────────────── */
.lj-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px;
}
.lj-step { text-align: center; }
.lj-step__num {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--lj-primary);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 22px;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(140,184,0,.3);
}
.lj-step__title { font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.lj-step__desc { font-size: 13px; color: var(--lj-muted); line-height: 1.55; }

/* ─── Benefits ──────────────────────── */
.lj-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px;
}
.lj-benefit {
  text-align: center; padding: 28px 20px;
  background: #fff; border: 1.5px solid var(--lj-line); border-radius: var(--lj-radius);
  transition: box-shadow .2s, transform .2s;
}
.lj-benefit:hover { box-shadow: var(--lj-shadow-lg); transform: translateY(-4px); }
.lj-benefit__icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--lj-primary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 24px; color: #fff;
}
.lj-benefit__title { font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.lj-benefit__desc { font-size: 13px; color: var(--lj-muted); line-height: 1.55; }

/* ─── FAQ ───────────────────────────── */
.lj-faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.lj-faq-item {
  background: #fff; border: 1.5px solid var(--lj-line);
  border-radius: 12px; overflow: hidden;
}
.lj-faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; background: none;
  font-weight: 600; font-size: 15px; color: var(--lj-brown);
  cursor: pointer; text-align: left; gap: 12px;
}
.lj-faq-q .lj-faq-icon { flex-shrink: 0; color: var(--lj-primary); transition: transform .2s; font-size: 18px; }
.lj-faq-q.open .lj-faq-icon { transform: rotate(45deg); }
.lj-faq-a {
  padding: 0 22px 18px;
  font-size: 14px; color: var(--lj-muted); line-height: 1.7; display: none;
}
.lj-faq-item.open .lj-faq-a { display: block; }

/* ─── Promo / CTA Banner ────────────── */
.lj-promo-banner {
  background: var(--lj-brown-d);
  color: #fff; border-radius: 24px;
  padding: 56px 48px; text-align: center;
  margin: 0 32px; position: relative; overflow: hidden;
}
.lj-promo-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(140,184,0,.16) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(140,184,0,.08) 0%, transparent 50%);
}
.lj-promo-banner__inner { position: relative; }
.lj-promo-banner__title { font-size: 30px; font-weight: 900; margin-bottom: 12px; letter-spacing: -1px; }
.lj-promo-banner__sub { font-size: 16px; opacity: .8; margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.lj-promo-banner__btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--lj-primary); color: #fff;
  padding: 15px 40px; border-radius: 999px;
  font-weight: 700; font-size: 15px;
  transition: all .2s; box-shadow: 0 4px 18px rgba(140,184,0,.4);
}
.lj-promo-banner__btn:hover { background: #7aa300; transform: translateY(-2px); color: #fff; box-shadow: 0 6px 24px rgba(140,184,0,.5); }

/* ─── Success page ──────────────────── */
.lj-success {
  min-height: 80vh; display: flex;
  align-items: center; justify-content: center; padding: 48px 24px;
}
.lj-success__card {
  background: #fff; border: 1.5px solid var(--lj-line);
  border-radius: 24px; padding: 52px;
  text-align: center; max-width: 540px; width: 100%;
  box-shadow: var(--lj-shadow-lg);
}
.lj-success__icon {
  width: 80px; height: 80px; background: var(--lj-green-l);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 36px; color: var(--lj-green); margin: 0 auto 24px;
}
.lj-success__title { font-size: 30px; font-weight: 900; margin-bottom: 10px; color: var(--lj-brown); }
.lj-success__sub { font-size: 15px; color: var(--lj-muted); line-height: 1.6; }
.lj-success__order {
  background: var(--lj-bg2); border-radius: 12px;
  padding: 14px 20px; margin: 22px 0;
  font-size: 14px; text-align: left;
  border: 1px solid var(--lj-line);
}
.lj-success__order-row {
  display: flex; justify-content: space-between;
  padding: 5px 0; border-bottom: 1px solid var(--lj-line);
}
.lj-success__order-row:last-child { border-bottom: none; }

/* ─── Alert ─────────────────────────── */
.lj-alert {
  padding: 13px 16px; border-radius: 10px;
  font-size: 13px; margin-bottom: 16px;
  display: flex; align-items: center; gap: 9px; font-weight: 500;
}
.lj-alert--err  { background: #fef2f2; border: 1px solid #fecaca; color: #dc2626; }
.lj-alert--ok   { background: #f0fdf4; border: 1px solid #bbf7d0; color: #16a34a; }
.lj-alert--info { background: var(--lj-primary-l); border: 1px solid var(--lj-line); color: var(--lj-text-soft); }

/* ─── Footer ─────────────────────────── */
.lj-footer {
  background: #0a1606;
  color: rgba(255,255,255,.55);
  padding: 0;
  font-size: 13px;
}
.lj-footer-main {
  padding: 64px 40px 48px;
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.lj-footer__brand {
  font-size: 20px; font-weight: 800; color: #fff;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.lj-footer__brand-icon {
  width: 38px; height: 38px; background: var(--lj-primary);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 900; color: #fff;
}
.lj-footer__desc { line-height: 1.7; font-size: 13.5px; max-width: 280px; margin-bottom: 24px; }
.lj-footer__social {
  display: flex; gap: 8px;
}
.lj-footer__social-link {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: 14px;
  transition: all .2s;
}
.lj-footer__social-link:hover { background: var(--lj-primary); border-color: var(--lj-primary); color: #fff; transform: translateY(-2px); }
.lj-footer__title {
  font-weight: 700; color: rgba(255,255,255,.9);
  margin-bottom: 18px; font-size: 12px;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.lj-footer__links { display: flex; flex-direction: column; gap: 10px; }
.lj-footer__links a {
  color: rgba(255,255,255,.5); transition: color .15s; font-size: 13.5px;
}
.lj-footer__links a:hover { color: var(--lj-primary); }
.lj-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 40px;
  max-width: 1240px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
/* Legacy grid support */
.lj-footer-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
  padding: 64px 40px 0;
}
.lj-footer__bottom {
  max-width: 1240px; margin: 0 auto;
  padding: 22px 40px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}

/* ─── Portal Login Modal ────────────── */
.pml-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.55); z-index: 9999;
  align-items: center; justify-content: center; padding: 20px;
}
.pml-overlay.open { display: flex; }
.pml-box {
  background: #fff; border-radius: 20px;
  width: 100%; max-width: 400px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  overflow: hidden;
}
.pml-head {
  padding: 28px 28px 22px;
  background: var(--lj-brown-d); color: #fff; position: relative;
}
.pml-head h2 { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.pml-head p  { font-size: 13px; opacity: .7; }
.pml-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,.12); border: none; color: #fff;
  width: 30px; height: 30px; border-radius: 50%;
  font-size: 14px; cursor: pointer; transition: background .15s;
  display: flex; align-items: center; justify-content: center;
}
.pml-close:hover { background: rgba(255,255,255,.25); }
.pml-body { padding: 24px 28px 28px; }
.pml-err {
  display: none; background: #fef2f2; border: 1px solid #fecaca;
  color: #dc2626; border-radius: 8px; padding: 10px 14px;
  font-size: 13px; margin-bottom: 14px;
}
.pml-field { margin-bottom: 14px; }
.pml-label { display: block; font-size: 12px; font-weight: 700; color: #4a5a28; margin-bottom: 6px; letter-spacing: .3px; }
.pml-input {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--lj-line); border-radius: 10px;
  font-size: 14px; color: var(--lj-text); background: #fff;
  transition: border .15s, box-shadow .15s;
}
.pml-input:focus { border-color: var(--lj-primary); box-shadow: 0 0 0 3px rgba(140,184,0,.13); }
.pml-btn {
  width: 100%; padding: 14px;
  background: var(--lj-primary); color: #fff;
  border-radius: 999px; font-size: 15px; font-weight: 700;
  border: none; cursor: pointer; transition: all .2s; margin-top: 6px;
  box-shadow: 0 3px 12px rgba(140,184,0,.3);
}
.pml-btn:hover { background: #7aa300; transform: translateY(-1px); }

/* ─── Plan Grid (alias) ─────────────── */
.lj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  justify-content: center;
}

/* ─── Card: richer header/body layout ── */
/* (used by planos.php where each card has a coloured header + body) */
.lj-card__header {
  padding: 26px 24px 18px;
  color: #fff;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
  border-radius: var(--lj-radius) var(--lj-radius) 0 0;
  /* gradient applied inline by PHP (brand-dynamic) */
}
.lj-card__header-left { flex: 1; min-width: 0; }
.lj-card__icon-wrap {
  width: 52px; height: 52px;
  background: rgba(255,255,255,.22);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 12px; flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,.12); color: #fff;
}
.lj-card__icon-wrap svg { width: 24px; height: 24px; }
/* override lj-card__badge when inside header */
.lj-card__header .lj-card__badge {
  position: static;
  background: rgba(255,255,255,.22);
  color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: 999px;
  letter-spacing: .5px; text-transform: uppercase;
}
.lj-card__body {
  padding: 20px 24px; flex: 1;
  display: flex; flex-direction: column;
}
/* price variant with separate cents (planos.php) */
.lj-card__currency {
  font-size: 15px; font-weight: 700; color: var(--lj-muted);
}
.lj-card__price {
  font-size: 38px; font-weight: 900;
  line-height: 1; letter-spacing: -1.5px;
  color: var(--lj-text);
}
.lj-card__cents {
  font-size: 17px; font-weight: 700; color: var(--lj-muted);
  align-self: flex-start; margin-top: 4px;
}
.lj-card__duration {
  font-size: 12px; color: var(--lj-muted); margin-bottom: 14px;
}
.lj-card__sep {
  border: none; border-top: 1px solid var(--lj-line); margin: 0 0 14px;
}
.lj-card__features {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 13px; color: var(--lj-muted);
  flex: 1; margin-bottom: 18px;
}
.lj-card__features li { display: flex; align-items: center; gap: 8px; }
.lj-card__features li i { color: var(--lj-primary); font-size: 12px; flex-shrink: 0; }

/* Card: product image header */
.lj-card__img-wrap {
  position: relative; overflow: hidden;
  height: 180px;
  border-radius: var(--lj-radius) var(--lj-radius) 0 0;
}
.lj-card__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .35s;
}
.lj-card:hover .lj-card__img { transform: scale(1.04); }
.lj-card__popular-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--lj-primary); color: #fff;
  font-size: 10px; font-weight: 800; padding: 4px 10px;
  border-radius: 999px; display: flex; align-items: center; gap: 4px;
}

/* Card: override button style for header-layout cards */
.lj-card__body .lj-card__btn {
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(140,184,0,.18);
}

/* ─── No results ────────────────────── */
.lj-no-results {
  display: none; text-align: center;
  padding: 64px 20px; color: var(--lj-muted);
}
.lj-no-results i { font-size: 44px; opacity: .3; display: block; margin-bottom: 14px; }

/* ─── Promo strip (compact, dynamic gradient) ── */
.lj-promo {
  color: #fff;
  border-radius: var(--lj-radius);
  padding: 36px 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin: 0 0 48px;
  box-shadow: var(--lj-shadow-lg);
}
.lj-promo__title { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.lj-promo__sub { font-size: 14px; opacity: .85; }
.lj-promo__btn {
  background: #fff; padding: 12px 28px;
  border-radius: 999px; font-size: 14px; font-weight: 700;
  white-space: nowrap; transition: all .15s;
}
.lj-promo__btn:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,.15); }

/* ─── Sidebar banner (image strip) ──── */
.lj-sidebar-banner {
  width: 100%; line-height: 0; overflow: hidden;
  margin: 0 0 56px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(14,28,8,.10);
  max-width: 1200px;
  margin-left: auto; margin-right: auto;
  margin-bottom: 56px;
}
.lj-sidebar-banner img { width: 100%; max-height: 260px; object-fit: cover; display: block; border-radius: 20px; }

/* ─── Section image banner (before protocols) ── */
.lj-section-banner {
  max-width: 1200px;
  margin: -24px auto 40px;
  padding: 0 40px;
  line-height: 0;
}
.lj-section-banner img {
  width: 100%; max-height: 220px; object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: 0 6px 28px rgba(14,28,8,.10);
}

/* ─── Benefits (class alias) ────────── */
.lj-benefits { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 28px; }

/* ─── Responsive ────────────────────── */
@media (max-width: 1100px) {
  .lj-footer-main { grid-template-columns: 1.5fr 1fr 1fr; }
  .lj-footer-main > *:last-child { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .lj-nav { padding: 0 24px; }
  .lj-hero { grid-template-columns: 1fr; min-height: auto; }
  .lj-hero__left { padding: 60px 32px; }
  .lj-hero__right { display: none; }
  .lj-hero__title { letter-spacing: -1.5px; }
  .lj-hero__btns { gap: 10px; }
  .lj-trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .lj-trust-item { padding: 22px 24px; gap: 14px; border-right: none; border-bottom: 1px solid #eff7dd; }
  .lj-trust-item:nth-child(odd) { border-right: 1px solid #eff7dd; }
  .lj-trust-item:nth-last-child(-n+2) { border-bottom: none; }
  .lj-trust-icon { width: 46px; height: 46px; border-radius: 12px; }
  .lj-trust-icon svg { width: 20px; height: 20px; }
  .lj-trust-icon i { font-size: 18px; }
  .lj-trust-text strong { font-size: 14px; }
  .lj-trust-text span { font-size: 12px; }
  .lj-footer-main { grid-template-columns: 1fr 1fr; padding: 48px 24px 32px; gap: 32px; }
  .lj-footer-grid { grid-template-columns: 1fr 1fr; padding: 48px 24px 0; }
  .lj-footer-bottom, .lj-footer__bottom { padding: 20px 24px; }
}
@media (max-width: 768px) {
  .lj-nav { padding: 0 18px; height: 64px; }
  .lj-nav__links { display: none; }
  .lj-nav__ham { display: flex; }
  .lj-nav__wa span, .lj-nav__portal span { display: none; }
  .lj-nav__wa, .lj-nav__portal { padding: 9px 13px; }
  .lj-hero__left { padding: 52px 24px; }
  .lj-hero__title { font-size: clamp(28px, 8vw, 44px); letter-spacing: -1px; }
  .lj-hero__sub { font-size: 15px; }
  .lj-hero__btns { flex-direction: column; align-items: flex-start; }
  .lj-hero__stats { gap: 20px; }
  .lj-stat__num { font-size: 22px; }
  .lj-banner-hero__inner { padding: 0 24px; }
  .lj-plans-grid { grid-template-columns: 1fr 1fr; }
  .lj-checkout { grid-template-columns: 1fr; }
  .lj-order-summary { position: static; }
  .lj-form-row { grid-template-columns: 1fr; }
  .lj-pay-options { grid-template-columns: 1fr; }
  .lj-success__card { padding: 32px 22px; }
  .lj-promo-banner { margin: 0 16px; padding: 40px 28px; }
  .lj-promo-banner__title { font-size: 24px; }
  .lj-testimonials-grid { grid-template-columns: 1fr; }
  .lj-footer-main, .lj-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .lj-footer-bottom, .lj-footer__bottom { flex-direction: column; text-align: center; }
  .lj-section { padding: 52px 0; }
  .lj-section__title { font-size: clamp(24px, 6vw, 32px); }
}
@media (max-width: 480px) {
  .lj-plans-grid { grid-template-columns: 1fr; }
  .lj-cats { gap: 6px; }
  .lj-cat-btn { font-size: 12px; padding: 7px 14px; }
  .lj-search input { width: 100%; }
  .lj-trust-item { padding: 12px 16px; }
}
