/* ============================================================================
   LiKO GNF — Landing page styles
   Mobile-first; full-width responsive on desktop (>=600px) via .lk-landing-mode
   ============================================================================ */

/* ── Landing-mode breaks the phone canvas constraints on desktop ── */
.lk-landing-mode .lk-app {
  max-width: 100% !important;
  height: auto !important;
  min-height: 100dvh;
  overflow: visible !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.lk-landing-mode html,
.lk-landing-mode body {
  overflow: auto !important;
  height: auto !important;
}
.lk-landing-mode body { padding: 0 !important; background: #fff !important; }
.lk-landing-mode #tabbar { display: none !important; }
.lk-landing-mode #lk-lang-btn { top: 14px; right: 14px; }

.lk-l-root { padding-bottom: 0 !important; }
.lk-l-root > * { width: 100%; }

/* Container */
.lk-l-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 1000px) {
  .lk-l-container { padding: 0 32px; }
}

/* ── Top nav ── */
.lk-l-topnav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--ink-100);
}
.lk-l-topnav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 60px; gap: 16px;
}
.lk-l-brand {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--ink-900);
  font-weight: 800; font-size: 18px; letter-spacing: -0.02em;
}
.lk-l-brand-mark {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, var(--gnf-blue-600), var(--gnf-blue-500));
  color: white; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px;
}
.lk-l-topnav-links { display: none; gap: 22px; flex: 1; justify-content: center; }
.lk-l-topnav-links a { color: var(--ink-700); font-weight: 600; font-size: 14px; }
.lk-l-topnav-links a:hover { color: var(--gnf-blue-600); }
.lk-l-topnav-cta { display: flex; gap: 6px; }
@media (min-width: 800px) {
  .lk-l-topnav-links { display: flex; }
}

/* ── Hero ── */
.lk-l-hero {
  background: linear-gradient(135deg, #2c5fd9 0%, #3a64d2 50%, #4f7be0 100%);
  color: white;
  padding: 48px 0 64px;
  position: relative; overflow: hidden;
}
.lk-l-hero::before {
  content: ''; position: absolute; right: -100px; top: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.08); pointer-events: none;
}
.lk-l-hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: grid; grid-template-columns: 1fr; gap: 24px;
  align-items: center; position: relative;
}
@media (min-width: 900px) {
  .lk-l-hero { padding: 80px 0 96px; }
  .lk-l-hero-inner { grid-template-columns: 1.1fr 1fr; gap: 48px; }
}
.lk-l-pill {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 18px;
}
.lk-l-hero h1 {
  font-size: 32px; line-height: 1.15; font-weight: 800;
  margin: 0 0 6px; letter-spacing: -0.03em;
}
@media (min-width: 700px) { .lk-l-hero h1 { font-size: 44px; } }
@media (min-width: 1000px) { .lk-l-hero h1 { font-size: 52px; } }
.lk-l-hero-sub {
  font-size: 15px; line-height: 1.55; opacity: 0.9;
  margin: 18px 0 28px; max-width: 580px;
}
@media (min-width: 700px) { .lk-l-hero-sub { font-size: 17px; } }
.lk-l-hero-ctas { display: flex; flex-wrap: wrap; gap: 10px; }
.lk-l-cta-primary {
  background: #ffd54a !important;
  color: #2c2010 !important;
  font-weight: 700;
  padding: 16px 28px; font-size: 16px; border-radius: 14px;
  box-shadow: 0 4px 20px rgba(255, 213, 74, 0.5);
}
.lk-l-cta-secondary {
  background: rgba(255,255,255,0.95) !important;
  color: var(--gnf-blue-700) !important;
  border: none !important;
  padding: 16px 28px; font-size: 16px;
}
.lk-l-hero-trust {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-top: 28px; font-size: 13px; opacity: 0.92;
}
.lk-l-hero-img {
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  aspect-ratio: 4/3;
}
.lk-l-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Section base ── */
.lk-l-section { padding: 56px 0; }
@media (min-width: 900px) { .lk-l-section { padding: 80px 0; } }
.lk-l-section-head { text-align: center; margin-bottom: 36px; }
.lk-l-section-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--gnf-blue-600); text-transform: uppercase;
  background: var(--gnf-blue-50); padding: 5px 14px; border-radius: 999px;
  margin-bottom: 10px;
}
.lk-l-section h2 {
  font-size: 26px; font-weight: 800; letter-spacing: -0.02em;
  color: var(--ink-900); margin: 0 0 12px;
}
@media (min-width: 700px) { .lk-l-section h2 { font-size: 34px; } }
.lk-l-section-desc {
  font-size: 15px; color: var(--ink-500); line-height: 1.6;
  max-width: 640px; margin: 0 auto;
}

/* ── Stats ── */
.lk-l-stats { background: var(--bg-soft); padding: 36px 0; }
.lk-l-stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (min-width: 700px) { .lk-l-stats-grid { grid-template-columns: repeat(6, 1fr); } }
.lk-l-stat { text-align: center; }
.lk-l-stat-num {
  font-size: 28px; font-weight: 800; color: var(--gnf-blue-600);
  letter-spacing: -0.02em; line-height: 1;
}
@media (min-width: 700px) { .lk-l-stat-num { font-size: 36px; } }
.lk-l-stat-lbl { font-size: 12px; color: var(--ink-500); margin-top: 6px; font-weight: 500; }

/* ── Grid layouts ── */
.lk-l-grid { display: grid; gap: 16px; }
.lk-l-grid-2 { grid-template-columns: 1fr; }
.lk-l-grid-3 { grid-template-columns: 1fr; }
.lk-l-grid-4 { grid-template-columns: 1fr 1fr; }
.lk-l-grid-5 { grid-template-columns: 1fr 1fr; }
.lk-l-grid-tight { gap: 12px; }
@media (min-width: 700px) {
  .lk-l-grid-2 { grid-template-columns: 1fr 1fr; }
  .lk-l-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
  .lk-l-grid-4 { grid-template-columns: repeat(4, 1fr); }
  .lk-l-grid-5 { grid-template-columns: repeat(5, 1fr); }
}

/* ── Feature cards ── */
.lk-l-feat-card {
  display: block;
  background: white;
  border: 1px solid var(--ink-100);
  border-radius: 18px;
  padding: 28px 24px;
  text-decoration: none; color: var(--ink-900);
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.lk-l-feat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(20,20,30,0.06);
  border-color: var(--gnf-blue-200);
}
.lk-l-feat-icon {
  width: 56px; height: 56px;
  background: var(--gnf-blue-50);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 16px;
}
.lk-l-feat-card h3 { font-size: 18px; font-weight: 700; margin: 0 0 8px; letter-spacing: -0.01em; }
.lk-l-feat-card p { font-size: 14px; line-height: 1.55; color: var(--ink-500); margin: 0 0 14px; }
.lk-l-feat-arrow { font-size: 13px; color: var(--gnf-blue-600); font-weight: 700; }

/* ── Process steps ── */
.lk-l-process { background: var(--bg-soft); }
.lk-l-step {
  background: white; border: 1px solid var(--ink-100);
  border-radius: 16px; padding: 24px;
  position: relative;
}
.lk-l-step-num {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gnf-blue-500); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px;
}
.lk-l-step h3 { font-size: 16px; margin: 0 0 8px; padding-right: 48px; }
.lk-l-step p { font-size: 13px; line-height: 1.55; color: var(--ink-500); margin: 0; }

/* ── Visa lifecycle (mobile vertical, desktop horizontal) ── */
.lk-l-lifecycle { background: linear-gradient(180deg, white 0%, oklch(0.97 0.02 245) 100%); }
.lk-l-intake {
  display: inline-block;
  background: var(--gnf-amber-bg);
  color: oklch(0.45 0.14 75);
  padding: 6px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 700;
  margin: 6px 0 14px;
}
.lk-l-tl-rail {
  display: flex; flex-direction: column; gap: 16px;
  max-width: 1100px; margin: 0 auto;
  position: relative;
}
.lk-l-stage-v {
  background: white; border: 2px solid var(--ink-100);
  border-radius: 18px; padding: 18px 20px;
  display: grid; grid-template-columns: 110px 1fr; gap: 16px; align-items: center;
}
.lk-l-stage-v.orange { border-color: oklch(0.85 0.12 40); background: oklch(0.97 0.04 40); }
.lk-l-stage-v.green  { border-color: oklch(0.78 0.14 155); background: oklch(0.96 0.04 155); }
.lk-l-stage-circle {
  width: 100px; height: 100px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 8px;
}
.lk-l-stage-v.orange .lk-l-stage-circle { background: oklch(0.78 0.14 40); color: white; }
.lk-l-stage-v.green  .lk-l-stage-circle { background: oklch(0.62 0.14 155); color: white; }
.lk-l-stage-code-2 { font-size: 14px; font-weight: 800; line-height: 1.1; }
.lk-l-stage-label { font-size: 11px; opacity: 0.95; margin-top: 4px; line-height: 1.2; }
.lk-l-stage-track { display: flex; flex-direction: column; gap: 6px; }
.lk-l-stage-anchor { font-size: 16px; font-weight: 700; color: var(--ink-900); }
.lk-l-stage-period-pill {
  display: inline-block; background: oklch(0.62 0.14 155); color: white;
  padding: 4px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 700; align-self: flex-start;
}
.lk-l-stage-v.orange .lk-l-stage-period-pill { background: oklch(0.65 0.14 40); }
.lk-l-stage-outcome {
  grid-column: 1 / -1;
  font-size: 13px; color: var(--ink-700);
  padding-top: 10px; border-top: 1px dashed var(--ink-200);
  line-height: 1.55;
}
@media (min-width: 900px) {
  .lk-l-tl-rail {
    flex-direction: row; gap: 8px;
    align-items: stretch;
  }
  .lk-l-stage-v {
    flex: 1; grid-template-columns: 1fr; text-align: center; padding: 22px 14px;
  }
  .lk-l-stage-circle {
    margin: 0 auto 12px; width: 110px; height: 110px;
  }
  .lk-l-stage-track { align-items: center; }
}

/* ── Notarization timeline ── */
.lk-l-notar { background: white; }
.lk-l-timeline {
  display: flex; flex-direction: column; gap: 0;
  max-width: 800px; margin: 0 auto;
  position: relative;
}
.lk-l-timeline::before {
  content: ''; position: absolute;
  top: 24px; bottom: 24px; left: 28px;
  width: 2px; background: var(--ink-200);
}
.lk-l-tl-item {
  display: grid; grid-template-columns: 60px 1fr; gap: 14px;
  padding: 16px 0; position: relative;
}
.lk-l-tl-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gnf-blue-50); border: 2px solid var(--gnf-blue-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; z-index: 1; position: relative;
}
.lk-l-tl-step { font-size: 11px; color: var(--gnf-blue-600); font-weight: 800; letter-spacing: 0.1em; }
.lk-l-tl-title { font-size: 17px; font-weight: 700; margin: 4px 0; color: var(--ink-900); }
.lk-l-tl-desc { font-size: 14px; color: var(--ink-500); line-height: 1.55; }
.lk-l-notar-note {
  margin-top: 28px; padding: 16px 20px;
  background: var(--gnf-amber-bg); border-radius: 12px;
  font-weight: 700; font-size: 14px; color: oklch(0.45 0.14 75);
  text-align: center;
}

/* ── Compare table ── */
.lk-l-compare { background: var(--bg-soft); }
.lk-l-compare-table {
  background: white; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--ink-100);
  max-width: 900px; margin: 0 auto;
  font-size: 13px;
}
.lk-l-compare-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--ink-100);
}
.lk-l-compare-row:last-child { border-bottom: none; }
.lk-l-compare-head { background: var(--ink-50); font-weight: 700; }
.lk-l-compare-feature { padding: 14px 18px; color: var(--ink-700); }
.lk-l-compare-cell {
  padding: 14px; text-align: center; border-left: 1px solid var(--ink-100);
  font-weight: 600;
}
.lk-l-compare-cell.highlight { background: var(--gnf-blue-50); color: var(--gnf-blue-700); }
.lk-l-compare-cell.ok { color: var(--gnf-green); font-size: 18px; }
.lk-l-compare-note { text-align: center; margin-top: 16px; font-size: 12px; color: var(--ink-500); }

/* ── Visa guide cards ── */
.lk-l-visa { background: white; }
.lk-l-guide-card {
  display: block; text-decoration: none; color: var(--ink-900);
  background: white; border: 1px solid var(--ink-100); border-radius: 16px;
  overflow: hidden; transition: transform .15s, box-shadow .15s;
}
.lk-l-guide-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(20,20,30,0.08); }
.lk-l-guide-cover {
  height: 160px; background-size: cover; background-position: center;
}
.lk-l-guide-body { padding: 18px; }
.lk-l-guide-title { font-size: 16px; font-weight: 700; margin: 8px 0 6px; line-height: 1.4; }
.lk-l-guide-meta { font-size: 12px; color: var(--ink-500); }

/* ── Partners ── */
.lk-l-partners { background: var(--bg-soft); }
.lk-l-subhead { font-size: 14px; font-weight: 700; color: var(--ink-700); margin-bottom: 14px; text-align: center; }
.lk-l-partner {
  background: white; border: 1px solid var(--ink-100); border-radius: 14px;
  padding: 14px 8px; text-align: center; text-decoration: none; color: var(--ink-900);
  transition: transform .15s, border-color .15s;
}
.lk-l-partner:hover { transform: translateY(-2px); border-color: var(--gnf-blue-200); }
.lk-l-partner-logo {
  width: 56px; height: 56px; border-radius: 12px; margin: 0 auto 8px;
  background-size: cover; background-position: center;
  background-color: var(--ink-100);
}
.lk-l-partner-name { font-weight: 700; font-size: 13px; color: var(--ink-900); line-height: 1.3; }
.lk-l-partner-region { font-size: 11px; color: var(--ink-500); margin-top: 2px; }

/* ── Testimonials ── */
.lk-l-testimonials { background: white; }
.lk-l-testimonial {
  background: var(--bg-soft); border-radius: 16px; padding: 24px;
  position: relative;
}
.lk-l-quote {
  font-size: 60px; line-height: 1; color: var(--gnf-blue-200);
  font-family: Georgia, serif; position: absolute; top: 16px; right: 20px; font-weight: 700;
}
.lk-l-test-text { font-size: 14px; line-height: 1.6; color: var(--ink-700); margin: 0 0 18px; }
.lk-l-test-foot { display: flex; align-items: center; gap: 12px; }
.lk-l-test-foot .lk-avatar { width: 44px; height: 44px; }
.lk-l-test-outcome {
  margin-top: 14px; padding: 8px 12px;
  background: var(--gnf-green-bg); color: var(--gnf-green);
  border-radius: 8px; font-size: 12px; font-weight: 700; display: inline-block;
}

/* ── Big CTA ── */
.lk-l-cta-section {
  background: linear-gradient(135deg, var(--gnf-blue-700), var(--gnf-blue-500));
  color: white; padding: 64px 0;
}
.lk-l-cta-inner { text-align: center; }
.lk-l-cta-section h2 { color: white; font-size: 28px; }
@media (min-width: 700px) { .lk-l-cta-section h2 { font-size: 36px; } }
.lk-l-cta-section p { color: rgba(255,255,255,0.9); font-size: 15px; margin: 12px 0 28px; }
.lk-l-cta-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ── Visa one-stop pipeline ── */
.lk-l-onestop { background: linear-gradient(180deg, oklch(0.97 0.02 245), white); }
.lk-l-onestop-pipeline {
  display: grid; grid-template-columns: 1fr; gap: 14px;
  position: relative;
}
@media (min-width: 900px) {
  .lk-l-onestop-pipeline { grid-template-columns: repeat(5, 1fr); gap: 8px; }
}
.lk-l-onestop-step {
  background: white; border: 2px solid var(--gnf-blue-200);
  border-radius: 16px; padding: 22px 18px;
  position: relative; text-align: center;
  transition: transform .15s, box-shadow .15s;
}
.lk-l-onestop-step:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(58,100,210,0.15); }
.lk-l-onestop-num { font-size: 36px; margin-bottom: 8px; }
.lk-l-onestop-step-num {
  display: inline-block; background: var(--gnf-blue-500); color: white;
  padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.05em; margin-bottom: 10px;
}
.lk-l-onestop-step h3 { font-size: 15px; margin: 0 0 8px; line-height: 1.35; }
.lk-l-onestop-step p { font-size: 12.5px; color: var(--ink-500); margin: 0; line-height: 1.55; }
.lk-l-onestop-arrow {
  display: none; position: absolute; right: -16px; top: 50%;
  transform: translateY(-50%); font-size: 24px; color: var(--gnf-blue-300); z-index: 1;
}
@media (min-width: 900px) { .lk-l-onestop-arrow { display: block; } }
.lk-l-onestop-cta { text-align: center; margin-top: 32px; }

/* ── Expert network ── */
.lk-l-network { background: white; }
.lk-l-net-card {
  background: white; border: 1px solid var(--ink-100); border-radius: 16px;
  padding: 24px; text-align: center;
  transition: transform .15s, border-color .15s;
}
.lk-l-net-card:hover { transform: translateY(-2px); border-color: var(--gnf-blue-300); }
.lk-l-net-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gnf-blue-100), var(--gnf-blue-50));
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 10px;
}
.lk-l-net-num { font-size: 36px; font-weight: 800; color: var(--gnf-blue-600); letter-spacing: -0.02em; }
.lk-l-net-label { font-size: 13px; font-weight: 700; color: var(--ink-900); margin-bottom: 8px; }
.lk-l-net-desc { font-size: 12px; color: var(--ink-500); line-height: 1.55; margin: 0; }

/* ── Footer ── */
.lk-l-footer {
  background: oklch(0.18 0.02 250); color: rgba(255,255,255,0.85);
  padding: 48px 0 24px;
}
.lk-l-footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (min-width: 700px) {
  .lk-l-footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}
.lk-l-footer h4 {
  font-size: 13px; font-weight: 700; color: white;
  margin: 0 0 12px; text-transform: uppercase; letter-spacing: 0.05em;
}
.lk-l-footer ul { list-style: none; padding: 0; margin: 0; }
.lk-l-footer li { margin-bottom: 8px; }
.lk-l-footer a { color: rgba(255,255,255,0.7); font-size: 14px; transition: color .15s; }
.lk-l-footer a:hover { color: white; }
.lk-l-foot-brand { font-size: 22px; font-weight: 800; color: white; margin-bottom: 8px; letter-spacing: -0.02em; }
.lk-l-foot-desc { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.65); }
.lk-l-foot-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.5);
  flex-wrap: wrap; gap: 8px;
}
