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

:root {
  --green:    #2d6a4f;
  --green2:   #40916c;
  --green3:   #52b788;
  --green-lt: #d8f3dc;
  --dark:     #0d1f14;
  --text:     #1b2a22;
  --muted:    #5a7060;
  --border:   #d4e6d9;
  --bg:       #f4faf6;
  --white:    #ffffff;
  --radius:   10px;
  --shadow:   0 4px 24px rgba(0,0,0,.10);
}

html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, sans-serif; color: var(--text); background: var(--white); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green2); color: #fff;
  padding: 12px 24px; border-radius: 8px; font-weight: 700; font-size: .95rem;
  border: none; cursor: pointer; transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--green); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--green2);
  padding: 11px 22px; border-radius: 8px; font-weight: 700; font-size: .95rem;
  border: 2px solid var(--green2); cursor: pointer; transition: all .2s;
}
.btn-outline:hover { background: var(--green2); color: #fff; }
.btn-ghost {
  display: inline-flex; align-items: center;
  background: none; color: #fff;
  padding: 10px 18px; border-radius: 8px; font-weight: 600; font-size: .9rem;
  border: 1.5px solid rgba(255,255,255,.3); cursor: pointer; transition: background .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,.12); }

/* ── Header ── */
.lb-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,31,20,.96); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.lb-nav {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 16px;
  padding: 0 24px; height: 64px;
}
.lb-brand {
  font-size: 1.25rem; font-weight: 800; color: #74c69d;
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
}
.lb-brand .brand-square { font-size: 1rem; }
.lb-brand .brand-name { color: #fff; }
.lb-brand .brand-accent { color: #74c69d; }
.lb-nav-links {
  display: flex; align-items: center; gap: 4px; margin-left: auto;
}
.lb-nav-links a {
  color: rgba(255,255,255,.8); font-size: .9rem; font-weight: 500;
  padding: 8px 14px; border-radius: 6px; transition: color .15s, background .15s;
}
.lb-nav-links a:hover { color: #fff; background: rgba(255,255,255,.08); }
.lb-nav-auth { display: flex; align-items: center; gap: 8px; margin-left: 12px; }
.lb-hamburger {
  display: none; background: none; border: none; color: #fff;
  font-size: 1.4rem; cursor: pointer; padding: 4px 8px; margin-left: auto;
}
.lb-mobile-menu {
  background: var(--dark); border-top: 1px solid rgba(255,255,255,.08);
  padding: 12px 20px 20px;
  display: flex; flex-direction: column; gap: 4px;
}
.lb-mobile-menu a, .lb-mobile-menu button {
  display: block; color: rgba(255,255,255,.85); font-size: .95rem; font-weight: 500;
  padding: 10px 12px; border-radius: 6px; border: none; background: none; cursor: pointer;
  text-align: left; width: 100%; transition: background .15s;
}
.lb-mobile-menu a:hover, .lb-mobile-menu button:hover { background: rgba(255,255,255,.08); }
.lb-mobile-menu .mobile-divider { height: 1px; background: rgba(255,255,255,.1); margin: 8px 0; }
.lb-mobile-menu .btn-primary { width: 100%; justify-content: center; margin-top: 4px; }
.hidden { display: none !important; }

/* ── Hero ── */
.lb-hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #0a1a0f 0%, #1a3d28 40%, #2d6a4f 100%);
  display: flex; align-items: center;
  padding: 100px 24px 60px;
  position: relative; overflow: hidden;
}
.lb-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(64,145,108,.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(82,183,136,.15) 0%, transparent 50%);
  pointer-events: none;
}
.lb-hero-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.lb-hero-inner {
  max-width: 800px; margin: 0 auto; text-align: center;
  position: relative; z-index: 1;
}
.lb-hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(82,183,136,.18); border: 1px solid rgba(82,183,136,.35);
  color: #74c69d; font-size: .8rem; font-weight: 700; letter-spacing: .04em;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 24px;
  text-transform: uppercase;
}
.lb-hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 800; color: #fff; line-height: 1.15;
  margin-bottom: 18px; letter-spacing: -.02em;
}
.lb-hero h1 span { color: #74c69d; }
.lb-hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem); color: rgba(255,255,255,.7);
  line-height: 1.6; margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto;
}
.lb-search-wrap {
  background: #fff; border-radius: 12px;
  display: flex; align-items: center; gap: 0;
  box-shadow: 0 8px 40px rgba(0,0,0,.3); overflow: hidden;
  margin-bottom: 24px;
}
.lb-search-wrap svg { flex-shrink: 0; margin-left: 16px; color: #999; }
.lb-search-input {
  flex: 1; padding: 18px 14px; border: none; outline: none;
  font-size: 1rem; color: var(--text); background: transparent;
}
.lb-search-input::placeholder { color: #aaa; }
.lb-search-btn {
  background: var(--green2); color: #fff; border: none; cursor: pointer;
  padding: 18px 28px; font-size: .95rem; font-weight: 700;
  white-space: nowrap; transition: background .2s; flex-shrink: 0;
}
.lb-search-btn:hover { background: var(--green); }
.lb-hero-chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
}
.lb-hero-chips span {
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.18);
  padding: 6px 14px; border-radius: 100px; font-size: .82rem; font-weight: 500;
  cursor: pointer; transition: background .15s;
}
.lb-hero-chips span:hover { background: rgba(255,255,255,.2); }

/* ── Stats Strip ── */
.lb-stats {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.lb-stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 0 24px;
}
.lb-stat {
  display: flex; flex-direction: column; align-items: center;
  padding: 28px 16px; border-right: 1px solid var(--border);
}
.lb-stat:last-child { border-right: none; }
.lb-stat-num { font-size: 1.8rem; font-weight: 800; color: var(--green); }
.lb-stat-label { font-size: .82rem; color: var(--muted); font-weight: 500; margin-top: 2px; }

/* ── Features ── */
.lb-features {
  background: var(--bg);
  padding: 80px 24px;
}
.lb-section-header {
  text-align: center; max-width: 600px; margin: 0 auto 56px;
}
.lb-section-tag {
  display: inline-block; background: var(--green-lt); color: var(--green);
  font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 14px;
}
.lb-section-header h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem); font-weight: 800; color: var(--text);
  line-height: 1.2; margin-bottom: 14px;
}
.lb-section-header p { font-size: 1rem; color: var(--muted); line-height: 1.7; }
.lb-features-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.lb-feature-card {
  background: var(--white); border-radius: 16px;
  padding: 36px 28px; box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.lb-feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.14); }
.lb-feature-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--green-lt); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.6rem;
}
.lb-feature-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.lb-feature-card p  { font-size: .9rem; color: var(--muted); line-height: 1.7; }

/* ── Map Preview ── */
.lb-map-section {
  background: var(--white); padding: 80px 24px;
}
.lb-map-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.lb-map-preview {
  background: linear-gradient(135deg, #1a3d28 0%, #2d6a4f 100%);
  border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/3; position: relative;
  box-shadow: 0 20px 60px rgba(45,106,79,.3);
}
.lb-map-preview-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 24px 24px;
}
.lb-map-pin {
  background: var(--green3); color: #fff; font-size: .75rem; font-weight: 700;
  padding: 5px 12px; border-radius: 100px;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  animation: float 3s ease-in-out infinite;
}
.lb-map-pin:nth-child(2) { animation-delay: .5s; background: #fff; color: var(--green); }
.lb-map-pin:nth-child(3) { animation-delay: 1s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.lb-map-icon-wrap {
  width: 72px; height: 72px; background: rgba(255,255,255,.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.lb-map-label { color: rgba(255,255,255,.6); font-size: .85rem; }
.lb-map-content h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 800;
  color: var(--text); line-height: 1.2; margin-bottom: 16px;
}
.lb-map-content p { font-size: 1rem; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.lb-map-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.lb-map-feature { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.lb-map-feature-icon {
  width: 36px; height: 36px; border-radius: 8px; background: var(--green-lt);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 1rem;
}
.lb-map-feature-text { font-size: .9rem; color: var(--muted); }
.lb-map-feature-text strong { display: block; color: var(--text); font-weight: 600; font-size: .92rem; }

/* ── How It Works ── */
.lb-how {
  background: var(--bg); padding: 80px 24px;
}
.lb-how-steps {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.lb-step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 36px 24px; background: var(--white); border-radius: 16px;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  position: relative;
}
.lb-step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green2); color: #fff;
  font-size: 1.1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; box-shadow: 0 4px 16px rgba(64,145,108,.4);
}
.lb-step h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.lb-step p  { font-size: .88rem; color: var(--muted); line-height: 1.65; }
.lb-step-icon { font-size: 1.8rem; margin-bottom: 12px; }

/* ── Testimonials ── */
.lb-testimonials { background: var(--white); padding: 80px 24px; }
.lb-testimonials-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.lb-testimonial {
  background: var(--bg); border-radius: 16px;
  padding: 28px; border: 1px solid var(--border);
}
.lb-testimonial-quote {
  font-size: .95rem; color: var(--text); line-height: 1.7;
  margin-bottom: 20px; font-style: italic;
}
.lb-testimonial-quote::before { content: '"'; color: var(--green3); font-size: 1.5rem; font-style: normal; line-height: 1; display: block; margin-bottom: 4px; }
.lb-testimonial-author { display: flex; align-items: center; gap: 12px; }
.lb-testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green-lt); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; color: var(--green); flex-shrink: 0;
}
.lb-testimonial-name { font-weight: 700; font-size: .9rem; color: var(--text); }
.lb-testimonial-role { font-size: .78rem; color: var(--muted); }

/* ── Mission & Goals ── */
.lb-mission-statement {
  max-width: 780px; margin: 0 auto 48px;
  text-align: center;
}
.lb-mission-quote {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--text); line-height: 1.8;
  border-left: 4px solid var(--green3);
  padding: 20px 28px;
  background: var(--white);
  border-radius: 0 12px 12px 0;
  text-align: left;
  box-shadow: var(--shadow);
}
.lb-goals-grid { max-width: 1100px; margin: 0 auto; }
.lb-goal-card {
  text-align: center;
  padding: 36px 28px;
}
.lb-goal-icon {
  font-size: 2.4rem; margin-bottom: 16px; display: block;
}
.lb-goal-card h3 {
  font-size: 1.1rem; font-weight: 800; color: var(--text);
  margin-bottom: 12px;
}
.lb-goal-card p {
  font-size: .92rem; color: var(--muted); line-height: 1.7;
  font-style: normal;
}

/* ── Contact ── */
.lb-contact { background: var(--dark); padding: 80px 24px; }
.lb-contact-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.lb-contact h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 800; color: #fff; margin-bottom: 14px; }
.lb-contact-sub { font-size: 1rem; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 32px; }
.lb-contact-items { display: flex; flex-direction: column; gap: 18px; }
.lb-contact-item { display: flex; align-items: flex-start; gap: 14px; }
.lb-contact-item-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.lb-contact-item-text { display: flex; flex-direction: column; }
.lb-contact-item-label { font-size: .78rem; color: rgba(255,255,255,.4); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 2px; }
.lb-contact-item-val { font-size: .95rem; color: rgba(255,255,255,.85); }
.lb-contact-form { display: flex; flex-direction: column; gap: 14px; }
.lb-contact-form input,
.lb-contact-form textarea {
  padding: 13px 16px; border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06); color: #fff;
  font-size: .92rem; outline: none;
  transition: border-color .2s;
}
.lb-contact-form input::placeholder,
.lb-contact-form textarea::placeholder { color: rgba(255,255,255,.3); }
.lb-contact-form input:focus,
.lb-contact-form textarea:focus { border-color: var(--green3); }
.lb-contact-form textarea { min-height: 110px; resize: vertical; }
.lb-contact-form .btn-primary { width: 100%; justify-content: center; }
.lb-form-success { color: #74c69d; font-size: .88rem; text-align: center; padding: 8px 0; display: none; }

/* ── Footer ── */
.lb-footer { background: #060f09; padding: 48px 24px 24px; }
.lb-footer-inner {
  max-width: 1200px; margin: 0 auto;
}
.lb-footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 28px;
}
.lb-footer-brand { font-size: 1.2rem; font-weight: 800; color: #74c69d; margin-bottom: 12px; }
.lb-footer-tagline { font-size: .85rem; color: rgba(255,255,255,.4); line-height: 1.6; max-width: 260px; }
.lb-footer-col h4 { font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.lb-footer-col a { display: block; font-size: .88rem; color: rgba(255,255,255,.6); padding: 4px 0; transition: color .15s; }
.lb-footer-col a:hover { color: #74c69d; }
.lb-footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.lb-footer-copy { font-size: .8rem; color: rgba(255,255,255,.3); }
.lb-footer-socials { display: flex; gap: 10px; }
.lb-social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); transition: background .15s, color .15s;
}
.lb-social-btn:hover { background: var(--green2); color: #fff; }
.lb-social-fb:hover  { background: #1877f2; color: #fff; }
.lb-footer-fb-link {
  display: flex; align-items: center; gap: 8px;
  font-size: .88rem; color: rgba(255,255,255,.6);
  padding: 4px 0; transition: color .15s;
}
.lb-footer-fb-link:hover { color: #74c69d; }
.lb-footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; }

/* ── Nav user state ── */
.lb-nav-user {
  display: flex; align-items: center; gap: 10px; margin-left: 12px;
}
.lb-nav-username {
  font-size: .88rem; color: rgba(255,255,255,.75); font-weight: 600; white-space: nowrap;
}

/* ── Auth Modal ── */
.lb-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000; padding: 16px; backdrop-filter: blur(4px);
}
.lb-modal-overlay.hidden { display: none; }
.lb-auth-box {
  background: var(--white); border-radius: 24px;
  padding: 48px 48px 40px; width: 100%; max-width: 480px;
  box-shadow: 0 24px 64px rgba(0,0,0,.18);
  position: relative; max-height: 92vh; overflow-y: auto;
  text-align: center;
}
.lb-auth-close {
  position: absolute; top: 18px; right: 18px;
  background: none; border: none; font-size: 1.1rem; color: #aaa;
  cursor: pointer; width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
}
.lb-auth-close:hover { background: #f0f0f0; color: var(--text); }
.lb-auth-brand {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-bottom: 32px;
}
.lb-auth-brand-icon { font-size: 2.2rem; line-height: 1; }
.lb-auth-brand-name {
  font-size: 2.2rem; font-weight: 900; color: var(--dark);
  letter-spacing: -.05em; text-transform: uppercase;
}
.lb-auth-brand-name span { color: var(--green2); }
.lb-auth-tabs {
  display: flex; background: var(--bg);
  border: 1.5px solid var(--border); border-radius: 999px;
  padding: 5px; margin-bottom: 32px;
}
.lb-auth-tab {
  flex: 1; background: transparent; border: none; border-radius: 999px;
  padding: 12px 0; font-size: 1rem; font-weight: 700;
  color: var(--muted); cursor: pointer; transition: all .2s;
}
.lb-auth-tab.active { background: var(--white); color: var(--dark); box-shadow: 0 1px 6px rgba(0,0,0,.1); }
.lb-auth-heading { font-size: 1.6rem; font-weight: 800; color: var(--dark); margin-bottom: 24px; text-align: left; }
.lb-auth-form { display: flex; flex-direction: column; gap: 0; }
.lb-auth-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; text-align: left; }
.lb-auth-field label { font-size: .95rem; font-weight: 600; color: var(--dark); }
.lb-auth-field input {
  padding: 14px 16px; border: 1.5px solid var(--border);
  border-radius: 12px; font-size: 1rem; outline: none;
  transition: border-color .2s, box-shadow .2s; color: var(--text);
  font-family: inherit; width: 100%;
}
.lb-auth-field input:focus { border-color: var(--green2); box-shadow: 0 0 0 3px rgba(64,145,108,.12); }
.lb-auth-field input::placeholder { color: #b0b0b0; }
.lb-auth-error {
  background: #fef2f2; border: 1.5px solid #fecaca; color: #dc2626;
  border-radius: 8px; padding: 11px 14px; font-size: .9rem;
  font-weight: 500; margin-bottom: 14px; text-align: left;
}
.lb-auth-error.hidden { display: none; }
.lb-auth-submit { width: 100%; justify-content: center; font-size: 1.05rem; font-weight: 700; padding: 16px; border-radius: 12px; margin-top: 6px; }
.lb-auth-switch { text-align: center; font-size: .95rem; color: var(--muted); margin-top: 20px; }
.lb-auth-switch-btn {
  background: none; border: none; color: var(--green2); font-weight: 700;
  cursor: pointer; font-size: inherit; padding: 0; text-decoration: underline;
}
.lb-auth-switch-btn:hover { color: var(--green); }
.lb-auth-terms { margin-top: 22px; font-size: .82rem; color: var(--muted); line-height: 1.6; }
.lb-auth-terms a { color: var(--green2); text-decoration: none; }
.lb-auth-terms a:hover { text-decoration: underline; }
.lb-otp-hint { font-size: .9rem; color: var(--muted); text-align: center; margin-bottom: 20px; line-height: 1.5; }
.lb-otp-boxes { display: flex; gap: 10px; justify-content: center; margin: 24px 0 8px; }
.lb-otp-box {
  width: 48px; height: 58px; border: 2px solid var(--border);
  border-radius: 12px; text-align: center; font-size: 1.5rem; font-weight: 700;
  color: var(--text); outline: none; transition: border-color .2s; font-family: inherit;
}
.lb-otp-box:focus { border-color: var(--green2); box-shadow: 0 0 0 3px rgba(64,145,108,.12); }
.lb-g-btn-wrap { display: flex; justify-content: center; margin-bottom: 8px; min-height: 44px; }
.lb-auth-or { display: flex; align-items: center; gap: 10px; margin: 14px 0; color: var(--muted); font-size: .78rem; }
.lb-auth-or::before, .lb-auth-or::after { content: ''; flex: 1; height: 1px; background: var(--border); }
@media (max-width: 520px) {
  .lb-auth-box { padding: 32px 22px 28px; border-radius: 20px; }
  .lb-auth-brand-name { font-size: 1.8rem; }
  .lb-auth-heading { font-size: 1.3rem; }
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .lb-nav-user { gap: 6px; margin-left: 6px; }
  .lb-nav-user .btn-primary {
    padding: 7px 10px; font-size: .78rem; white-space: nowrap;
  }
  .lb-nav-user .btn-ghost {
    padding: 6px 10px; font-size: .78rem;
  }
  .lb-nav-username { font-size: .78rem; }
}

@media (max-width: 900px) {
  .lb-features-grid { grid-template-columns: 1fr 1fr; }
  .lb-how-steps { grid-template-columns: 1fr 1fr; }
  .lb-testimonials-grid { grid-template-columns: 1fr 1fr; }
  .lb-map-inner { grid-template-columns: 1fr; gap: 36px; }
  .lb-contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .lb-footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .lb-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .lb-stat:nth-child(2) { border-right: none; }
  .lb-stat:nth-child(1), .lb-stat:nth-child(2) { border-bottom: 1px solid var(--border); }
}

@media (max-width: 640px) {
  .lb-nav-links { display: none; }
  .lb-nav-auth  { display: none; }
  .lb-hamburger { display: block; }
  .lb-search-wrap { flex-direction: column; border-radius: 12px; overflow: visible; background: none; box-shadow: none; gap: 10px; }
  .lb-search-wrap svg { display: none; }
  .lb-search-input { background: #fff; border-radius: 8px; padding: 14px 16px; box-shadow: 0 4px 20px rgba(0,0,0,.2); }
  .lb-search-btn { border-radius: 8px; padding: 14px 20px; width: 100%; justify-content: center; }
  .lb-features-grid { grid-template-columns: 1fr; }
  .lb-how-steps { grid-template-columns: 1fr; }
  .lb-testimonials-grid { grid-template-columns: 1fr; }
  .lb-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .lb-footer-top { grid-template-columns: 1fr 1fr; gap: 20px; }
  .lb-footer-tagline { max-width: 100%; }
}
