/* =====================================================================
   Seminarapasaja - Front theme ala Loket.com (versi 2026)
   Font  : Albert Sans (pengganti BasierCircle; bobot 400/500/600/700)
   Warna : primary #0049cc, navy #23417a, text #151416, gray #6b7280
   ===================================================================== */
:root {
  --blue: #0049cc;
  --blue-hover: #003ba6;
  --blue-light: #f0f6ff;
  --blue-soft: #2d7ef6;
  --navy: #23417a;
  --navy-dark: #152955;
  --text: #151416;
  --text-2: #4b5563;
  --muted: #6b7280;
  --muted-2: #9ca3af;
  --border: #e5e7eb;
  --bg: #f3f4f6;
  --bg-2: #f9fafb;
  --skel: #e9ebef;
  --green: #16a34a;
  --green-dark: #2e8544;
  --orange: #f97316;
  --red: #ef4444;
  --yellow: #ffc600;
  --yellow-bg: #fff9e0;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 8px rgba(21, 41, 85, .06);
  --shadow-lg: 0 12px 32px rgba(21, 41, 85, .12);
  --font: "Albert Sans", "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: #fff; font-size: 14px; line-height: 1.5; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font); font-weight: 600; color: var(--text); letter-spacing: -.005em; }
a { color: var(--blue); }
a:hover { color: var(--blue-hover); text-decoration: none; }
p { color: var(--text-2); }
img { max-width: 100%; }
.container { max-width: 1232px; padding-left: 24px; padding-right: 24px; }

/* ---------- Buttons ---------- */
.btn { font-family: var(--font); font-weight: 600; border-radius: 8px; padding: 10px 20px; font-size: 14px; transition: all .15s; }
.btn-sm { padding: 6px 14px; font-size: 13px; }
.btn-lg { padding: 13px 26px; font-size: 15px; }
.btn-block { display: block; width: 100%; }
.btn-lk { background: var(--blue); color: #fff; border: 1px solid var(--blue); }
.btn-lk:hover, .btn-lk:focus { background: var(--blue-hover); border-color: var(--blue-hover); color: #fff; box-shadow: none; }
.btn-lk-outline { background: #fff; color: var(--blue); border: 1px solid var(--blue); }
.btn-lk-outline:hover { background: var(--blue-light); color: var(--blue); }
.btn-lk-light { background: var(--blue-light); color: var(--blue); border: 1px solid transparent; }
.btn-lk-light:hover { background: #dfeaff; color: var(--blue); }
.btn-lk-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-lk-ghost:hover { border-color: var(--text); color: var(--text); }
.btn-lk-green { background: var(--green-dark); color: #fff; border: 1px solid var(--green-dark); }
.btn-lk-green:hover { background: #256d38; color: #fff; }
.btn-lk-danger { background: #fff; color: var(--red); border: 1px solid var(--red); }
.btn-lk-danger:hover { background: #fff1f0; color: var(--red); }
.btn:disabled, .btn.disabled { opacity: .5; cursor: not-allowed; }

/* ---------- Form ---------- */
.form-control, .custom-select { font-family: var(--font); font-size: 14px; border: 1px solid var(--border); border-radius: 8px; height: 44px; padding: 10px 14px; color: var(--text); }
.form-control:focus, .custom-select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0, 73, 204, .12); }
textarea.form-control { height: auto; }
label { font-size: 13px; font-weight: 500; color: var(--text); margin-bottom: 6px; }
.form-text, .hint { font-size: 12px; color: var(--muted); }
.is-invalid { border-color: var(--red) !important; }
.invalid-feedback { font-size: 12px; }

/* ---------- Skeleton & shimmer ---------- */
@keyframes lk-pulse { 50% { opacity: .45; } }
@keyframes lk-shimmer { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }
@keyframes lk-fadein { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.lk-sk { position: relative; overflow: hidden; border-radius: var(--radius-sm); background: var(--skel); animation: lk-pulse 1.8s cubic-bezier(.4, 0, .6, 1) infinite; }
.lk-sk::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.65) 50%, rgba(255,255,255,0) 100%); background-size: 200% 100%; animation: lk-shimmer 1.4s linear infinite; }
.lk-sk.line { height: 12px; border-radius: 6px; margin-bottom: 8px; }
.lk-sk.line.w25 { width: 25%; } .lk-sk.line.w40 { width: 40%; } .lk-sk.line.w60 { width: 60%; } .lk-sk.line.w75 { width: 75%; } .lk-sk.line.w90 { width: 90%; }
.lk-sk.line.h16 { height: 16px; }
.lk-sk.thumb { aspect-ratio: 16 / 7; width: 100%; border-radius: var(--radius-sm); margin-bottom: 12px; }
.lk-sk.banner { height: 340px; width: 100%; border-radius: 0; }
.lk-sk.box { height: 64px; width: 48px; border-radius: var(--radius-sm); flex: 0 0 48px; }
.lk-sk.circle { width: 48px; height: 48px; border-radius: 12px; }
.lk-sk.pic { width: 126px; height: 84px; border-radius: var(--radius-sm); flex: 0 0 126px; }
.lk-sk.title { height: 20px; width: 220px; border-radius: 6px; }
body.lk-loading .lk-real { display: none !important; }
body:not(.lk-loading) .lk-skel { display: none !important; }
body:not(.lk-loading) .lk-real { animation: lk-fadein .35s ease both; }
/* gambar: shimmer sampai termuat */
.lk-img { position: relative; overflow: hidden; background: var(--skel); }
.lk-img::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.6) 50%, rgba(255,255,255,0) 100%); background-size: 200% 100%; animation: lk-shimmer 1.4s linear infinite; }
.lk-img img { position: relative; opacity: 0; transition: opacity .35s ease; display: block; width: 100%; height: 100%; object-fit: cover; }
.lk-img img.loaded { opacity: 1; }
.lk-img.done::before { display: none; }

/* ---------- Navbar ---------- */
.lk-nav { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1030; }
.lk-nav .inner { height: 76px; display: flex; align-items: center; gap: 18px; }
.lk-logo { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 22px; color: var(--navy); letter-spacing: -.02em; white-space: nowrap; }
.lk-logo:hover { color: var(--navy); }
.lk-logo .mark { width: 32px; height: 32px; border-radius: 9px; background: var(--blue); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 15px; }
.lk-navlink { display: inline-flex; align-items: center; gap: 8px; color: var(--navy); font-weight: 600; font-size: 14px; padding: 8px 10px; border-radius: 8px; white-space: nowrap; }
.lk-navlink i { font-size: 16px; }
.lk-navlink:hover { background: var(--bg-2); color: var(--blue); }
.lk-navlink.active { color: var(--blue); }
.lk-search { flex: 1; max-width: 520px; position: relative; }
.lk-search input { width: 100%; height: 44px; border-radius: 10px; padding-left: 16px; padding-right: 44px; border: 1px solid transparent; background: var(--bg); font-family: var(--font); font-size: 14px; color: var(--text); }
.lk-search input::placeholder { color: var(--muted); }
.lk-search input:focus { background: #fff; border-color: var(--border); outline: 0; box-shadow: 0 0 0 3px rgba(0,73,204,.08); }
.lk-search button { position: absolute; right: 6px; top: 6px; height: 32px; width: 32px; border: 0; border-radius: 8px; background: transparent; color: var(--muted); font-size: 15px; }
.lk-search button:hover { color: var(--blue); background: #fff; }
.lk-menu { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.lk-menu .dropdown-menu { border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow-lg); padding: 8px; min-width: 220px; margin-top: 8px; }
.lk-menu .dropdown-item { border-radius: 8px; padding: 9px 12px; font-size: 14px; font-weight: 500; color: var(--text); }
.lk-menu .dropdown-item i { width: 20px; color: var(--muted); }
.lk-menu .dropdown-item:hover { background: var(--blue-light); color: var(--blue); }
.lk-akun { display: inline-flex; align-items: center; gap: 8px; background: var(--navy); color: #fff; font-weight: 600; font-size: 14px; border-radius: 999px; padding: 8px 16px 8px 12px; white-space: nowrap; }
.lk-akun:hover { background: var(--navy-dark); color: #fff; }
.lk-akun .avatar { width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,.2); display: inline-flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; overflow: hidden; }
.lk-akun .avatar img { width: 100%; height: 100%; object-fit: cover; }
.lk-burger { display: none; border: 0; background: transparent; font-size: 22px; color: var(--navy); width: 42px; height: 42px; margin-left: auto; }
.lk-mobile { display: none; border-top: 1px solid var(--border); padding: 12px 0 16px; }
.lk-mobile a { display: block; padding: 10px 4px; font-weight: 500; color: var(--text); }
.lk-mobile.show { display: block; }
.lk-search-m { display: none; padding: 0 0 12px; }
.lk-search-m .lk-search { max-width: none; }
.lk-kategori-menu { grid-template-columns: 1fr 1fr; gap: 2px; min-width: 380px; }
.lk-kategori-menu.show { display: grid; }

/* ---------- Hero (full-bleed, gelap) ---------- */
.lk-hero { background: #0b0f19; position: relative; }
.lk-hero .carousel-item { height: 340px; position: relative; overflow: hidden; }
.lk-hero .bgblur { position: absolute; inset: -40px; background-size: cover; background-position: center; filter: blur(30px) saturate(1.2) brightness(.5); transform: scale(1.1); }
.lk-hero .bgfade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.1) 100%); }
.lk-hero .wrap { position: relative; height: 100%; display: flex; align-items: center; gap: 40px; }
.lk-hero .txt { flex: 1; color: #fff; padding: 24px 0; }
.lk-hero .txt .kicker { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.75); margin-bottom: 8px; letter-spacing: .06em; text-transform: uppercase; }
.lk-hero .txt h2 { color: #fff; font-size: 30px; font-weight: 700; line-height: 1.2; margin-bottom: 10px; max-width: 560px; }
.lk-hero .txt .meta { font-size: 15px; color: rgba(255,255,255,.85); margin-bottom: 4px; }
.lk-hero .txt .meta i { width: 18px; color: rgba(255,255,255,.7); }
.lk-hero .pill { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--text); border-radius: 12px; padding: 10px 16px; font-size: 14px; font-weight: 500; margin-top: 14px; box-shadow: var(--shadow-lg); }
.lk-hero .pill b { color: var(--blue); font-weight: 600; }
.lk-hero .pill i { color: var(--blue); }
.lk-hero .pill:hover { color: var(--text); transform: translateY(-1px); }
.lk-hero .art { flex: 0 0 46%; height: 276px; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,.45); }
.lk-hero .art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lk-hero .carousel-indicators { left: 0; right: auto; margin: 0; bottom: 16px; padding-left: 24px; justify-content: flex-start; }
.lk-hero .carousel-indicators li { width: 6px; height: 6px; border-radius: 50%; border: 0; background: rgba(255,255,255,.45); margin: 0 5px; }
.lk-hero .carousel-indicators .active { background: #fff; width: 10px; height: 10px; margin-top: -2px; }
.lk-hero .carousel-control-prev, .lk-hero .carousel-control-next { width: 56px; opacity: 0; transition: opacity .2s; }
.lk-hero:hover .carousel-control-prev, .lk-hero:hover .carousel-control-next { opacity: 1; }
.lk-hero .carousel-control-prev span, .lk-hero .carousel-control-next span { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--text); display: flex; align-items: center; justify-content: center; }
.lk-hero-pill-m { display: none; background: var(--blue-light); padding: 12px 16px; text-align: center; font-size: 13px; font-weight: 500; color: var(--text); }
.lk-hero-pill-m b { color: var(--blue); }

/* ---------- Sections ---------- */
.lk-section { padding: 28px 0 8px; }
.lk-section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; gap: 16px; }
.lk-section-head h2 { font-size: 20px; font-weight: 600; margin: 0; display: flex; align-items: center; gap: 10px; }
.lk-section-head h2 i { font-size: 18px; color: var(--navy); }
.lk-section-head .more { font-weight: 500; font-size: 13px; white-space: nowrap; color: var(--blue); }
.lk-section-head .more i { font-size: 11px; margin-left: 4px; }
.lk-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.lk-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lk-grid-4 > *, .lk-grid-3 > *, .lk-scroller > * { min-width: 0; }
.lk-scroller { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.lk-scroller.cols-3 { grid-template-columns: repeat(3, 1fr); }

/* ---------- Kartu event (meniru kartu Loket) ---------- */
.lk-card { display: block; color: var(--text); position: relative; transition: transform .2s ease; }
.lk-card:hover { color: var(--text); transform: translateY(-3px); }
.lk-card:hover .title { color: var(--blue); }
.lk-card:hover .thumb img { transform: scale(1.04); }
.lk-card:hover .thumb { box-shadow: 0 10px 24px rgba(21,41,85,.14); }
.lk-card .thumb { aspect-ratio: 16 / 7; border-radius: 8px; overflow: hidden; background: var(--skel); position: relative; transition: box-shadow .2s ease; }
.lk-card .thumb::after { content: ""; position: absolute; inset: 0; border-radius: 8px; box-shadow: inset 0 0 0 1px rgba(0,0,0,.06); pointer-events: none; }
.lk-card .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.lk-card .loc { font-size: 13px; color: #4b5563; margin-top: 18px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lk-card .title { font-size: 17px; font-weight: 700; line-height: 1.35; margin: 8px 0 0; color: #1f2937; transition: color .15s; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; letter-spacing: -.01em; }
.lk-card .by { font-size: 13px; color: var(--muted); margin-top: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lk-card .sep { border-top: 1px dashed #d1d5db; margin: 16px 0; }
.lk-card .from { font-size: 13px; color: var(--muted); }
.lk-card .price { font-size: 16px; font-weight: 700; color: #1f2937; margin-top: 6px; }
/* kartu trending: efek tumpukan kartu di belakang gambar */
.lk-card.big { padding-top: 12px; }
.lk-card.big .stack { position: absolute; top: 0; height: 24px; border-radius: 12px 12px 0 0; background: #e5e7eb; }
.lk-card.big .stack.s1 { left: 20px; right: 20px; top: 0; background: #eceef1; }
.lk-card.big .stack.s2 { left: 10px; right: 10px; top: 6px; background: #dfe2e7; }
.lk-card.big .thumb { border-radius: 12px; position: relative; z-index: 1; }
.lk-card.big .title { margin-top: 14px; }
.lk-card.big .meta { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; font-size: 14px; gap: 8px; }
.lk-card.big .meta .hot { color: var(--orange); font-weight: 600; white-space: nowrap; }
.lk-card.big .meta .hot i { margin-right: 4px; }
.lk-card.big .meta .hot.green { color: var(--green); }
.lk-card.big .meta .hot.gray { color: var(--muted); }
.lk-card.big .meta .pill { background: var(--bg); color: #4b5563; border-radius: 999px; padding: 5px 12px; font-size: 13px; font-weight: 500; white-space: nowrap; }
.lk-card.big .meta .pill i { margin-right: 4px; color: var(--muted); }
/* kartu horizontal scroll mobile */
.lk-scroller { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.lk-scroller.cols-3 { grid-template-columns: repeat(3, 1fr); }

/* ---------- Event2Go ---------- */
.lk-e2g { display: grid; grid-template-columns: 340px 1fr; gap: 24px; align-items: start; }
.lk-e2g .promo { aspect-ratio: 1 / 1.35; border-radius: var(--radius); background: var(--navy-dark); color: #fff; padding: 24px; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; }
.lk-e2g .promo .lines { position: absolute; inset: 0; padding: 70px 24px 0; font-size: 22px; font-weight: 700; line-height: 1.3; color: rgba(255,255,255,.07); letter-spacing: .04em; white-space: nowrap; overflow: hidden; text-transform: uppercase; }
.lk-e2g .promo .lines span { display: block; }
.lk-e2g .promo .box { position: relative; background: var(--blue); border-radius: 12px; padding: 18px; margin-bottom: 16px; }
.lk-e2g .promo .box .t { font-size: 24px; font-weight: 700; line-height: 1.1; color: #fff; }
.lk-e2g .promo .box .s { font-size: 12px; color: rgba(255,255,255,.8); margin-top: 6px; }
.lk-e2g .promo .logo { position: absolute; top: 20px; left: 24px; width: 34px; height: 34px; border-radius: 9px; background: #fff; color: var(--navy-dark); display: flex; align-items: center; justify-content: center; }
.lk-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.lk-chip { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; border-radius: 999px; border: 1px solid var(--border); background: #fff; color: var(--text-2); font-weight: 500; font-size: 13px; transition: all .15s; }
.lk-chip i { font-size: 12px; }
.lk-chip:hover, .lk-chip.active { background: var(--blue-light); border-color: var(--blue); color: var(--blue); }
.lk-list { display: flex; flex-direction: column; }
.lk-list .row-ev { display: flex; align-items: center; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--border); color: var(--text); }
.lk-list .row-ev:last-child { border-bottom: 0; }
.lk-list .row-ev:hover { color: var(--text); }
.lk-list .row-ev:hover .t { color: var(--blue); }
.lk-date { flex: 0 0 48px; height: 64px; border: 1px solid var(--border); border-radius: var(--radius-sm); display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1; }
.lk-date .m { font-size: 10px; font-weight: 600; color: var(--muted); text-transform: uppercase; }
.lk-date .d { font-size: 20px; font-weight: 700; color: var(--text); margin: 3px 0; }
.lk-date .w { font-size: 10px; color: var(--muted); text-transform: uppercase; }
.lk-list .info { flex: 1; min-width: 0; }
.lk-list .t { font-size: 16px; font-weight: 600; line-height: 1.3; margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.lk-list .s { font-size: 12px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lk-list .pic { flex: 0 0 126px; height: 84px; border-radius: var(--radius-sm); overflow: hidden; background: var(--skel); }
.lk-list .pic img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Promo banner ---------- */
.lk-promo { border-radius: var(--radius); overflow: hidden; background: var(--navy-dark); color: #fff; padding: 36px 40px; display: flex; align-items: center; justify-content: space-between; gap: 32px; position: relative; }
.lk-promo h3 { color: #fff; font-size: 26px; font-weight: 700; margin-bottom: 6px; position: relative; }
.lk-promo p { color: rgba(255,255,255,.85); font-size: 14px; margin: 0; max-width: 560px; position: relative; }
.lk-promo .btn { position: relative; background: #fff; color: var(--blue); border-color: #fff; margin-top: 14px; }
.lk-promo .feats { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; min-width: 220px; }
.lk-promo .feats li { border: 1px solid rgba(255,255,255,.25); border-radius: 10px; padding: 10px 14px; font-size: 13px; font-weight: 500; color: #fff; }
.lk-promo .feats li i { width: 22px; color: #9ec1ff; }

/* ---------- Baris ikon kategori ---------- */
.lk-cats { display: flex; justify-content: space-between; gap: 12px; }
.lk-cat { flex: 1 1 0; min-width: 84px; display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--text-2); font-size: 11px; font-weight: 500; text-align: center; line-height: 1.25; }
.lk-cat .ico { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 19px; color: var(--navy); background: var(--blue-light); transition: transform .15s; }
.lk-cat:hover { color: var(--blue); }
.lk-cat:hover .ico { transform: translateY(-3px); }

/* ---------- Stat strip & fitur ---------- */
.lk-stats { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.lk-stats .num { font-size: 24px; font-weight: 700; color: var(--navy); }
.lk-stats .lbl { font-size: 13px; color: var(--muted); }
.lk-feature { display: flex; gap: 14px; padding: 18px; border-radius: var(--radius); border: 1px solid var(--border); height: 100%; }
.lk-feature .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--blue-light); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.lk-feature h6 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.lk-feature p { font-size: 13px; margin: 0; }
.lk-cta { background: var(--blue); border-radius: var(--radius); padding: 36px 40px; color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 32px; position: relative; overflow: hidden; }
.lk-cta h3 { color: #fff; font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.lk-cta p { color: rgba(255,255,255,.85); font-size: 14px; margin: 0; max-width: 560px; }
.lk-cta .btn { background: #fff; color: var(--blue); border-color: #fff; white-space: nowrap; }
.lk-cta ul { list-style: none; padding: 0; margin: 14px 0 0; display: flex; gap: 22px; flex-wrap: wrap; }
.lk-cta ul li { color: #fff; font-size: 13px; font-weight: 500; }
.lk-cta ul li i { color: #ffd84d; margin-right: 6px; }

/* ---------- Footer ---------- */
.lk-footer { background: var(--bg-2); border-top: 1px solid var(--border); color: var(--text-2); margin-top: 56px; padding: 44px 0 0; font-size: 13px; }
.lk-footer h6 { color: var(--text); font-size: 14px; font-weight: 600; margin-bottom: 14px; }
.lk-footer ul { list-style: none; padding: 0; margin: 0; }
.lk-footer ul li { margin-bottom: 10px; }
.lk-footer a { color: var(--text-2); }
.lk-footer a:hover { color: var(--blue); }
.lk-footer .brand { color: var(--navy); font-weight: 700; font-size: 22px; display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.lk-footer .brand .mark { width: 32px; height: 32px; border-radius: 9px; background: var(--blue); color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.lk-footer .social a { display: inline-flex; width: 36px; height: 36px; border-radius: 50%; background: #fff; border: 1px solid var(--border); align-items: center; justify-content: center; margin-right: 8px; color: var(--navy); }
.lk-footer .social a:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.lk-footer .bottom { border-top: 1px solid var(--border); margin-top: 28px; padding: 18px 0; font-size: 12px; color: var(--muted); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.lk-footer .pay { display: flex; gap: 8px; flex-wrap: wrap; }
.lk-footer .pay span { background: #fff; border: 1px solid var(--border); color: var(--navy); font-weight: 700; font-size: 11px; padding: 4px 8px; border-radius: 4px; }

/* ---------- Page shells ---------- */
.lk-page { padding: 28px 0 40px; }
.lk-page-head { margin-bottom: 22px; }
.lk-page-head h1 { font-size: 24px; font-weight: 600; margin-bottom: 4px; }
.lk-breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.lk-breadcrumb a { color: var(--text-2); }
.lk-breadcrumb i { font-size: 10px; margin: 0 6px; }
.lk-empty { text-align: center; padding: 56px 20px; border: 1px dashed var(--border); border-radius: var(--radius); color: var(--muted); }
.lk-empty i { font-size: 40px; margin-bottom: 12px; color: var(--border); display: block; }
.lk-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.lk-box + .lk-box { margin-top: 16px; }
.lk-box h5 { font-size: 16px; margin-bottom: 14px; }
.lk-alert { border-radius: 10px; padding: 12px 16px; font-size: 13px; border: 1px solid transparent; }
.lk-alert.info { background: var(--blue-light); color: var(--blue); }
.lk-alert.success { background: #e9f8ee; color: var(--green-dark); }
.lk-alert.warning { background: var(--yellow-bg); color: #8a6d00; }
.lk-alert.danger { background: #fff1f0; color: #b3261e; }
.lk-alert a { font-weight: 600; }
.badge-lk { font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 999px; }
.badge-lk.success { background: #e9f8ee; color: var(--green-dark); }
.badge-lk.warning { background: var(--yellow-bg); color: #8a6d00; }
.badge-lk.info { background: var(--blue-light); color: var(--blue); }
.badge-lk.danger { background: #fff1f0; color: #b3261e; }
.badge-lk.secondary { background: var(--bg); color: var(--text-2); }
.lk-tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--border); margin-bottom: 20px; overflow-x: auto; }
.lk-tabs a { padding: 12px 16px; font-weight: 500; color: var(--text-2); border-bottom: 2px solid transparent; margin-bottom: -1px; white-space: nowrap; }
.lk-tabs a.active, .lk-tabs a:hover { color: var(--blue); border-bottom-color: var(--blue); }

/* ---------- Detail event ---------- */
.lk-detail-banner { border-radius: var(--radius); overflow: hidden; background: var(--skel); aspect-ratio: 16 / 9; }
.lk-detail-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lk-detail-title { font-size: 24px; font-weight: 600; margin: 20px 0 8px; line-height: 1.25; }
.lk-meta { display: flex; flex-wrap: wrap; gap: 8px 22px; color: var(--text-2); font-size: 14px; margin-bottom: 18px; }
.lk-meta span i { color: var(--blue); width: 18px; }
.lk-side { position: sticky; top: 96px; }
.lk-ticket { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.lk-ticket .head { padding: 16px 20px; border-bottom: 1px dashed var(--border); }
.lk-ticket .head .name { font-weight: 600; font-size: 15px; }
.lk-ticket .head .avail { font-size: 12px; color: var(--green-dark); font-weight: 500; }
.lk-ticket .head .avail.closed { color: var(--red); }
.lk-ticket .price-row { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; }
.lk-ticket .price-row .lbl { font-size: 12px; color: var(--muted); }
.lk-ticket .price-row .val { font-size: 22px; font-weight: 700; color: var(--text); }
.lk-ticket .price-row .val.free { color: var(--green); }
.lk-ticket .foot { padding: 0 20px 20px; }
.lk-ticket ul.benefit { list-style: none; padding: 0 20px 16px; margin: 0; }
.lk-ticket ul.benefit li { font-size: 13px; color: var(--text-2); padding: 4px 0; }
.lk-ticket ul.benefit li i { color: var(--green); margin-right: 8px; }
.lk-info-list { list-style: none; padding: 0; margin: 0; }
.lk-info-list li { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.lk-info-list li:last-child { border-bottom: 0; }
.lk-info-list .ico { width: 38px; height: 38px; border-radius: 10px; background: var(--blue-light); color: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lk-info-list .lbl { font-size: 12px; color: var(--muted); }
.lk-info-list .val { font-weight: 500; font-size: 14px; }
.lk-desc { font-size: 14px; color: var(--text-2); line-height: 1.7; white-space: pre-line; }
.lk-organizer { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1px solid var(--border); border-radius: var(--radius); }
.lk-organizer .org { width: 44px; height: 44px; border-radius: 50%; background: var(--blue-light); color: var(--blue); font-weight: 700; display: flex; align-items: center; justify-content: center; }
.lk-organizer small { display: block; color: var(--muted); font-size: 12px; }

/* Materi list */
.lk-materi { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.lk-materi .item { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-bottom: 1px solid var(--border); color: var(--text); background: #fff; transition: background .15s; }
.lk-materi .item:last-child { border-bottom: 0; }
.lk-materi .item:hover { background: var(--bg-2); color: var(--text); }
.lk-materi .item.active { background: var(--blue-light); }
.lk-materi .item .ico { width: 40px; height: 40px; border-radius: 10px; background: var(--blue-light); color: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; }
.lk-materi .item .ico.video { background: #fff1f0; color: var(--red); }
.lk-materi .item .ico.pdf { background: #fff9e0; color: #b8860b; }
.lk-materi .item .ico.file { background: #e9f8ee; color: var(--green-dark); }
.lk-materi .item .t { font-weight: 600; font-size: 14px; }
.lk-materi .item .s { font-size: 12px; color: var(--muted); }
.lk-materi .item .lock { margin-left: auto; color: var(--muted); font-size: 13px; }
.lk-materi .item .dur { margin-left: auto; font-size: 12px; color: var(--muted); white-space: nowrap; }
.lk-player { background: #000; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 9; }
.lk-player iframe { width: 100%; height: 100%; border: 0; }
.lk-player.pdf { aspect-ratio: auto; height: 640px; background: var(--bg); }
.lk-locked { background: var(--blue-light); border-radius: var(--radius); padding: 40px 24px; text-align: center; }
.lk-locked i { font-size: 36px; color: var(--blue); margin-bottom: 10px; }

/* ---------- Checkout / payment ---------- */
.lk-steps { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 28px; }
.lk-steps .st { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 500; color: var(--muted); }
.lk-steps .st .n { width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 13px; background: #fff; }
.lk-steps .st.active { color: var(--blue); }
.lk-steps .st.active .n { border-color: var(--blue); background: var(--blue); color: #fff; }
.lk-steps .st.done { color: var(--green-dark); }
.lk-steps .st.done .n { border-color: var(--green); background: var(--green); color: #fff; }
.lk-steps .ln { width: 64px; height: 2px; background: var(--border); margin: 0 12px; }
.lk-summary { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.lk-summary .ev { display: flex; gap: 12px; padding: 16px; border-bottom: 1px solid var(--border); }
.lk-summary .ev img { width: 96px; aspect-ratio: 16/9; object-fit: cover; border-radius: 8px; }
.lk-summary .ev .t { font-weight: 600; font-size: 14px; line-height: 1.3; }
.lk-summary .ev .d { font-size: 12px; color: var(--text-2); margin-top: 4px; }
.lk-summary .row-line { display: flex; justify-content: space-between; padding: 8px 16px; font-size: 14px; color: var(--text-2); }
.lk-summary .row-line.total { border-top: 1px dashed var(--border); margin-top: 6px; padding-top: 14px; padding-bottom: 16px; font-weight: 700; color: var(--text); font-size: 16px; }
.lk-summary .row-line.total .v { color: var(--blue); font-size: 20px; }
.lk-pay-status { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; border-radius: var(--radius); background: var(--yellow-bg); border: 1px solid #ffe58a; flex-wrap: wrap; }
.lk-pay-status.info { background: var(--blue-light); border-color: #c9dcff; }
.lk-pay-status.success { background: #e9f8ee; border-color: #b7ebc6; }
.lk-pay-status.danger { background: #fff1f0; border-color: #ffc7c2; }
.lk-pay-status .t { font-weight: 600; font-size: 16px; }
.lk-pay-status .s { font-size: 13px; color: var(--text-2); }
.lk-countdown { font-variant-numeric: tabular-nums; font-weight: 700; font-size: 22px; color: #b3261e; letter-spacing: .02em; }
.lk-countdown small { display: block; font-size: 11px; font-weight: 500; color: var(--text-2); letter-spacing: 0; }
.lk-amount { text-align: center; padding: 24px 16px; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; }
.lk-amount .lbl { font-size: 13px; color: var(--text-2); }
.lk-amount .val { font-size: 34px; font-weight: 700; color: var(--text); letter-spacing: -.01em; }
.lk-amount .val em { font-style: normal; color: var(--red); }
.lk-amount .note { font-size: 12px; color: var(--muted); margin-top: 4px; }
.lk-copy { border: 1px solid var(--border); background: #fff; color: var(--blue); font-weight: 600; font-size: 12px; border-radius: 6px; padding: 4px 10px; }
.lk-copy:hover { background: var(--blue-light); }
.lk-bank { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; cursor: pointer; margin-bottom: 10px; transition: all .15s; }
.lk-bank:hover { border-color: var(--blue); }
.lk-bank.selected { border-color: var(--blue); background: var(--blue-light); box-shadow: 0 0 0 3px rgba(0,73,204,.1); }
.lk-bank .logo { width: 58px; height: 36px; border-radius: 6px; color: #fff; font-weight: 700; font-size: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lk-bank .nm { font-weight: 600; font-size: 14px; }
.lk-bank .an { font-size: 12px; color: var(--text-2); }
.lk-bank .rek { font-family: "SFMono-Regular", Menlo, Consolas, monospace; font-weight: 700; font-size: 15px; letter-spacing: .04em; }
.lk-bank .radio { margin-left: auto; width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--border); position: relative; flex-shrink: 0; }
.lk-bank.selected .radio { border-color: var(--blue); }
.lk-bank.selected .radio::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--blue); }
.lk-accordion .card { border: 1px solid var(--border) !important; border-radius: 10px !important; margin-bottom: 8px; overflow: hidden; }
.lk-accordion .card-header { background: #fff; border: 0; padding: 0; }
.lk-accordion .card-header button { width: 100%; text-align: left; padding: 12px 16px; font-weight: 600; font-size: 14px; color: var(--text); text-decoration: none; display: flex; justify-content: space-between; align-items: center; }
.lk-accordion .card-header button:hover { color: var(--blue); text-decoration: none; }
.lk-accordion .card-body { padding: 4px 16px 14px; font-size: 13px; color: var(--text-2); }
.lk-accordion ol { padding-left: 18px; margin: 0; }
.lk-accordion ol li { margin-bottom: 4px; }
.lk-drop { border: 2px dashed var(--border); border-radius: var(--radius); padding: 28px 16px; text-align: center; color: var(--muted); cursor: pointer; transition: all .15s; background: var(--bg-2); position: relative; }
.lk-drop:hover, .lk-drop.drag { border-color: var(--blue); background: var(--blue-light); color: var(--blue); }
.lk-drop i { font-size: 28px; margin-bottom: 8px; display: block; }
.lk-drop input { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.lk-drop img.preview { max-height: 240px; border-radius: 8px; box-shadow: var(--shadow); margin-top: 10px; }
.lk-timeline { list-style: none; padding: 0; margin: 0; }
.lk-timeline li { display: flex; gap: 14px; padding-bottom: 22px; position: relative; }
.lk-timeline li::before { content: ""; position: absolute; left: 13px; top: 28px; bottom: 0; width: 2px; background: var(--border); }
.lk-timeline li:last-child::before { display: none; }
.lk-timeline .dot { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--border); background: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--muted); font-size: 12px; z-index: 1; }
.lk-timeline li.done .dot { border-color: var(--green); background: var(--green); color: #fff; }
.lk-timeline li.now .dot { border-color: var(--blue); color: var(--blue); }
.lk-timeline li.fail .dot { border-color: var(--red); background: var(--red); color: #fff; }
.lk-timeline .t { font-weight: 600; font-size: 14px; }
.lk-timeline .s { font-size: 12px; color: var(--muted); }
.lk-eticket { border: 1px solid var(--border); border-radius: 16px; overflow: hidden; background: #fff; }
.lk-eticket .top { background: var(--navy); color: #fff; padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; }
.lk-eticket .top .brand { font-weight: 700; font-size: 16px; }
.lk-eticket .top .tag { background: rgba(255,255,255,.2); border-radius: 999px; padding: 4px 10px; font-size: 11px; font-weight: 600; }
.lk-eticket .mid { padding: 20px; display: flex; gap: 20px; align-items: center; }
.lk-eticket .qr { width: 120px; height: 120px; flex-shrink: 0; background: #fff; padding: 6px; border: 1px solid var(--border); border-radius: 10px; }
.lk-eticket .qr img, .lk-eticket .qr canvas { width: 100%; height: 100%; }
.lk-eticket .kv { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.lk-eticket .kv .k { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.lk-eticket .kv .v { font-weight: 600; font-size: 14px; }
.lk-eticket .no { font-family: "SFMono-Regular", Menlo, Consolas, monospace; font-size: 16px; font-weight: 700; color: var(--blue); letter-spacing: .06em; }
.lk-eticket .bottom { border-top: 1px dashed var(--border); padding: 12px 20px; font-size: 12px; color: var(--muted); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }

/* ---------- Akun ---------- */
.lk-akun-side { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.lk-akun-side .who { padding: 18px; border-bottom: 1px solid var(--border); display: flex; gap: 12px; align-items: center; }
.lk-akun-side .who .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.lk-akun-side .who .avatar img { width: 100%; height: 100%; object-fit: cover; }
.lk-akun-side .who .n { font-weight: 600; }
.lk-akun-side .who small { color: var(--muted); display: block; }
.lk-akun-side nav a { display: flex; align-items: center; gap: 10px; padding: 12px 18px; color: var(--text-2); font-weight: 500; font-size: 14px; border-left: 3px solid transparent; }
.lk-akun-side nav a i { width: 18px; color: var(--muted); }
.lk-akun-side nav a:hover, .lk-akun-side nav a.active { background: var(--blue-light); color: var(--blue); border-left-color: var(--blue); }
.lk-akun-side nav a.active i { color: var(--blue); }
.lk-stat { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; display: flex; align-items: center; gap: 14px; }
.lk-stat .ico { width: 42px; height: 42px; border-radius: 12px; background: var(--blue-light); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.lk-stat .num { font-size: 22px; font-weight: 700; line-height: 1; }
.lk-stat .lbl { font-size: 12px; color: var(--muted); }
.lk-table { width: 100%; font-size: 13px; }
.lk-table th { font-size: 11px; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); font-weight: 600; border-bottom: 1px solid var(--border); padding: 10px 12px; }
.lk-table td { padding: 12px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.lk-table tr:last-child td { border-bottom: 0; }
.lk-table .mono { font-family: "SFMono-Regular", Menlo, Consolas, monospace; font-weight: 600; }
/* kartu di area akun (pakai border & body) */
.lk-card.boxed { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.lk-card.boxed .thumb { border-radius: 0; margin-bottom: 0; aspect-ratio: 16 / 9; }
.lk-card.boxed .body { padding: 12px 14px 14px; }
.lk-card.boxed .title { white-space: normal; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; min-height: 42px; }
.lk-card.boxed .date { font-size: 12px; color: var(--muted); }

/* ---------- Auth ---------- */
.lk-auth { max-width: 440px; margin: 40px auto; }
.lk-auth .lk-box { padding: 32px; }
.lk-auth h1 { font-size: 24px; margin-bottom: 6px; }
.lk-auth .sub { color: var(--text-2); margin-bottom: 22px; }
.lk-auth .alt { text-align: center; margin-top: 18px; font-size: 14px; color: var(--text-2); }

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
  .lk-navlink span.lbl { display: none; }
}
@media (max-width: 991px) {
  .lk-grid-4, .lk-scroller { grid-template-columns: repeat(3, 1fr); }
  .lk-grid-3, .lk-scroller.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .lk-e2g { grid-template-columns: 1fr; }
  .lk-e2g .promo { aspect-ratio: 16 / 7; }
  .lk-hero .art { display: none; }
  .lk-cta, .lk-promo { flex-direction: column; align-items: flex-start; padding: 28px; }
  .lk-side { position: static; }
}
@media (max-width: 767px) {
  .lk-nav .inner { height: 60px; gap: 10px; }
  .lk-nav .inner .lk-search, .lk-nav .lk-menu, .lk-nav .inner .lk-navlink { display: none; }
  .lk-search-m { display: block; }
  .lk-burger { display: inline-flex; align-items: center; justify-content: center; }
  .lk-grid-4, .lk-grid-3, .lk-scroller { display: flex; overflow-x: auto; gap: 14px; padding-bottom: 8px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .lk-grid-4::-webkit-scrollbar, .lk-grid-3::-webkit-scrollbar, .lk-scroller::-webkit-scrollbar { display: none; }
  .lk-grid-4 > *, .lk-grid-3 > *, .lk-scroller > * { flex: 0 0 80%; scroll-snap-align: start; }
  .lk-hero .carousel-item { height: 240px; }
  .lk-hero .txt h2 { font-size: 20px; }
  .lk-hero .txt .meta { font-size: 13px; }
  .lk-hero .txt .kicker { display: none; }
  .lk-hero .pill { display: none; }
  .lk-hero-pill-m { display: block; }
  .lk-hero .carousel-indicators { justify-content: center; padding-left: 0; bottom: 10px; }
  .lk-cats { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; }
  .lk-cat { flex: 0 0 76px; }
  .lk-list .row-ev { flex-wrap: wrap; align-items: flex-start; }
  .lk-list .pic { order: 2; flex: 1 0 calc(100% - 64px); height: auto; aspect-ratio: 16 / 7; }
  .lk-list .info { order: 3; flex: 1 0 calc(100% - 64px); margin-left: 64px; }
  .lk-list .lk-date { order: 1; }
  .lk-stats { grid-template-columns: 1fr; padding: 18px; }
  .lk-steps .ln { width: 24px; }
  .lk-steps .st span.lbl { display: none; }
  .lk-eticket .mid { flex-direction: column; align-items: flex-start; }
  .lk-detail-title { font-size: 20px; }
}

/* ---------- Auth 2 panel (masuk / daftar) ---------- */
.lk-authwrap { padding: 40px 0 56px; background: var(--bg-2); }
.lk-auth2 { max-width: 980px; margin: 0 auto; display: grid; grid-template-columns: 5fr 6fr; background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: 0 16px 48px rgba(21,41,85,.08); }
.lk-auth2 .side { background: var(--navy-dark); color: #fff; padding: 40px 36px; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.lk-auth2 .side::before { content: ""; position: absolute; right: -90px; bottom: -120px; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,.05); }
.lk-auth2 .side .brand { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 18px; margin-bottom: 36px; }
.lk-auth2 .side .brand .mark { width: 30px; height: 30px; border-radius: 8px; background: var(--blue); display: inline-flex; align-items: center; justify-content: center; font-size: 14px; }
.lk-auth2 .side h2 { color: #fff; font-size: 24px; font-weight: 700; line-height: 1.3; margin-bottom: 28px; }
.lk-auth2 .side ul, .lk-auth2 .side ol { list-style: none; padding: 0; margin: 0; }
.lk-auth2 .side li { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; font-size: 14px; }
.lk-auth2 .side li i { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #9ec1ff; }
.lk-auth2 .side li b { display: block; font-weight: 600; }
.lk-auth2 .side li span { color: rgba(255,255,255,.7); font-size: 13px; }
.lk-auth2 .side ol.steps { counter-reset: s; }
.lk-auth2 .side ol.steps li::before { counter-increment: s; content: counter(s); width: 30px; height: 30px; border-radius: 50%; background: var(--blue); color: #fff; font-weight: 700; font-size: 13px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lk-auth2 .side ol.steps li { flex-direction: row; align-items: flex-start; }
.lk-auth2 .side ol.steps li b { display: block; }
.lk-auth2 .side ol.steps li span { display: block; color: rgba(255,255,255,.7); font-size: 13px; }
.lk-auth2 .side .foot { margin-top: auto; padding-top: 28px; font-size: 12px; color: rgba(255,255,255,.55); position: relative; }
.lk-auth2 .formside { padding: 40px 40px 32px; }
.lk-auth2 h1 { font-size: 26px; font-weight: 700; margin-bottom: 6px; }
.lk-auth2 .sub { color: var(--text-2); margin-bottom: 22px; font-size: 14px; }
.lk-auth2 .alt { text-align: center; margin-top: 18px; font-size: 14px; color: var(--text-2); }
.lk-auth2 .alt a { font-weight: 600; }
.lk-input-ico { position: relative; }
.lk-input-ico > i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted-2); font-size: 15px; pointer-events: none; }
.lk-input-ico .form-control { padding-left: 42px; }
.lk-input-ico .eye { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); border: 0; background: transparent; color: var(--muted); width: 32px; height: 32px; border-radius: 6px; }
.lk-input-ico .eye:hover { background: var(--bg); color: var(--blue); }
@media (max-width: 767px) {
  .lk-authwrap { padding: 16px 0 32px; }
  .lk-auth2 { grid-template-columns: 1fr; border-radius: 12px; }
  .lk-auth2 .side { padding: 24px; }
  .lk-auth2 .side h2 { font-size: 19px; margin-bottom: 16px; }
  .lk-auth2 .side li { margin-bottom: 12px; }
  .lk-auth2 .side .foot { display: none; }
  .lk-auth2 .formside { padding: 24px 20px; }
}
.lk-auth2 .side ol.steps li { display: grid; grid-template-columns: 30px 1fr; column-gap: 14px; row-gap: 2px; align-items: start; }
.lk-auth2 .side ol.steps li::before { grid-row: 1 / span 2; }
.lk-auth2 .side ol.steps li b, .lk-auth2 .side ol.steps li span { grid-column: 2; }
