/* ==========================================================================
   GatePass marketing landing page
   Self-contained stylesheet — does not depend on the admin theme bundle.
   ========================================================================== */

:root {
  --ink: #0b1224;
  --ink-soft: #4a5568;
  --navy-900: #0a1024;
  --navy-800: #0f1a35;
  --navy-700: #16224a;
  --blue-500: #2f6fed;
  --blue-400: #4d8bff;
  --teal-400: #22d3c9;
  --teal-300: #6ee7de;
  --cyan-glow: #35c2ff;
  --paper: #f7f9fc;
  --white: #ffffff;
  --border: #e6eaf2;
  --shadow-lg: 0 30px 60px -20px rgba(10, 16, 36, 0.35);
  --shadow-md: 0 12px 30px -12px rgba(10, 16, 36, 0.25);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

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

/* ---------- background glow (sits behind hero) ---------- */
.lp-bg-glow {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 900px;
  background:
    radial-gradient(60% 50% at 15% 0%, rgba(47, 111, 237, 0.28), transparent 60%),
    radial-gradient(50% 45% at 85% 10%, rgba(34, 211, 201, 0.22), transparent 60%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--paper) 100%);
  z-index: -1;
}

/* ---------- buttons ---------- */
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.lp-btn svg { transition: transform 0.18s ease; }
.lp-btn:hover svg { transform: translateX(3px); }

.lp-btn-primary {
  background: linear-gradient(120deg, var(--blue-500), var(--teal-400));
  color: #fff;
  box-shadow: 0 14px 30px -10px rgba(47, 111, 237, 0.55);
}
.lp-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -10px rgba(47, 111, 237, 0.65); }

.lp-btn-outline {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
}
.lp-btn-outline:hover { background: rgba(255, 255, 255, 0.14); border-color: rgba(255, 255, 255, 0.45); }

.lp-btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  padding: 10px 18px;
  font-size: 0.9rem;
}
.lp-btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }

.lp-btn-lg { padding: 16px 30px; font-size: 1.05rem; }

/* ---------- nav ---------- */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0;
  transition: background 0.25s ease, padding 0.25s ease, box-shadow 0.25s ease;
}
.lp-nav.is-scrolled {
  background: rgba(10, 16, 36, 0.78);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 8px 24px -14px rgba(0,0,0,0.5);
}
.lp-nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.lp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.lp-brand-icon { width: 34px; height: 34px; border-radius: 9px; object-fit: cover; }

.lp-nav-links { display: flex; align-items: center; gap: 30px; }
.lp-nav-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  transition: color 0.15s ease;
}
.lp-nav-links a:hover { color: #fff; }

.lp-nav-actions { display: flex; align-items: center; gap: 10px; }

.lp-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  cursor: pointer;
}
.lp-nav-toggle span { display: block; width: 18px; height: 2px; margin: 0 auto; background: #fff; border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }

/* ---------- hero ---------- */
.lp-hero { padding: 64px 0 90px; position: relative; }
.lp-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.lp-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-300);
  background: rgba(34, 211, 201, 0.12);
  border: 1px solid rgba(34, 211, 201, 0.3);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.lp-hero-copy h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 22px;
  font-weight: 800;
}

.lp-lede {
  color: rgba(255,255,255,0.78);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 540px;
  margin: 0 0 34px;
}

.lp-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }

.lp-hero-stats { list-style: none; display: flex; gap: 34px; padding: 0; margin: 0; flex-wrap: wrap; }
.lp-hero-stats li { display: flex; flex-direction: column; gap: 3px; }
.lp-hero-stats strong {
  font-size: 1.25rem;
  background: linear-gradient(120deg, var(--teal-300), var(--blue-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}
.lp-hero-stats span { color: rgba(255,255,255,0.6); font-size: 0.82rem; }

/* ---------- hero visual (phone mock) ---------- */
.lp-hero-visual { position: relative; display: flex; justify-content: center; }

.lp-phone-card {
  width: min(320px, 90%);
  border-radius: 28px;
  background: linear-gradient(165deg, var(--navy-700), var(--navy-800));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.lp-phone-topbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lp-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.25); }
.lp-phone-title { margin-left: 8px; color: rgba(255,255,255,0.6); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.02em; }

.lp-phone-body { padding: 26px 22px 24px; display: flex; flex-direction: column; align-items: center; }

.lp-qr-frame {
  position: relative;
  width: 148px; height: 148px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue-500), var(--teal-400));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 16px 30px -12px rgba(47, 111, 237, 0.55);
}
.lp-scan-line {
  position: absolute;
  left: 8%; right: 8%;
  height: 2px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 10px 2px rgba(255,255,255,0.7);
  animation: lp-scan 2.4s ease-in-out infinite;
}
@keyframes lp-scan {
  0% { top: 10%; opacity: 0; }
  15% { opacity: 1; }
  50% { top: 88%; opacity: 1; }
  65% { opacity: 0; }
  100% { top: 10%; opacity: 0; }
}

.lp-scan-status { color: rgba(255,255,255,0.85); font-size: 0.85rem; font-weight: 600; margin: 0 0 18px; }

.lp-fake-row {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.lp-fake-row.lp-dim { opacity: 0.55; }
.lp-pill {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
}
.lp-pill-in { background: rgba(34, 211, 201, 0.22); color: var(--teal-300); }

.lp-float-card {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.98);
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  animation: lp-float 5s ease-in-out infinite;
}
.lp-float-card strong { display: block; font-size: 0.8rem; color: var(--ink); }
.lp-float-card span { display: block; font-size: 0.72rem; color: var(--ink-soft); }
.lp-float-icon { font-size: 1.3rem; }
.lp-float-1 { top: 4%; left: -8%; animation-delay: 0.4s; }
.lp-float-2 { bottom: 6%; right: -10%; animation-delay: 1.2s; }
@keyframes lp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- trust strip ---------- */
.lp-trust { padding: 34px 0; border-bottom: 1px solid var(--border); }
.lp-trust-inner p {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.01em;
}

/* ---------- sections ---------- */
.lp-section { padding: 96px 0; }
.lp-section-alt { background: linear-gradient(180deg, #eef2fb 0%, var(--paper) 100%); }

.lp-section-head { max-width: 620px; margin: 0 auto 56px; text-align: center; }
.lp-section-head .lp-eyebrow { color: var(--blue-500); background: rgba(47,111,237,0.08); border-color: rgba(47,111,237,0.25); }
.lp-section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  color: var(--ink);
  font-weight: 800;
}
.lp-section-head p { color: var(--ink-soft); font-size: 1.02rem; margin: 0; }

/* ---------- feature grid ---------- */
.lp-grid { display: grid; gap: 22px; }
.lp-grid-4 { grid-template-columns: repeat(4, 1fr); }
.lp-grid-3 { grid-template-columns: repeat(3, 1fr); }

.lp-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.lp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(47,111,237,0.25); }

.lp-card-icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(47,111,237,0.12), rgba(34,211,201,0.14));
  color: var(--blue-500);
  margin-bottom: 16px;
}

.lp-card h3 { font-size: 1.04rem; margin: 0 0 8px; color: var(--ink); font-weight: 700; }
.lp-card p { font-size: 0.9rem; line-height: 1.55; color: var(--ink-soft); margin: 0; }

/* ---------- how it works ---------- */
.lp-steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 22px; }
.lp-steps li {
  display: flex; gap: 22px; align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 28px;
}
.lp-step-num {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-500), var(--teal-400));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
}
.lp-steps h3 { margin: 2px 0 6px; font-size: 1.02rem; color: var(--ink); font-weight: 700; }
.lp-steps p { margin: 0; color: var(--ink-soft); font-size: 0.92rem; line-height: 1.55; }

/* ---------- portals ---------- */
.lp-portal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lp-portal-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.lp-portal-card h3 { margin: 0 0 10px; font-size: 1.05rem; color: var(--ink); font-weight: 700; }
.lp-portal-card p { margin: 0 0 14px; color: var(--ink-soft); font-size: 0.9rem; line-height: 1.55; }
.lp-portal-card-accent {
  background: linear-gradient(150deg, var(--navy-800), var(--navy-700));
  border-color: transparent;
}
.lp-portal-card-accent h3, .lp-portal-card-accent p { color: rgba(255,255,255,0.92); }
.lp-portal-card-accent p { color: rgba(255,255,255,0.7); }

.lp-link { color: var(--blue-500); font-weight: 700; font-size: 0.9rem; text-decoration: none; }
.lp-link:hover { text-decoration: underline; }
.lp-portal-card-accent .lp-link { color: var(--teal-300); }

/* ---------- CTA ---------- */
.lp-cta {
  padding: 90px 0;
  background: linear-gradient(155deg, var(--navy-900), var(--navy-800) 55%, #0d1730);
  position: relative;
  overflow: hidden;
}
.lp-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 60% at 80% 20%, rgba(34,211,201,0.22), transparent 60%);
}
.lp-cta-inner { position: relative; text-align: center; max-width: 640px; margin: 0 auto; }
.lp-cta-inner h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0 0 14px; font-weight: 800; letter-spacing: -0.015em; }
.lp-cta-inner p { color: rgba(255,255,255,0.72); font-size: 1rem; margin: 0 0 30px; }

/* ---------- footer ---------- */
.lp-footer { background: var(--navy-900); padding: 40px 0; }
.lp-footer-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.lp-brand-footer { font-size: 1.02rem; }
.lp-footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.lp-footer-links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.87rem; }
.lp-footer-links a:hover { color: #fff; }
.lp-footer-copy { color: rgba(255,255,255,0.45); font-size: 0.82rem; margin: 0; }

/* ---------- about ---------- */
.lp-head-left { text-align: left; margin: 0; max-width: none; }
.lp-about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.lp-about-body p {
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.75;
  margin: 0 0 18px;
}
.lp-about-body p:last-child { margin-bottom: 0; }

/* ---------- why (checklist) ---------- */
.lp-why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.lp-why-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(47,111,237,0.25); }
.lp-why-check {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue-500), var(--teal-400));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  margin-top: 2px;
}
.lp-why-item strong { display: block; color: var(--ink); font-size: 0.98rem; font-weight: 700; margin-bottom: 5px; }
.lp-why-item p { margin: 0; color: var(--ink-soft); font-size: 0.88rem; line-height: 1.55; }

/* ---------- solutions ---------- */
.lp-solution-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.lp-solution-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(47,111,237,0.25); }
.lp-solution-icon { font-size: 1.7rem; display: block; margin-bottom: 14px; }
.lp-solution-card h3 { margin: 0 0 8px; font-size: 1.06rem; color: var(--ink); font-weight: 700; }
.lp-solution-card p { margin: 0 0 4px; color: var(--ink-soft); font-size: 0.9rem; line-height: 1.55; }
.lp-solution-card-accent {
  background: linear-gradient(150deg, var(--navy-800), var(--navy-700));
  border-color: transparent;
}
.lp-solution-card-accent h3 { color: #fff; }
.lp-solution-card-accent p { color: rgba(255,255,255,0.72); margin-bottom: 14px; }
.lp-solution-card-accent .lp-link { color: var(--teal-300); }

/* ---------- industries ---------- */
.lp-industries {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding: 0;
  margin: 0;
}
.lp-industries li {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-md);
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.lp-industries li:hover { transform: translateY(-3px); border-color: rgba(47,111,237,0.4); color: var(--blue-500); }

/* ---------- benefits by user ---------- */
.lp-benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  border-top: 3px solid transparent;
  border-image: linear-gradient(120deg, var(--blue-500), var(--teal-400)) 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lp-benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.lp-benefit-role {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 12px;
}
.lp-benefit-card p { margin: 0; color: var(--ink-soft); font-size: 0.92rem; line-height: 1.6; }

/* ---------- pricing ---------- */
.lp-pricing { align-items: stretch; }
.lp-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lp-price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.lp-price-card h3 { margin: 0 0 6px; font-size: 1.2rem; color: var(--ink); font-weight: 800; }
.lp-price-tag { margin: 0 0 20px; color: var(--ink-soft); font-size: 0.88rem; }
.lp-price-list { list-style: none; padding: 0; margin: 0 0 26px; flex: 1; }
.lp-price-list li {
  position: relative;
  padding: 8px 0 8px 26px;
  color: var(--ink);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}
.lp-price-list li:last-child { border-bottom: none; }
.lp-price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal-400);
  font-weight: 800;
}
.lp-price-card .lp-btn { justify-content: center; width: 100%; }
.lp-price-card-featured {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-700));
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.lp-price-card-featured h3 { color: #fff; }
.lp-price-card-featured .lp-price-tag { color: rgba(255,255,255,0.65); }
.lp-price-card-featured .lp-price-list li { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.1); }
.lp-price-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(120deg, var(--blue-500), var(--teal-400));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.lp-btn-outline-dark {
  background: transparent;
  color: var(--blue-500);
  border-color: rgba(47,111,237,0.4);
}
.lp-btn-outline-dark:hover { background: rgba(47,111,237,0.08); border-color: var(--blue-500); }
.lp-pricing-note { text-align: center; margin: 34px 0 0; color: var(--ink-soft); font-size: 0.94rem; }

/* ---------- FAQ ---------- */
.lp-faq-wrap { max-width: 820px; }
.lp-faq { display: grid; gap: 14px; }
.lp-faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 4px 24px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.lp-faq-item[open] { box-shadow: var(--shadow-md); border-color: rgba(47,111,237,0.25); }
.lp-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-mark { position: relative; flex: none; width: 18px; height: 18px; }
.lp-faq-mark::before, .lp-faq-mark::after {
  content: "";
  position: absolute;
  background: var(--blue-500);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.lp-faq-mark::before { top: 8px; left: 0; width: 18px; height: 2px; }
.lp-faq-mark::after { top: 0; left: 8px; width: 2px; height: 18px; }
.lp-faq-item[open] .lp-faq-mark::after { transform: scaleY(0); opacity: 0; }
.lp-faq-item p { margin: 0; padding: 0 0 20px; color: var(--ink-soft); font-size: 0.94rem; line-height: 1.65; }

/* ---------- contact ---------- */
.lp-contact {
  padding: 96px 0;
  background: linear-gradient(155deg, var(--navy-900), var(--navy-800) 55%, #0d1730);
  position: relative;
  overflow: hidden;
}
.lp-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 60% at 85% 15%, rgba(34,211,201,0.2), transparent 60%);
}
.lp-contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.lp-contact-copy .lp-eyebrow { color: var(--teal-300); background: rgba(34,211,201,0.12); border-color: rgba(34,211,201,0.3); }
.lp-contact-copy h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 0 0 14px; font-weight: 800; letter-spacing: -0.015em; }
.lp-contact-copy > p { color: rgba(255,255,255,0.72); font-size: 1.02rem; line-height: 1.65; margin: 0 0 28px; max-width: 480px; }
.lp-contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.lp-contact-list li { display: flex; align-items: center; gap: 14px; }
.lp-contact-ic {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 1.2rem;
}
.lp-contact-list strong { display: block; color: rgba(255,255,255,0.6); font-size: 0.76rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.lp-contact-list a { color: #fff; text-decoration: none; font-size: 1.02rem; font-weight: 600; }
.lp-contact-list a:hover { color: var(--teal-300); }
.lp-contact-actions {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  backdrop-filter: blur(6px);
}
.lp-contact-actions h3 { margin: 0 0 8px; color: #fff; font-size: 1.2rem; font-weight: 800; }
.lp-contact-actions > p { margin: 0 0 22px; color: rgba(255,255,255,0.72); font-size: 0.94rem; line-height: 1.6; }
.lp-contact-actions .lp-btn { justify-content: center; width: 100%; margin-bottom: 12px; }
.lp-contact-actions .lp-btn:last-child { margin-bottom: 0; }

/* ---------- reveal-on-scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .lp-hero-grid { grid-template-columns: 1fr; }
  .lp-hero-visual { margin-top: 30px; order: -1; }
  .lp-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .lp-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .lp-about-grid { grid-template-columns: 1fr; gap: 20px; }
  .lp-contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  .lp-nav-links {
    position: absolute;
    top: 100%; left: 16px; right: 16px;
    background: rgba(10, 16, 36, 0.97);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 10px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.25s ease, opacity 0.2s ease;
  }
  .lp-nav-links.is-open { max-height: 320px; opacity: 1; pointer-events: auto; }
  .lp-nav-links a { width: 100%; padding: 12px 10px; border-radius: 10px; }
  .lp-nav-links a:hover { background: rgba(255,255,255,0.08); }
  .lp-nav-toggle { display: flex; }
  .lp-btn-ghost { display: none; }

  .lp-grid-4 { grid-template-columns: 1fr; }
  .lp-grid-3 { grid-template-columns: 1fr; }
  .lp-float-card { display: none; }
  .lp-hero-actions { flex-direction: column; align-items: stretch; }
  .lp-hero-actions .lp-btn { justify-content: center; }
  .lp-price-card-featured { order: -1; }
}
