/* ============================================================
   Landing Page — public marketing page shown at "/" for
   logged-out visitors. Self-contained (does not extend base.html).
   ============================================================ */

:root {
  --lp-ink:        #0b0e14;
  --lp-ink-soft:   #171b24;
  --lp-paper:      #ffffff;
  --lp-mist:       #f5f6f8;
  --lp-line:       #e6e8ec;
  --lp-text-muted: #6b7280;
  --lp-accent:     #1668dc;
  --lp-accent-dark:#0d4fa8;
  --lp-radius:     18px;
}

.lp * { box-sizing: border-box; }

.lp {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--lp-ink);
  background: var(--lp-paper);
  overflow-x: hidden;
}

.lp h1, .lp h2, .lp h3, .lp h4 {
  font-family: 'Archivo', 'Inter', sans-serif;
  letter-spacing: -0.02em;
  margin: 0;
}

.lp :where(a) { text-decoration: none; color: inherit; }
.lp ul { list-style: none; margin: 0; padding: 0; }
.lp img { max-width: 100%; display: block; }

.lp-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.lp-section {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .lp-section { padding: 64px 0; }
}

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-accent);
  background: rgba(22,104,220,.08);
  border: 1px solid rgba(22,104,220,.18);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.lp-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lp-accent); }

.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
  cursor: pointer;
}
.lp-btn-primary {
  background: var(--lp-ink);
  color: #fff;
}
.lp-btn-primary:hover { background: var(--lp-accent); transform: translateY(-2px); box-shadow: 0 12px 24px -8px rgba(22,104,220,.5); color: #fff; }
.lp-btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.35);
  color: #fff;
}
.lp-btn-outline:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.lp-btn-dark-outline {
  background: transparent;
  border-color: var(--lp-line);
  color: var(--lp-ink);
}
.lp-btn-dark-outline:hover { border-color: var(--lp-ink); transform: translateY(-2px); }
.lp-btn-sm { padding: 10px 20px; font-size: 13.5px; }

/* ── Navbar ─────────────────────────────────────────────────── */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
}
.lp-nav.scrolled {
  background: rgba(11,14,20,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  /* border-bottom (not just the box-shadow) so the nav keeps a visible edge
     even on pages whose first section is itself dark (e.g. Network's
     .lp-stats band) — otherwise the two dark surfaces melt into one with no
     seam, and page content reads as tucked behind the nav once scrolled. */
  border-bottom: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 6px 24px rgba(0,0,0,.18);
}
.lp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.lp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 19px;
  color: #fff;
}
.lp-brand img { height: 32px; width: 32px; border-radius: 8px; object-fit: cover; background: #fff; }
.lp-nav-links {
  display: flex;
  gap: 34px;
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255,255,255,.82);
}
.lp-nav-links a { transition: color .2s ease; }
.lp-nav-links a:hover, .lp-nav-links a.active { color: #fff; }
.lp-nav-actions { display: flex; align-items: center; gap: 14px; }
.lp-nav-toggle {
  display: none;
  background: none; border: none; color: #fff; font-size: 24px; cursor: pointer;
}
@media (max-width: 900px) {
  .lp-nav-links { display: none; }
  .lp-nav-toggle { display: block; }
}

/* ── Hero ───────────────────────────────────────────────────── */
.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(6,8,12,.55) 0%, rgba(6,8,12,.35) 35%, rgba(6,8,12,.75) 78%, rgba(6,8,12,.92) 100%),
              url('../img/landing/hero-port.jpg') center 30%/cover no-repeat;
  padding-top: 130px;
  padding-bottom: 64px;
}
.lp-hero-inner { position: relative; width: 100%; z-index: 2; }
.lp-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.lp-hero-tagline {
  max-width: 300px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.6;
}
.lp-hero-tagline .lp-hero-badges { display: flex; gap: 10px; margin-top: 16px; }
.lp-hero-badges span {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px;
}
.lp-hero-note {
  max-width: 280px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.6;
  text-align: right;
}
.lp-hero-headline {
  color: #fff;
  font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  line-height: 0.98;
  text-transform: uppercase;
}
.lp-hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.lp-hero-sub {
  max-width: 380px;
  color: rgba(255,255,255,.85);
  font-size: 15px;
  text-align: right;
  line-height: 1.6;
}
.lp-hero-ctas { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

.lp-scroll-cue {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-size: 22px;
  z-index: 3;
  animation: lpBounce 2s infinite;
}
@keyframes lpBounce {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 8px); }
}

/* ── Reveal-on-scroll ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-scale { opacity: 0; transform: scale(.94); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal-scale.in { opacity: 1; transform: scale(1); }

/* ── Section heading ────────────────────────────────────────── */
.lp-heading { max-width: 640px; margin-bottom: 56px; }
.lp-heading h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 800; }
.lp-heading p { margin-top: 14px; color: var(--lp-text-muted); font-size: 15.5px; line-height: 1.7; }
.lp-heading.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ── Service / category cards ───────────────────────────────── */
.lp-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 900px) { .lp-cat-grid { grid-template-columns: 1fr; } }
.lp-cat-card {
  position: relative;
  border-radius: var(--lp-radius);
  overflow: hidden;
  height: 380px;
  isolation: isolate;
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
.lp-cat-card:hover { transform: translateY(-8px); }
.lp-cat-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
  z-index: -2;
}
.lp-cat-card:hover img { transform: scale(1.08); }
.lp-cat-card::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,14,20,0) 30%, rgba(11,14,20,.88) 100%);
}
.lp-cat-num {
  position: absolute; top: 22px; left: 22px;
  color: rgba(255,255,255,.75);
  font-size: 13px; font-weight: 700; letter-spacing: .06em;
}
.lp-cat-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 26px; }
.lp-cat-body h3 { color: #fff; font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.lp-cat-body p { color: rgba(255,255,255,.78); font-size: 13.5px; line-height: 1.6; }

/* ── Features grid ──────────────────────────────────────────── */
.lp-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  background: var(--lp-line);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  overflow: hidden;
}
@media (max-width: 900px) { .lp-feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .lp-feat-grid { grid-template-columns: 1fr; } }
.lp-feat-card {
  background: #fff;
  padding: 38px 30px;
  transition: background .3s ease;
}
.lp-feat-card:hover { background: var(--lp-mist); }
.lp-feat-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(22,104,220,.1); color: var(--lp-accent);
  font-size: 21px; margin-bottom: 20px;
}
.lp-feat-card h4 { font-size: 16.5px; font-weight: 700; margin-bottom: 8px; }
.lp-feat-card p { font-size: 14px; color: var(--lp-text-muted); line-height: 1.65; margin: 0; }

/* ── Process / how it works ─────────────────────────────────── */
.lp-process { position: relative; }
.lp-process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 900px) { .lp-process-track { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .lp-process-track { grid-template-columns: 1fr; } }
.lp-process-track::before {
  content: '';
  position: absolute;
  top: 27px; left: 6%; right: 6%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--lp-line) 0 10px, transparent 10px 18px);
}
@media (max-width: 900px) { .lp-process-track::before { display: none; } }
.lp-step { position: relative; }
.lp-step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--lp-ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
  margin-bottom: 22px; position: relative; z-index: 1;
}
.lp-step h4 { font-size: 16.5px; font-weight: 700; margin-bottom: 8px; }
.lp-step p { font-size: 14px; color: var(--lp-text-muted); line-height: 1.6; margin: 0; }

/* ── Stats / trust band ─────────────────────────────────────── */
.lp-stats {
  position: relative;
  background: linear-gradient(180deg, rgba(11,14,20,.86), rgba(11,14,20,.93)),
              url('../img/landing/feature-storage.jpg') center/cover no-repeat;
  color: #fff;
}
.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 767px) { .lp-stats-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
.lp-stat-num {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
}
.lp-stat-label {
  margin-top: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
}

/* ── Testimonials ───────────────────────────────────────────── */
.lp .d-none { display: none; }
.lp-test-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .lp-test-wrap { grid-template-columns: 1fr; gap: 30px; } }
.lp-test-visual {
  border-radius: var(--lp-radius);
  overflow: hidden;
  height: 420px;
  position: relative;
}
.lp-test-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lp-test-card { position: relative; }
.lp-stars { color: #f5a623; font-size: 15px; margin-bottom: 18px; letter-spacing: 2px; }
.lp-quote { font-size: 21px; font-weight: 500; line-height: 1.55; color: var(--lp-ink); min-height: 130px; }
.lp-test-person { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.lp-test-person img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.lp-test-person .name { font-weight: 700; font-size: 14.5px; }
.lp-test-person .role { font-size: 13px; color: var(--lp-text-muted); }
.lp-test-nav { display: flex; align-items: center; gap: 16px; margin-top: 30px; }
.lp-test-nav button {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--lp-line); background: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s ease; font-size: 15px;
}
.lp-test-nav button:hover { background: var(--lp-ink); color: #fff; border-color: var(--lp-ink); }
.lp-test-dots { display: flex; gap: 6px; }
.lp-test-dots span { width: 6px; height: 6px; border-radius: 50%; background: var(--lp-line); transition: all .3s ease; }
.lp-test-dots span.active { width: 22px; border-radius: 4px; background: var(--lp-ink); }

/* ── CTA banner ─────────────────────────────────────────────── */
.lp-cta {
  position: relative;
  background: var(--lp-ink);
  color: #fff;
  border-radius: 28px;
  padding: 70px 50px;
  text-align: center;
  overflow: hidden;
}
.lp-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 15% 20%, rgba(22,104,220,.35), transparent 60%),
              radial-gradient(500px 260px at 85% 85%, rgba(22,104,220,.25), transparent 60%);
}
.lp-cta > * { position: relative; z-index: 1; }
.lp-cta h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; max-width: 640px; margin: 0 auto; }
.lp-cta p { margin-top: 16px; color: rgba(255,255,255,.72); font-size: 15.5px; }
.lp-cta .lp-hero-ctas { justify-content: center; margin-top: 30px; }

/* ── Contact Us ─────────────────────────────────────────────── */
.lp-contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 900px) { .lp-contact-wrap { grid-template-columns: 1fr; gap: 40px; } }

.lp-contact-info p { margin-top: 14px; color: var(--lp-text-muted); font-size: 15.5px; line-height: 1.7; max-width: 420px; }
.lp-contact-list { margin-top: 34px; display: flex; flex-direction: column; gap: 16px; }
.lp-contact-item {
  display: flex; align-items: center; gap: 14px;
  font-size: 14.5px; font-weight: 500; color: var(--lp-ink);
}
a.lp-contact-item:hover { color: var(--lp-accent); }
.lp-contact-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; border: 1px solid var(--lp-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--lp-accent); font-size: 16px; flex-shrink: 0;
}

.lp-contact-card {
  background: #fff;
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-line);
  box-shadow: 0 20px 44px -20px rgba(11,14,20,.12);
  padding: 38px;
}
.lp-contact-card h3 { font-size: 22px; font-weight: 800; }
.lp-contact-card-sub { margin: 6px 0 26px; color: var(--lp-text-muted); font-size: 14px; }

.lp-form-row { display: flex; gap: 14px; }
.lp-form-group { position: relative; margin-bottom: 16px; flex: 1; }
.lp-contact-card input,
.lp-contact-card select,
.lp-contact-card textarea {
  width: 100%;
  border: 1px solid var(--lp-line);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 14.5px;
  font-family: inherit;
  color: var(--lp-ink);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.lp-contact-card textarea { resize: vertical; min-height: 96px; }
.lp-contact-card input:focus,
.lp-contact-card select:focus,
.lp-contact-card textarea:focus {
  outline: none;
  border-color: var(--lp-accent);
  box-shadow: 0 0 0 3px rgba(22,104,220,.12);
}
.lp-form-group-icon i {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--lp-text-muted); font-size: 15px; pointer-events: none;
}
.lp-form-group-icon input { padding-left: 42px; }

/* .lp-form-row's own children normally carry the row-to-row gap via each
   .lp-form-group's margin-bottom — but the phone row's <select>/<input>
   aren't wrapped in .lp-form-group, so it had no bottom margin of its own
   and sat flush against the message textarea right below it. */
.lp-phone-row { align-items: stretch; margin-bottom: 16px; }
.lp-phone-code { flex: 0 0 108px; padding-left: 12px; padding-right: 6px; font-size: 13.5px; cursor: pointer; text-overflow: ellipsis; }
.lp-phone-row input { flex: 1; min-width: 0; }

.lp-char-count {
  position: absolute; right: 4px; bottom: -20px;
  font-size: 12px; color: var(--lp-text-muted);
}

.lp-contact-submit { width: 100%; justify-content: center; margin-top: 6px; }
.lp-contact-submit:disabled { opacity: .6; cursor: not-allowed; transform: none !important; }

.lp-contact-terms { margin-top: 16px; font-size: 12.5px; color: var(--lp-text-muted); text-align: center; line-height: 1.6; }
.lp-contact-terms a { color: var(--lp-ink); text-decoration: underline; text-underline-offset: 2px; }

.lp-contact-alert {
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13.5px;
  margin-bottom: 18px;
}
.lp-contact-alert.success { background: rgba(22,163,74,.1); color: #15803d; border: 1px solid rgba(22,163,74,.25); }
.lp-contact-alert.error   { background: rgba(220,38,38,.08); color: #b91c1c; border: 1px solid rgba(220,38,38,.22); }

/* ── Footer ─────────────────────────────────────────────────── */
.lp-footer-wrap { padding: 0 24px 24px; background: var(--lp-paper); }
.lp-footer {
  position: relative;
  overflow: hidden;
  background: var(--lp-ink);
  color: rgba(255,255,255,.62);
  border-radius: 28px;
  max-width: 1240px;
  margin: 0 auto;
}
.lp-footer-decor {
  position: absolute; top: 0; right: 0;
  width: 55%; height: 100%;
  z-index: 0;
  pointer-events: none;
}
.lp-footer-main {
  position: relative; z-index: 1;
  display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  padding: 56px 50px 44px;
}
.lp-footer-brand { max-width: 320px; }
.lp-footer-brand .lp-brand { margin-bottom: 16px; font-size: 21px; }
.lp-footer-brand .lp-brand img { height: 36px; width: 36px; }
.lp-footer-brand p { font-size: 14px; line-height: 1.7; }
.lp-footer-social { display: flex; gap: 10px; margin-top: 22px; }
.lp-footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: #fff; color: var(--lp-ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  transition: transform .2s ease, background .2s ease;
}
.lp-footer-social a:hover { background: var(--lp-accent); color: #fff; transform: translateY(-3px); }
.lp-back-to-top {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 30px;
  padding: 12px 20px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: #fff;
  transition: background .2s ease, border-color .2s ease;
}
.lp-back-to-top:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); }
.lp-footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.lp-footer-col h5 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 18px; font-weight: 700; }
.lp-footer-col li { margin-bottom: 12px; font-size: 14.5px; }
.lp-footer-col a:hover { color: #fff; }
.lp-footer-col a.active { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.lp-footer-bar {
  position: relative; z-index: 1;
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
  background: var(--lp-accent);
  color: #fff;
  font-size: 13px;
  padding: 16px 50px;
}
.lp-footer-bar a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 700px) {
  .lp-footer-main { padding: 44px 26px 34px; }
  .lp-footer-bar { padding: 14px 26px; justify-content: flex-start; }
}

/* ── Service detail rows (zig-zag) — dedicated Services page ─── */
.lp-service-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.lp-service-row + .lp-service-row { margin-top: 90px; }
.lp-service-row.reverse { direction: rtl; }
.lp-service-row.reverse > * { direction: ltr; }
@media (max-width: 900px) {
  .lp-service-row, .lp-service-row.reverse { grid-template-columns: 1fr; direction: ltr; }
  .lp-service-row + .lp-service-row { margin-top: 56px; }
}
.lp-service-media { border-radius: var(--lp-radius); overflow: hidden; height: 360px; position: relative; }
.lp-service-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lp-service-tag {
  display: inline-block; font-size: 12.5px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--lp-accent); margin-bottom: 14px;
}
.lp-service-copy h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 800; margin-bottom: 14px; }
.lp-service-copy p { color: var(--lp-text-muted); font-size: 15.5px; line-height: 1.7; margin-bottom: 22px; }
.lp-service-list { display: flex; flex-direction: column; gap: 12px; }
.lp-service-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--lp-ink); }
.lp-service-list i { color: var(--lp-accent); margin-top: 3px; flex-shrink: 0; }

/* ── Branch / location cards — dedicated Network page ─────────── */
.lp-branch-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.lp-branch-card {
  border: 1px solid var(--lp-line); border-radius: var(--lp-radius); padding: 30px; background: #fff;
  transition: transform .3s ease, box-shadow .3s ease;
}
.lp-branch-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -24px rgba(11,14,20,.2); }
.lp-branch-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(22,104,220,.1); color: var(--lp-accent); font-size: 21px; margin-bottom: 20px;
}
.lp-branch-card h4 { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.lp-branch-tag { font-size: 12.5px; color: var(--lp-accent); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; display: block; }
.lp-branch-card p { font-size: 14px; color: var(--lp-text-muted); line-height: 1.65; margin: 0; }

/* ── Testimonials grid — dedicated Testimonials page ───────────── */
.lp-test-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.lp-test-tile { border: 1px solid var(--lp-line); border-radius: var(--lp-radius); padding: 32px; background: #fff; display: flex; flex-direction: column; }
.lp-test-tile .lp-stars { margin-bottom: 14px; }
.lp-test-tile .lp-quote { font-size: 16px; min-height: 0; flex: 1; }
.lp-test-tile .lp-test-person { margin-top: 22px; }

/* ── Role responsibility cards — dedicated How It Works page ───── */
.lp-role-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.lp-role-card { border: 1px solid var(--lp-line); border-radius: 14px; padding: 24px; background: var(--lp-mist); }
.lp-role-card h5 { font-size: 14.5px; font-weight: 800; margin-bottom: 8px; color: var(--lp-accent); }
.lp-role-card p { font-size: 13.5px; color: var(--lp-text-muted); line-height: 1.6; margin: 0; }
.lp-step-tag {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--lp-accent); background: rgba(22,104,220,.08); border-radius: 100px; padding: 3px 10px; margin-bottom: 10px;
}

/* ── Value cards (icon) — dedicated About Us page ───────────────
   Same blue icon treatment as .lp-feat-icon on Home/Services (light-blue
   circle, monochrome accent-colored icon) — kept as its own class only
   because these cards are centered and slightly larger, not because the
   color/icon language is meant to differ. */
.lp-value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.lp-value-card {
  text-align: center; padding: 36px 26px;
  border-radius: var(--lp-radius); background: #fff; border: 1px solid var(--lp-line);
  transition: transform .3s ease, box-shadow .3s ease;
}
.lp-value-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -24px rgba(11,14,20,.2); }
.lp-value-emoji {
  display: flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; margin: 0 auto 18px;
  border-radius: 50%; background: rgba(22,104,220,.08); color: var(--lp-accent);
  font-size: 27px; line-height: 1;
}
.lp-value-card h4 { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.lp-value-card p { font-size: 13.5px; color: var(--lp-text-muted); line-height: 1.65; margin: 0; }

/* ── Mobile nav drawer ──────────────────────────────────────── */
.lp-mobile-nav {
  position: fixed; inset: 0; z-index: 200;
  background: var(--lp-ink);
  display: flex; flex-direction: column;
  padding: 24px;
  transform: translateX(100%);
  transition: transform .35s ease;
}
.lp-mobile-nav.open { transform: translateX(0); }
.lp-mobile-nav-top { display: flex; justify-content: flex-end; }
.lp-mobile-nav-close { background: none; border: none; color: #fff; font-size: 26px; cursor: pointer; }
.lp-mobile-nav ul { margin-top: 40px; display: flex; flex-direction: column; gap: 26px; }
.lp-mobile-nav a { color: #fff; font-size: 22px; font-weight: 700; }
