﻿/* â”â” LINKORA LANDING v2 â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â” */

/* â”€â”€ NAV â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.l-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: background .3s, box-shadow .3s;
}
.l-nav.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px) saturate(1.8);
  -webkit-backdrop-filter: blur(16px) saturate(1.8);
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
}
.l-nav-brand img {
  height: 34px;
  display: block;
}
.l-nav-brand .logo-white { filter: brightness(0) invert(1); }
.l-nav-brand .logo-dark  { display: none; height: 34px; width: auto; }
.l-nav.scrolled .l-nav-brand .logo-white { display: none; }
.l-nav.scrolled .l-nav-brand .logo-dark  { display: block; }
.l-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.l-nav-link {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  color: rgba(255,255,255,.8);
  transition: color .15s, background .15s;
}
.l-nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,.1);
}
.l-nav.scrolled .l-nav-link { color: #555; }
.l-nav.scrolled .l-nav-link:hover { color: #111; background: #f5f5f5; }

/* â”€â”€ HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.l-hero {
  min-height: 100vh;
  background: #080818;
  background-image:
    radial-gradient(ellipse at 65% 55%, rgba(108,99,255,.38) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(255,101,132,.22) 0%, transparent 45%);
  display: flex;
  align-items: flex-start;
  padding: 128px 48px 88px;
  position: relative;
  overflow: hidden;
}
.l-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.l-hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 64px;
  position: relative;
}
.l-hero-content { flex: 1; color: #fff; padding-top: 8px; }

.l-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(108,99,255,.18);
  border: 1px solid rgba(108,99,255,.4);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #b3adff;
  margin-bottom: 28px;
}
.l-hero h1 {
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2.5px;
  margin-bottom: 22px;
  color: #fff;
}
.l-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #b3adff 0%, #6c63ff 45%, #ff6584 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.l-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.62);
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.l-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.l-btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 30px;
  background: #6c63ff;
  color: #fff;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 8px 32px rgba(108,99,255,.4);
}
.l-btn-cta:hover {
  background: #5449e6;
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(108,99,255,.52);
}
.l-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 26px;
  color: rgba(255,255,255,.75);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.16);
  transition: color .15s, background .15s, border-color .15s;
}
.l-btn-ghost:hover {
  color: #fff;
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.3);
}
.l-hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.45);
  font-size: 14px;
}
.l-proof-avatars { display: flex; }
.l-proof-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid #080818;
  margin-left: -9px;
  background: linear-gradient(135deg, #6c63ff, #ff6584);
}
.l-proof-avatar:first-child { margin-left: 0; }
.l-proof-avatar:nth-child(2) { background: linear-gradient(135deg, #ff6584, #ffd166); }
.l-proof-avatar:nth-child(3) { background: linear-gradient(135deg, #06d6a0, #118ab2); }
.l-proof-avatar:nth-child(4) { background: linear-gradient(135deg, #ffd166, #ef476f); }

/* â”€â”€ PHONE MOCKUP â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.l-hero-visual {
  flex-shrink: 0;
  position: relative;
}
.l-phone-glow {
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,99,255,.45) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(64px);
  pointer-events: none;
}
.l-phone {
  width: 288px; height: 572px;
  background: linear-gradient(145deg, #1c1c2e, #2a2a42);
  border-radius: 42px;
  padding: 14px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08),
    0 48px 100px rgba(0,0,0,.65),
    inset 0 1px 0 rgba(255,255,255,.1);
  animation: l-phone-float 5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
@keyframes l-phone-float {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50%       { transform: translateY(-16px) rotate(-.5deg); }
}
.l-phone-notch {
  width: 88px; height: 22px;
  background: #080818;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 14px;
}
.l-phone-screen {
  background: #f7f7fd;
  border-radius: 30px;
  height: calc(100% - 36px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 14px 18px;
  gap: 9px;
}
.l-mock-avatar-wrap { position: relative; margin-bottom: 2px; }
.l-mock-avatar {
  width: 66px; height: 66px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6c63ff, #ff6584);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 16px rgba(108,99,255,.45);
}
.l-mock-verified {
  position: absolute; bottom: 0; right: -4px;
  width: 22px; height: 22px;
  background: #3b82f6;
  border-radius: 50%;
  border: 2px solid #f7f7fd;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: #fff; font-weight: 700;
}
.l-mock-name  { font-weight: 800; font-size: 14px; color: #111; }
.l-mock-bio   { font-size: 11px; color: #999; text-align: center; line-height: 1.4; margin-bottom: 2px; }
.l-mock-links { width: 100%; display: flex; flex-direction: column; gap: 7px; }
.l-mock-link {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 11px; font-weight: 700;
  text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}
.l-mock-link.ml-purple { background: #6c63ff; color: #fff; }
.l-mock-link.ml-dark   { background: #111; color: #fff; }
.l-mock-link.ml-pink   { background: linear-gradient(135deg, #ff6584, #ff9a9e); color: #fff; }
.l-mock-link.ml-outline{ background: transparent; border: 1.5px solid #e0e0e0; color: #555; }
.l-mock-powered { font-size: 9px; color: #ccc; margin-top: auto; }

/* Floating badges */
.l-phone-badge {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap; color: #111;
  z-index: 2;
}
.l-phone-badge-1 {
  bottom: 88px; left: -68px;
  animation: l-badge-bob 4.2s ease-in-out infinite .6s;
}
.l-phone-badge-2 {
  top: 110px; right: -56px;
  animation: l-badge-bob 4.2s ease-in-out infinite 1.8s;
}
@keyframes l-badge-bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}
.l-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,.2);
  flex-shrink: 0;
}

/* â”€â”€ LOGOS STRIP â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.l-logos {
  background: #fff;
  padding: 40px 48px;
  border-bottom: 1px solid #f0f0f0;
}
.l-logos-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.l-logos-label {
  font-size: 12px; font-weight: 700;
  color: #bbb;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 22px;
}
.l-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px; flex-wrap: wrap;
}
.l-logo-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 700;
  color: #ccc;
  transition: color .2s;
  text-decoration: none;
}
.l-logo-item:hover { color: #888; }
.l-logo-icon { font-size: 20px; }

/* Stats row */
.l-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 700px;
  margin: 40px auto 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid #f0f0f0;
}
.l-stat-box {
  flex: 1;
  padding: 20px 16px;
  text-align: center;
  background: #fafafa;
  border-right: 1.5px solid #f0f0f0;
}
.l-stat-box:last-child { border-right: none; }
.l-stat-num {
  font-size: 26px; font-weight: 900;
  color: #111; letter-spacing: -.5px;
}
.l-stat-lbl {
  font-size: 12px; font-weight: 600;
  color: #aaa; margin-top: 3px;
}

/* â”€â”€ FEATURES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.l-features {
  background: #fafafa;
  padding: 96px 48px;
}
.l-section-inner { max-width: 1100px; margin: 0 auto; }
.l-section-eyebrow {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(108,99,255,.1);
  border-radius: 100px;
  font-size: 12px; font-weight: 700;
  color: #6c63ff;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 14px;
}
.l-section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  letter-spacing: -1.5px;
  color: #111;
  margin-bottom: 12px;
  line-height: 1.1;
}
.l-section-sub {
  font-size: 17px; color: #777;
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 52px;
}
.l-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.l-feat-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px 28px;
  border: 1.5px solid #ebebeb;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  position: relative;
  overflow: hidden;
}
.l-feat-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(108,99,255,.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .25s;
}
.l-feat-card:hover {
  border-color: #6c63ff;
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(108,99,255,.12);
}
.l-feat-card:hover::after { opacity: 1; }
.l-feat-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.l-feat-icon.c-purple { background: linear-gradient(135deg, #6c63ff, #9b93ff); }
.l-feat-icon.c-green  { background: linear-gradient(135deg, #06d6a0, #118ab2); }
.l-feat-icon.c-orange { background: linear-gradient(135deg, #f7971e, #ffd200); }
.l-feat-icon.c-pink   { background: linear-gradient(135deg, #ff6584, #ff9a9e); }
.l-feat-icon.c-blue   { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.l-feat-icon.c-dark   { background: linear-gradient(135deg, #1f2937, #4b5563); }
.l-feat-card h3 {
  font-size: 17px; font-weight: 700;
  color: #111; margin-bottom: 8px;
  position: relative; z-index: 1;
}
.l-feat-card p {
  font-size: 14px; color: #777;
  line-height: 1.65;
  position: relative; z-index: 1;
}

/* â”€â”€ HOW IT WORKS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.l-steps { background: #fff; padding: 96px 48px; }
.l-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 52px;
  position: relative;
}
.l-steps-grid::before {
  content: '';
  position: absolute;
  top: 35px;
  left: calc(16.67% + 16px);
  right: calc(16.67% + 16px);
  height: 2px;
  background: linear-gradient(90deg, #6c63ff 0%, #ff6584 100%);
  border-radius: 2px;
}
.l-step { text-align: center; }
.l-step-num {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6c63ff, #9b93ff);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900; color: #fff;
  margin: 0 auto 24px;
  box-shadow: 0 8px 28px rgba(108,99,255,.32);
  position: relative; z-index: 1;
}
.l-step h3 { font-size: 18px; font-weight: 700; color: #111; margin-bottom: 10px; }
.l-step p  { font-size: 14px; color: #777; line-height: 1.65; max-width: 230px; margin: 0 auto; }

/* â”€â”€ PRICING â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.l-pricing { background: #fafafa; padding: 96px 48px; }
.l-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 980px;
  margin: 52px auto 0;
  align-items: start;
}
.l-pricing-card {
  background: #fff;
  border-radius: 22px;
  padding: 36px 30px;
  border: 2px solid #ebebeb;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.l-pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(0,0,0,.08);
}
.l-pricing-card.featured {
  background: linear-gradient(150deg, #18082e 0%, #0f0f23 100%);
  border-color: rgba(108,99,255,.6);
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 24px 80px rgba(108,99,255,.32);
}
.l-pricing-card.featured:hover {
  transform: scale(1.04) translateY(-5px);
}
.l-popular-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #6c63ff, #9b93ff);
  color: #fff;
  padding: 5px 20px;
  border-radius: 100px;
  font-size: 11px; font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(108,99,255,.4);
}
.l-plan-name  { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.l-plan-desc  { font-size: 13px; color: #999; margin-bottom: 24px; }
.l-pricing-card.featured .l-plan-desc { color: rgba(255,255,255,.45); }
.l-plan-price {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #eee;
}
.l-pricing-card.featured .l-plan-price { border-bottom-color: rgba(255,255,255,.1); }
.l-price-val { font-size: 44px; font-weight: 900; letter-spacing: -1.5px; line-height: 1; }
.l-price-period {
  font-size: 14px; color: #aaa; font-weight: 400;
  display: block; margin-top: 4px;
}
.l-pricing-card.featured .l-price-period { color: rgba(255,255,255,.4); }
.l-plan-feats {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 11px; margin-bottom: 28px;
}
.l-plan-feats li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: #555;
}
.l-pricing-card.featured .l-plan-feats li { color: rgba(255,255,255,.8); }
.l-check-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(108,99,255,.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 11px; color: #6c63ff; font-weight: 700;
}
.l-pricing-card.featured .l-check-icon {
  background: rgba(255,255,255,.15);
  color: #b3adff;
}
.l-plan-btn {
  display: block; padding: 14px; border-radius: 12px;
  font-size: 15px; font-weight: 700;
  text-align: center; text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  cursor: pointer; border: none;
}
.l-plan-btn.solid {
  background: #6c63ff; color: #fff;
  box-shadow: 0 8px 24px rgba(108,99,255,.3);
}
.l-plan-btn.solid:hover {
  background: #5449e6;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(108,99,255,.42);
}
.l-plan-btn.outline {
  background: transparent; color: #333;
  border: 2px solid #e5e5e5;
}
.l-plan-btn.outline:hover { border-color: #6c63ff; color: #6c63ff; }
.l-plan-btn.outline-white {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 2px solid rgba(255,255,255,.2);
}
.l-plan-btn.outline-white:hover { background: rgba(255,255,255,.16); }

/* â”€â”€ CTA â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.l-cta {
  background: #080818;
  background-image:
    radial-gradient(ellipse at 25% 60%, rgba(108,99,255,.32) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(255,101,132,.18) 0%, transparent 50%);
  padding: 96px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.l-cta-inner { max-width: 580px; margin: 0 auto; position: relative; z-index: 1; }
.l-cta h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900; color: #fff;
  letter-spacing: -1.5px; line-height: 1.1;
  margin-bottom: 18px;
}
.l-cta h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #b3adff, #6c63ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.l-cta p { font-size: 17px; color: rgba(255,255,255,.55); margin-bottom: 40px; line-height: 1.7; }
.l-cta-note { font-size: 13px; color: rgba(255,255,255,.28); margin-top: 18px; }

/* â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.l-footer {
  background: #05050f;
  padding: 64px 48px 36px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.l-footer-inner { max-width: 1100px; margin: 0 auto; }
.l-footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.l-footer-brand img {
  height: 28px;
  filter: brightness(0) invert(1);
  margin-bottom: 16px; display: block;
}
.l-footer-brand p {
  font-size: 14px; color: rgba(255,255,255,.38);
  line-height: 1.75; max-width: 260px;
}
.l-footer-col h4 {
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: .07em;
  margin-bottom: 16px;
}
.l-footer-col a {
  display: block; font-size: 14px;
  color: rgba(255,255,255,.38); text-decoration: none;
  margin-bottom: 11px;
  transition: color .15s;
}
.l-footer-col a:hover { color: rgba(255,255,255,.8); }
.l-footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px;
  font-size: 13px; color: rgba(255,255,255,.22);
}

/* â”€â”€ SCROLL FADE-IN â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.l-fade {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.l-fade.visible { opacity: 1; transform: translateY(0); }
.l-feat-card:nth-child(2).l-fade { transition-delay: .1s; }
.l-feat-card:nth-child(3).l-fade { transition-delay: .2s; }
.l-feat-card:nth-child(4).l-fade { transition-delay: .05s; }
.l-feat-card:nth-child(5).l-fade { transition-delay: .15s; }
.l-feat-card:nth-child(6).l-fade { transition-delay: .25s; }
.l-step:nth-child(2).l-fade { transition-delay: .15s; }
.l-step:nth-child(3).l-fade { transition-delay: .3s; }
.l-pricing-card:nth-child(2).l-fade { transition-delay: .1s; }
.l-pricing-card:nth-child(3).l-fade { transition-delay: .2s; }

/* â”€â”€ RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1000px) {
  .l-hero-inner   { flex-direction: column; align-items: center; text-align: center; gap: 56px; }
  .l-hero-sub     { margin: 0 auto 40px; }
  .l-hero-actions { justify-content: center; }
  .l-hero-proof   { justify-content: center; }
  .l-features-grid, .l-steps-grid { grid-template-columns: 1fr 1fr; }
  .l-steps-grid::before { display: none; }
  .l-pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
  .l-pricing-card.featured { transform: none; }
  .l-pricing-card.featured:hover { transform: translateY(-5px); }
  .l-footer-top   { grid-template-columns: 1fr 1fr; }
  .l-footer-brand { grid-column: 1 / -1; }
  .l-phone-badge  { display: none; }
  .l-nav { padding: 0 24px; }
  .l-hero { padding: 112px 24px 80px; }
  .l-features, .l-steps, .l-pricing, .l-cta, .l-logos, .l-footer { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 640px) {
  .l-features-grid { grid-template-columns: 1fr; }
  .l-steps-grid    { grid-template-columns: 1fr; }
  .l-footer-top    { grid-template-columns: 1fr; }
  .l-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .l-stats-row     { flex-direction: column; }
  .l-stat-box      { border-right: none; border-bottom: 1.5px solid #f0f0f0; }
  .l-stat-box:last-child { border-bottom: none; }
  .l-logo-item span { display: none; }
}

/* ── HAMBURGER + MOBILE NAV ─────────────────────────────────────────────── */
.l-nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background .15s;
  flex-shrink: 0;
}
.l-nav-hamburger:hover { background: rgba(255,255,255,.12); }
.l-nav.scrolled .l-nav-hamburger:hover { background: #f5f5f5; }
.l-nav-hamburger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: rgba(255,255,255,.9);
  transition: transform .25s, opacity .2s, background .3s;
  transform-origin: center;
}
.l-nav.scrolled .l-nav-hamburger span { background: #222; }
.l-nav.open .l-nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.l-nav.open .l-nav-hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.l-nav.open .l-nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 640px) {
  .l-nav-hamburger { display: flex; }

  .l-nav-links {
    display: none;
    position: fixed;
    inset: 0;
    top: 64px;
    background: rgba(8,8,24,.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 40px 24px;
    z-index: 299;
  }
  .l-nav.open .l-nav-links { display: flex; }
  .l-nav.scrolled .l-nav-links { background: rgba(255,255,255,.97); top: 64px; }

  .l-nav-links .l-nav-link {
    font-size: 20px;
    font-weight: 600;
    padding: 14px 32px;
    width: 100%;
    text-align: center;
    border-radius: 12px;
    color: rgba(255,255,255,.85);
  }
  .l-nav.scrolled .l-nav-links .l-nav-link { color: #333; }
  .l-nav-links .l-nav-link:hover { background: rgba(255,255,255,.1); color: #fff; }
  .l-nav.scrolled .l-nav-links .l-nav-link:hover { background: #f5f5f5; color: #111; }

  .l-nav-links .btn {
    margin-left: 0 !important;
    width: 100%;
    text-align: center;
    font-size: 18px;
    padding: 14px 32px;
    border-radius: 12px;
    margin-top: 8px;
  }
}

/* ── LEGAL PAGES (privacy, terms) ── */
.l-legal {
  padding: 120px 24px 80px;
  min-height: 70vh;
  background: #fff;
}
.l-legal-inner {
  max-width: 780px;
  margin: 0 auto;
}
.l-legal-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 2px solid #f0f0f0;
}
.l-legal-header h1 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  color: #111;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.l-legal-header p {
  font-size: 14px;
  color: #888;
  margin: 0;
}
.l-legal-body h2 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin: 40px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0f0f0;
}
.l-legal-body h2:first-child { margin-top: 0; }
.l-legal-body p {
  font-size: 15px;
  line-height: 1.75;
  color: #444;
  margin: 0 0 14px;
}
.l-legal-body ul {
  margin: 0 0 16px 0;
  padding-left: 22px;
}
.l-legal-body ul li {
  font-size: 15px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 6px;
}
.l-legal-body a {
  color: #111;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.l-legal-body a:hover { color: #555; }
.l-legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 0 0 20px;
}
.l-legal-table th,
.l-legal-table td {
  text-align: left;
  padding: 10px 14px;
  border: 1px solid #e5e7eb;
  color: #444;
  line-height: 1.5;
}
.l-legal-table thead th {
  background: #f9fafb;
  font-weight: 700;
  color: #111;
}
.l-legal-table tbody tr:nth-child(even) td { background: #fafafa; }

@media (max-width: 640px) {
  .l-legal { padding: 100px 16px 60px; }
  .l-legal-table { display: block; overflow-x: auto; }
}
