/* ============================================================
   LicenTra — Premium Landing Page
   Matches the admin Premium UX design system (dist/css/premium.css)
   ============================================================ */

/* ----- Theme Variables (mirrors premium.css) ----- */
:root {
  --bg-primary: #f5f6fa;
  --bg-secondary: #ffffff;
  --bg-tertiary: #eef0f6;
  --text-primary: #2d3436;
  --text-secondary: #4a5568;
  --text-muted: #8a94a6;
  --border: #e6e8ef;
  --border-light: #eceef3;
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.06);
  --shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.14);
  --accent: #6c5ce7;
  --accent-light: #a29bfe;
  --accent-dark: #5a4bd1;
  --accent-bg: #f1eefe;
  --accent-border: #6c5ce7;
  --success: #00b894;
  --info: #0984e3;
  --warning: #e17055;
  --danger: #d63031;
  --radius: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --transition: 0.2s ease;
  --transition-slow: 0.3s ease;
  --gradient-accent: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
  --gradient-blue: linear-gradient(135deg, #0984e3 0%, #74b9ff 100%);
  --gradient-green: linear-gradient(135deg, #00b894 0%, #55efc4 100%);
  --gradient-orange: linear-gradient(135deg, #e17055 0%, #fab1a0 100%);
}

[data-theme="dark"] {
  --bg-primary: #1a1a2e;
  --bg-secondary: #16213e;
  --bg-tertiary: #1f2942;
  --text-primary: #f0e6d3;
  --text-secondary: #c0b8a0;
  --text-muted: #8b93a7;
  --border: #334155;
  --border-light: #2a3550;
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.35);
  --shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.5);
  --accent-bg: #2a1f4a;
  --accent-border: #a29bfe;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

/* ========================================================== */
/*  Scrollbar — matched to the admin panel (premium.css)       */
/* ========================================================== */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg-tertiary); }
::-webkit-scrollbar-thumb { background: #c0c5d0; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* Firefox */
* { scrollbar-width: thin; scrollbar-color: #c0c5d0 var(--bg-tertiary); }
*:hover { scrollbar-color: var(--accent) var(--bg-tertiary); }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background var(--transition-slow), color var(--transition-slow);
}

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-dark); }
img { max-width: 100%; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }

/* ========================================================== */
/*  Navbar                                                     */
/* ========================================================== */
.landing-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  transition: background var(--transition-slow), border-color var(--transition-slow);
}
.landing-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.landing-nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary) !important;
  white-space: nowrap;
}
.landing-nav-brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: var(--gradient-accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(108, 92, 231, 0.35);
}
.landing-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.landing-nav-links a {
  display: block;
  padding: 8px 14px;
  border-radius: var(--radius);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
}
.landing-nav-links a:hover { background: var(--accent-bg); color: var(--accent); }
.landing-nav-actions { display: flex; align-items: center; gap: 10px; }

.landing-theme-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-xs);
}
.landing-theme-btn:hover { border-color: var(--accent); background: var(--accent-bg); color: var(--accent); box-shadow: var(--shadow); transform: translateY(-1px); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-xs);
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--gradient-accent); color: #fff !important; box-shadow: 0 6px 16px rgba(108, 92, 231, 0.3); }
.btn-primary:hover { box-shadow: 0 10px 24px rgba(108, 92, 231, 0.4); transform: translateY(-2px); color: #fff !important; }
.btn-ghost { background: transparent; color: var(--text-secondary); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-bg); }
.btn-white { background: #fff; color: var(--accent-dark) !important; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18); }
.btn-white:hover { transform: translateY(-2px); color: var(--accent-dark) !important; box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24); }

.landing-nav-burger { display: none; }

/* Mobile nav drawer */
.landing-nav-mobile {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
  padding: 12px 24px 18px;
}
.landing-nav-mobile.open { display: block; }
.landing-nav-mobile a {
  display: block;
  padding: 12px 14px;
  border-radius: var(--radius);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 15px;
}
.landing-nav-mobile a:hover { background: var(--accent-bg); color: var(--accent); }
.landing-nav-mobile .btn { width: 100%; margin-top: 8px; }

/* ========================================================== */
/*  Hero                                                       */
/* ========================================================== */
.landing-hero {
  position: relative;
  padding: 88px 0 72px;
  overflow: hidden;
}
.landing-hero::before,
.landing-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.landing-hero::before {
  width: 480px;
  height: 480px;
  background: rgba(108, 92, 231, 0.16);
  top: -160px;
  right: -120px;
}
.landing-hero::after {
  width: 420px;
  height: 420px;
  background: rgba(9, 132, 227, 0.10);
  bottom: -180px;
  left: -140px;
}
.landing-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.landing-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
}
[data-theme="dark"] .landing-hero-badge { color: var(--accent-light); }
.landing-hero-badge i { font-size: 12px; }

.landing-hero h1 {
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 22px;
}
.landing-hero h1 .gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.landing-hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 34px;
}
.landing-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.landing-hero-points {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  list-style: none;
}
.landing-hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
}
.landing-hero-points i { color: var(--success); font-size: 15px; }

/* ========================================================== */
/*  Dashboard mockup                                          */
/* ========================================================== */
.landing-mockup {
  position: relative;
}
.landing-mockup-window {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: background var(--transition-slow), border-color var(--transition-slow);
}
.landing-mockup-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
}
.landing-mockup-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.landing-mockup-bar .dot-red { background: #ff5f57; }
.landing-mockup-bar .dot-yellow { background: #febc2e; }
.landing-mockup-bar .dot-green { background: #28c840; }
.landing-mockup-bar .url {
  flex: 1;
  margin-left: 10px;
  background: var(--bg-tertiary);
  color: var(--text-muted);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.landing-mockup-body { padding: 20px; }
.landing-mockup-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.landing-mockup-stat {
  background: var(--bg-tertiary);
  border-radius: var(--radius);
  padding: 14px 12px;
}
.landing-mockup-stat .val {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}
.landing-mockup-stat .lbl { font-size: 11px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.landing-mockup-stat.purple .val { color: var(--accent); }
.landing-mockup-stat.blue .val { color: var(--info); }
.landing-mockup-stat.green .val { color: var(--success); }
.landing-mockup-stat.orange .val { color: var(--warning); }

.landing-mockup-chart {
  background: var(--bg-tertiary);
  border-radius: var(--radius-lg);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.landing-mockup-chart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.landing-mockup-chart-head .t { font-size: 14px; font-weight: 700; }
.landing-mockup-chart-head .s { font-size: 12px; font-weight: 600; color: var(--text-muted); }
.landing-mockup-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  height: 110px;
}
.landing-mockup-bars .bar {
  flex: 1;
  border-radius: 6px 6px 3px 3px;
  background: var(--gradient-accent);
  opacity: 0.85;
  transition: opacity var(--transition);
  min-width: 10px;
}
.landing-mockup-bars .bar:hover { opacity: 1; }
.landing-mockup-bars .bar.alt { background: var(--gradient-blue); }
.landing-mockup-bars .bar.dim { opacity: 0.3; }

.landing-mockup-float {
  position: absolute;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}
.landing-mockup-float .ic {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.landing-mockup-float .ic.grn { background: var(--success); }
.landing-mockup-float .ic.org { background: var(--warning); }
.landing-mockup-float small { display: block; font-size: 11px; font-weight: 600; color: var(--text-muted); }
.landing-mockup-float.tl { top: -22px; left: -26px; animation: floatY 6s ease-in-out infinite; }
.landing-mockup-float.br { bottom: -20px; right: -14px; animation: floatY 6s ease-in-out 3s infinite; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ========================================================== */
/*  Logos strip                                                */
/* ========================================================== */
.landing-strip {
  padding: 26px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
}
.landing-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.landing-strip .note {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.landing-strip .items { display: flex; align-items: center; gap: 34px; flex-wrap: wrap; }
.landing-strip .items span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-secondary);
  opacity: 0.8;
  white-space: nowrap;
}
.landing-strip .items i { font-size: 17px; color: var(--accent-light); }

/* ========================================================== */
/*  Section headings                                          */
/* ========================================================== */
.landing-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.landing-section-head .kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 14px;
}
.landing-section-head .kicker::before,
.landing-section-head .kicker::after {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 2px;
}
.landing-section-head h2 {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.landing-section-head p { color: var(--text-secondary); font-size: 16px; }

/* ========================================================== */
/*  Features                                                   */
/* ========================================================== */
.landing-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.landing-feature-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.landing-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-border);
}
.landing-feature-card .ic {
  width: 56px;
  height: 56px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 8px 18px rgba(108, 92, 231, 0.28);
}
.landing-feature-card .ic.purple { background: var(--gradient-accent); }
.landing-feature-card .ic.blue { background: var(--gradient-blue); box-shadow: 0 8px 18px rgba(9, 132, 227, 0.25); }
.landing-feature-card .ic.green { background: var(--gradient-green); box-shadow: 0 8px 18px rgba(0, 184, 148, 0.25); }
.landing-feature-card .ic.orange { background: var(--gradient-orange); box-shadow: 0 8px 18px rgba(225, 112, 85, 0.25); }
.landing-feature-card h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.landing-feature-card p {
  font-size: 14.5px;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* ========================================================== */
/*  How it works                                               */
/* ========================================================== */
.landing-how-bg { background: var(--bg-secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.landing-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.landing-how-step {
  position: relative;
  text-align: center;
  padding: 34px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  background: var(--bg-primary);
  transition: all var(--transition);
}
.landing-how-step:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.landing-how-step .num {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(108, 92, 231, 0.35);
}
.landing-how-step h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--text-primary); }
.landing-how-step p { font-size: 14.5px; color: var(--text-secondary); margin: 0; }
.landing-how-arrow {
  position: absolute;
  top: 50%;
  right: -20px;
  color: var(--accent-light);
  font-size: 20px;
  transform: translateY(-50%);
  z-index: 2;
}

/* ========================================================== */
/*  Modules / Envato section                                  */
/* ========================================================== */
.landing-modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}
.landing-module-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition);
}
.landing-module-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.landing-module-card .head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.landing-module-card .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--gradient-accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.landing-module-card .badge {
  margin-left: auto;
  background: var(--success-bg, #e6faf5);
  color: var(--success);
  border: 1px solid rgba(0, 184, 148, 0.35);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
[data-theme="dark"] .landing-module-card .badge { background: #0a2a1a; }
.landing-module-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
.landing-module-card p { font-size: 14.5px; color: var(--text-secondary); margin-bottom: 16px; }
.landing-module-list { list-style: none; display: grid; gap: 10px; }
.landing-module-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-secondary); font-weight: 500; }
.landing-module-list i { color: var(--success); font-size: 14px; }

/* ========================================================== */
/*  CTA banner                                                 */
/* ========================================================== */
.landing-cta {
  padding: 96px 0;
}
.landing-cta-box {
  position: relative;
  background: var(--gradient-accent);
  border-radius: 26px;
  padding: 76px 40px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(108, 92, 231, 0.35);
}
.landing-cta-box::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}
.landing-cta-box::after {
  content: "";
  position: absolute;
  bottom: -110px;
  left: -70px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.landing-cta-box h2 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.landing-cta-box p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 32px;
}
.landing-cta-box .actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ========================================================== */
/*  Floating Navigation Widget (same as admin panel)           */
/*  Scroll-to-top / middle / bottom + scroll percentage ring   */
/* ========================================================== */
.floating-nav-widget {
  position: fixed;
  bottom: 12px;
  right: 6px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.nav-btn {
  width: 39px;
  height: 39px;
  border-radius: 11px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.nav-btn:hover { transform: scale(1.1); }
.progress-btn { background: #3d4f5d; }
.top-btn { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.menu-btn { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.bottom-btn { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.nav-btn i { font-size: 13px; color: white; }
.progress-text {
  position: absolute;
  font-size: 8px;
  font-weight: bold;
  color: white;
}
.progress-ring {
  position: absolute;
  transform: rotate(-90deg);
}

/* ========================================================== */
/*  Footer                                                     */
/* ========================================================== */
.landing-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}
.landing-footer-top {
  padding: 52px 0 36px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.landing-footer-brand { display: inline-flex; align-items: center; gap: 10px; font-size: 19px; font-weight: 800; letter-spacing: -0.02em; color: var(--text-primary); margin-bottom: 14px; }
.landing-footer-brand .ic {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--gradient-accent); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.landing-footer-about { font-size: 14px; color: var(--text-secondary); max-width: 320px; margin-bottom: 18px; }
.landing-footer h4 { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-primary); margin-bottom: 16px; }
.landing-footer-links { list-style: none; display: grid; gap: 10px; }
.landing-footer-links a { color: var(--text-secondary); font-size: 14px; font-weight: 500; }
.landing-footer-links a:hover { color: var(--accent); }
.landing-footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.landing-footer-bottom .left { display: flex; align-items: center; gap: 8px; }
.landing-footer-version {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 12px;
}

/* ========================================================== */
/*  Scroll reveal                                             */
/* ========================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========================================================== */
/*  Responsive                                                 */
/* ========================================================== */
@media (max-width: 1024px) {
  .landing-features-grid, .landing-how-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .landing-hero-grid { grid-template-columns: 1fr; gap: 70px; }
  .landing-hero { padding: 64px 0 88px; }
  .landing-mockup { max-width: 560px; margin: 0 auto; }
  .landing-mockup-float.tl { left: -8px; }
  .landing-mockup-float.br { right: -8px; }
}

@media (max-width: 768px) {
  .landing-nav-links { display: none; }
  .landing-nav-burger { display: inline-flex; }
  .landing-nav .landing-nav-signin { display: none; }
  .landing-features-grid, .landing-how-grid, .landing-modules-grid { grid-template-columns: 1fr; }
  .landing-how-arrow { display: none; }
  .landing-footer-top { grid-template-columns: 1fr; gap: 32px; }
  .landing-section-head { margin-bottom: 40px; }
}

@media (max-width: 520px) {
  .landing-mockup-stats { grid-template-columns: repeat(2, 1fr); }
  .landing-hero-actions .btn { flex: 1; }
  .landing-hero-actions .btn-white { order: -1; }
  .landing-cta-box { padding: 56px 24px; }
  .landing-strip .items { gap: 20px; }
}
