:root{
  --lp-bg:#ffffff;
  --lp-fg:#0b1220;
  --lp-muted:#556070;
  --lp-border:rgba(11,18,32,.12);
  --lp-surface:rgba(11,18,32,.04);
  --lp-surface-2:rgba(11,18,32,.06);
  /* Match existing Contaps blue gradient used across the site */
  --lp-accent:#009fd8;
  --lp-accent-2:#00d4ff;
  --lp-accent-deep:#0088bb;
  --lp-shadow:0 18px 60px rgba(0,0,0,.12);
  --lp-radius:18px;
  --lp-radius-sm:12px;
  --lp-max:1120px;
  --lp-header-h:72px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Montserrat',system-ui,-apple-system,'Segoe UI',Roboto,Arial,sans-serif;
  color:var(--lp-fg);
  background:var(--lp-bg);
  line-height:1.5;
}

a{color:inherit}
img{max-width:100%;height:auto;display:block}

.lp-skip-link{
  position:absolute;
  left:-999px;
  top:8px;
  z-index:9999;
  background:#fff;
  color:#000;
  border:1px solid var(--lp-border);
  padding:10px 12px;
  border-radius:10px;
}
.lp-skip-link:focus{left:12px}

.lp-container{
  width:min(var(--lp-max), calc(100% - 40px));
  margin:0 auto;
}

.lp-section{
  padding:84px 0;
}
.lp-section.lp-hero{padding:110px 0 86px}

.lp-eyebrow{
  margin:0 0 10px;
  color:var(--lp-muted);
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:600;
  font-size:12px;
}
.lp-h1{
  margin:0 0 14px;
  font-size:clamp(40px, 5vw, 60px);
  line-height:1.05;
  letter-spacing:-.02em;
}
.lp-h2{
  margin:0;
  font-size:clamp(28px, 3vw, 40px);
  line-height:1.1;
  letter-spacing:-.02em;
}
.lp-h3{
  margin:0 0 10px;
  font-size:18px;
  letter-spacing:-.01em;
}
.lp-lead{
  margin:0 0 18px;
  font-size:18px;
  color:var(--lp-muted);
  max-width:56ch;
}
.lp-subhead{
  margin:10px 0 0;
  color:var(--lp-muted);
  font-size:16px;
  max-width:70ch;
}
.lp-micro{
  margin:12px 0 0;
  color:var(--lp-muted);
  font-size:13px;
}
.lp-footnote{
  margin:12px 0 0;
  color:var(--lp-muted);
  font-size:14px;
}
.lp-center{text-align:center}

/* Keep CTA buttons from touching preceding content blocks */
.lp-feature-grid + .lp-center,
.lp-spotlight-grid + .lp-center,
.lp-metrics + .lp-center,
.lp-logos + .lp-center,
.lp-steps + .lp-center{
  margin-top:22px;
}

.lp-header{
  position:sticky;
  top:0;
  z-index:2000;
  height:var(--lp-header-h);
  display:flex;
  align-items:center;
  background:rgba(255,255,255,.55);
  backdrop-filter:saturate(140%) blur(14px);
  border-bottom:1px solid transparent;
  transition:background .25s ease,border-color .25s ease, box-shadow .25s ease;
}
.lp-header[data-solid="true"]{
  background:rgba(255,255,255,.92);
  border-bottom-color:var(--lp-border);
  box-shadow:0 8px 30px rgba(0,0,0,.06);
}
.lp-header-inner{
  width:min(var(--lp-max), calc(100% - 40px));
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.lp-brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  min-width:140px;
}
.lp-brand img{height:46px}

.lp-nav{
  display:flex;
  align-items:center;
  gap:14px;
}
.lp-nav-link{
  text-decoration:none;
  color:var(--lp-muted);
  font-weight:600;
  font-size:14px;
  padding:10px 10px;
  border-radius:10px;
}
.lp-nav-link:hover{background:var(--lp-surface)}

.lp-nav-toggle{
  display:none;
  border:1px solid var(--lp-border);
  background:#fff;
  border-radius:12px;
  width:44px;
  height:44px;
  cursor:pointer;
}
.lp-nav-toggle-lines{
  position:relative;
  display:block;
  width:18px;
  height:2px;
  margin:0 auto;
  background:var(--lp-fg);
}
.lp-nav-toggle-lines:before,
.lp-nav-toggle-lines:after{
  content:"";
  position:absolute;
  left:0;
  width:18px;
  height:2px;
  background:var(--lp-fg);
}
.lp-nav-toggle-lines:before{top:-6px}
.lp-nav-toggle-lines:after{top:6px}

.lp-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 18px;
  border-radius:999px;
  font-weight:700;
  font-size:14px;
  text-decoration:none;
  cursor:pointer;
  border:1px solid transparent;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
  user-select:none;
}
.lp-btn:hover{transform:translateY(-1px)}
.lp-btn:active{transform:translateY(0)}
.lp-btn-primary{
  background:linear-gradient(135deg,var(--lp-accent) 0%,var(--lp-accent-2) 100%);
  color:#fff;
  box-shadow:0 10px 30px rgba(0,159,216,.24);
}
.lp-btn-primary:hover{box-shadow:0 14px 38px rgba(0,159,216,.30)}
.lp-btn-secondary{
  background:#fff;
  border-color:var(--lp-border);
  color:var(--lp-fg);
}
.lp-btn-secondary:hover{background:var(--lp-surface)}
.lp-btn-ghost{
  background:transparent;
  border-color:var(--lp-border);
  color:var(--lp-fg);
}
.lp-btn-ghost:hover{background:var(--lp-surface)}
.lp-btn-link{
  background:transparent;
  border-color:transparent;
  color:var(--lp-muted);
  font-weight:700;
}
.lp-btn-link:hover{background:var(--lp-surface); color:var(--lp-fg)}
.lp-btn-block{width:100%}
.lp-btn-lg{padding:14px 22px; font-size:15px}

.lp-hero{
  background:
    radial-gradient(1200px 500px at 20% 0%, rgba(0,159,216,.12), transparent 55%),
    radial-gradient(900px 450px at 95% 10%, rgba(0,0,0,.06), transparent 60%);
}
.lp-hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:40px;
  align-items:center;
}
.lp-bullets{
  margin:0 0 22px;
  padding-left:18px;
  color:var(--lp-fg);
}
.lp-bullets li{margin:10px 0}
.lp-cta-row{display:flex; gap:12px; flex-wrap:wrap; align-items:center}

.lp-hero-visual{
  display:flex;
  justify-content:center;
}
.lp-visual-stack{
  position:relative;
  width:min(480px, 100%);
  aspect-ratio: 1 / 1;
}
.lp-phone{
  position:absolute;
  right:0;
  bottom:0;
  width:72%;
  height:82%;
  border-radius:34px;
  background:linear-gradient(180deg,#0d1220,#0b0f18);
  box-shadow:var(--lp-shadow);
  border:1px solid rgba(255,255,255,.12);
  overflow:hidden;
}
.lp-phone-notch{
  position:absolute;
  top:12px;
  left:50%;
  transform:translateX(-50%);
  width:120px;
  height:22px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
}
.lp-phone-screen{
  position:absolute;
  inset:54px 14px 14px;
  background:linear-gradient(180deg, #ffffff, #f5f7fb);
  border-radius:24px;
  overflow:hidden;
}
.lp-profile{padding:16px}
.lp-profile-top{display:flex; gap:12px; align-items:center; margin-bottom:14px}
.lp-avatar{
  width:44px;height:44px;border-radius:14px;
  background:linear-gradient(135deg,var(--lp-accent) 0%, var(--lp-accent-2) 100%);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-weight:800;
}
.lp-profile-name{font-weight:800}
.lp-profile-role{font-size:12px;color:var(--lp-muted)}
.lp-profile-links{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:6px;
}
.lp-chip{
  border:1px solid var(--lp-border);
  background:#fff;
  border-radius:14px;
  padding:10px 12px;
  font-weight:700;
  font-size:12px;
}
.lp-profile-footer{
  margin-top:14px;
  color:var(--lp-muted);
  font-size:12px;
}
.lp-card{
  position:absolute;
  left:0;
  top:16px;
  width:66%;
  height:40%;
  border-radius:22px;
  background:linear-gradient(135deg,#0a0f1b,#0b1d2b);
  box-shadow:0 18px 60px rgba(0,0,0,.26);
  border:1px solid rgba(255,255,255,.12);
  transform:rotate(-12deg);
  overflow:hidden;
}
.lp-card-shine{
  position:absolute;
  inset:-40% -30%;
  background:radial-gradient(circle at 30% 30%, rgba(255,255,255,.22), transparent 60%);
  transform:rotate(10deg);
}
.lp-card-mark{
  position:absolute;
  left:18px;
  top:18px;
  color:rgba(255,255,255,.92);
  font-weight:900;
  letter-spacing:.12em;
  font-size:12px;
}
.lp-card-sub{
  position:absolute;
  left:18px;
  bottom:16px;
  color:rgba(255,255,255,.70);
  font-weight:700;
  font-size:12px;
}

.lp-section-head{max-width:70ch; margin:0 auto 30px; text-align:center}
.lp-section-head.lp-left{margin:0 0 18px; text-align:left}

.lp-problem{background:linear-gradient(180deg, rgba(11,18,32,.02), transparent)}
.lp-problem-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:26px;
}
.lp-problem-item{
  border:1px solid var(--lp-border);
  background:#fff;
  border-radius:var(--lp-radius);
  padding:18px 16px;
  box-shadow:0 1px 0 rgba(0,0,0,.02);
}
.lp-icon{font-size:22px; margin-bottom:10px}
.lp-callout{
  margin:22px auto 0;
  max-width:78ch;
  padding:16px 16px;
  border-radius:var(--lp-radius);
  border:1px solid rgba(0,159,216,.20);
  background:linear-gradient(135deg, rgba(0,159,216,.08), rgba(0,0,0,.02));
}

/* Ensure consistent spacing after the callout (fix “no gap” issue) */
.lp-callout + .lp-center{
  margin-top:18px;
}

.lp-steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:20px;
}
.lp-step{
  border:1px solid var(--lp-border);
  background:#fff;
  border-radius:var(--lp-radius);
  padding:18px 16px;
}
.lp-step-num{
  width:34px;height:34px;border-radius:12px;
  background:var(--lp-surface);
  border:1px solid var(--lp-border);
  display:flex;align-items:center;justify-content:center;
  font-weight:900;
  margin-bottom:12px;
}

.lp-features{background:linear-gradient(180deg, transparent, rgba(11,18,32,.03))}
.lp-feature-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:22px;
}
.lp-feature{
  border:1px solid var(--lp-border);
  background:#fff;
  border-radius:var(--lp-radius);
  padding:18px 16px;
  transition:transform .15s ease, box-shadow .15s ease;
}
.lp-feature:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}
.lp-support{margin:10px 0 0; color:var(--lp-muted); font-size:13px}

.lp-spotlight{
  background:linear-gradient(180deg, rgba(0,159,216,.06), transparent 65%);
}
.lp-spotlight-grid{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap:18px;
  margin-top:14px;
  align-items:stretch;
}
.lp-spotlight-list{
  border:1px solid var(--lp-border);
  background:#fff;
  border-radius:var(--lp-radius);
  overflow:hidden;
}
.lp-spot-item{
  width:100%;
  text-align:left;
  border:0;
  border-bottom:1px solid var(--lp-border);
  background:#fff;
  color:#2f3b4e;
  font-weight:800;
  font-size:16px;
  line-height:1.2;
  padding:16px 16px;
  cursor:pointer;
  font-family:inherit;
  transition:background .15s ease, color .15s ease, padding-left .15s ease;
}
.lp-spot-item:last-child{border-bottom:0}
.lp-spot-item:hover{background:var(--lp-surface)}
.lp-spot-item.is-active{
  background:linear-gradient(135deg, rgba(0,159,216,.12), rgba(0,0,0,.02));
  color:#0b1220;
  padding-left:20px;
}
.lp-spotlight-panel{
  border:1px solid var(--lp-border);
  border-radius:var(--lp-radius);
  background:#fff;
  padding:14px;
  display:flex;
}
.lp-spot-visual{
  width:100%;
  border-radius:16px;
  background:linear-gradient(145deg, #0b1220, #10263e);
  border:1px solid rgba(255,255,255,.08);
  padding:12px;
}
.lp-spot-phone{
  width:100%;
  min-height:420px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.16);
  background:linear-gradient(180deg, #f9fbff, #edf3fb);
  overflow:hidden;
}
.lp-spot-phone-top{
  height:24px;
  margin:10px auto 0;
  width:120px;
  border-radius:999px;
  background:rgba(0,0,0,.10);
}
.lp-spot-phone-screen{
  padding:16px 16px 18px;
}
.lp-spot-kicker{
  color:#5f6f86;
  font-weight:800;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.lp-spot-phone-screen h3{
  margin:8px 0 8px;
  font-size:26px;
  line-height:1.1;
  letter-spacing:-.02em;
}
.lp-spot-phone-screen p{
  margin:0;
  color:#46556b;
}
.lp-spot-points{
  margin:14px 0;
  padding-left:18px;
}
.lp-spot-points li{
  margin:8px 0;
  color:#2a3749;
  font-weight:600;
}
.lp-spot-metric{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border-radius:999px;
  background:linear-gradient(135deg, rgba(0,159,216,.15), rgba(0,0,0,.02));
  border:1px solid rgba(0,159,216,.25);
  color:#114874;
  font-size:12px;
  font-weight:900;
  padding:8px 12px;
}

.lp-two-col{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:28px;
  align-items:start;
}
.lp-sustain{
  background:
    radial-gradient(900px 420px at 30% 20%, rgba(11,42,107,.08), transparent 60%),
    radial-gradient(700px 380px at 90% 30%, rgba(0,0,0,.06), transparent 60%);
}
.lp-checklist{margin:0; padding-left:18px}
.lp-checklist li{margin:10px 0; color:var(--lp-fg)}
.lp-materials{
  border:1px solid var(--lp-border);
  border-radius:var(--lp-radius);
  background:#fff;
  overflow:hidden;
  box-shadow:0 1px 0 rgba(0,0,0,.02);
}
.lp-tabs{
  display:flex;
  gap:6px;
  padding:12px;
  border-bottom:1px solid var(--lp-border);
  background:rgba(11,18,32,.02);
  flex-wrap:wrap;
}
.lp-tab{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--lp-border);
  background:#fff;
  cursor:pointer;
  font-weight:800;
  font-size:13px;
}
.lp-tab.is-active{
  background:linear-gradient(135deg,var(--lp-accent) 0%,var(--lp-accent-2) 100%);
  border-color:transparent;
  color:#fff;
}
.lp-material-panel{padding:16px}
.lp-material-swatch{
  height:140px;
  border-radius:var(--lp-radius-sm);
  border:1px solid var(--lp-border);
  background:
    linear-gradient(135deg, rgba(0,0,0,.08), rgba(0,0,0,.02)),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.35), transparent 50%);
  margin-bottom:14px;
}

.lp-testimonials{position:relative; margin-top:18px}
.lp-carousel{
  display:flex;
  gap:14px;
  overflow:hidden;
}
.lp-testimonial{
  min-width:100%;
  border:1px solid var(--lp-border);
  background:#fff;
  border-radius:var(--lp-radius);
  padding:18px 16px;
}
.lp-testimonial-top{
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:12px;
  align-items:center;
  margin-bottom:12px;
}
.lp-photo{
  width:44px;height:44px;border-radius:16px;
  background:var(--lp-surface);
  border:1px solid var(--lp-border);
  display:flex;align-items:center;justify-content:center;
  font-weight:900;
}
.lp-name{font-weight:900}
.lp-role{color:var(--lp-muted); font-size:12px}
.lp-stat{
  font-weight:900;
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  background:linear-gradient(135deg, rgba(0,159,216,.12), rgba(0,0,0,.03));
  border:1px solid rgba(0,159,216,.20);
}
.lp-carousel-controls{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:14px;
}
.lp-icon-btn{
  width:40px;height:40px;border-radius:999px;
  border:1px solid var(--lp-border);
  background:#fff;
  cursor:pointer;
  font-size:20px;
  line-height:1;
}
.lp-icon-btn:hover{background:var(--lp-surface)}

.lp-metrics{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:22px;
}
.lp-metric{
  border:1px solid var(--lp-border);
  background:#fff;
  border-radius:var(--lp-radius);
  padding:14px 14px;
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:10px;
}
.lp-metric strong{font-size:18px}
.lp-metric span{color:var(--lp-muted); font-size:13px}

.lp-logos{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin-top:18px;
}
.lp-logo-pill{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--lp-border);
  background:rgba(11,18,32,.02);
  color:rgba(11,18,32,.7);
  font-weight:800;
  font-size:12px;
}

.lp-pricing{background:linear-gradient(180deg, rgba(11,18,32,.03), transparent)}
.lp-price-toggle{display:flex; align-items:center; justify-content:center; gap:12px; flex-wrap:wrap; margin-top:10px}
.lp-toggle-label{font-weight:800; color:var(--lp-muted); font-size:13px}
.lp-toggle{
  display:flex;
  gap:6px;
  flex-wrap:wrap;
  padding:6px;
  border-radius:999px;
  border:1px solid var(--lp-border);
  background:#fff;
}
.lp-toggle-btn{
  padding:10px 12px;
  border-radius:999px;
  border:0;
  background:transparent;
  cursor:pointer;
  font-weight:900;
  font-size:13px;
  color:var(--lp-muted);
}
.lp-toggle-btn.is-active{
  background:linear-gradient(135deg,var(--lp-accent) 0%,var(--lp-accent-2) 100%);
  color:#fff;
}
.lp-price-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:16px;
  margin-top:22px;
}
.lp-plan{
  border:1px solid var(--lp-border);
  background:#fff;
  border-radius:var(--lp-radius);
  padding:22px 18px;
  box-shadow:0 1px 0 rgba(0,0,0,.02);
}
.lp-plan-alt{
  background:linear-gradient(135deg, rgba(0,159,216,.08), rgba(0,0,0,.02));
  border-color:rgba(0,159,216,.18);
}
.lp-plan-title{margin:0 0 8px; font-size:18px; letter-spacing:-.01em}
.lp-plan-price{margin:0 0 14px; font-size:28px; font-weight:900; letter-spacing:-.02em}
.lp-plan-unit{font-size:13px; font-weight:800; color:var(--lp-muted)}
.lp-plan-list{margin:0 0 16px; padding-left:18px}
.lp-plan-list li{margin:8px 0}

.lp-purchase{
  padding:72px 0;
  background:linear-gradient(135deg, #0b1220, #062436);
}
.lp-purchase-inner{ text-align:center }
.lp-invert{color:#fff}
.lp-purchase-actions{display:flex; justify-content:center; gap:12px; flex-wrap:wrap; margin-top:18px}
.lp-purchase .lp-btn-ghost{border-color:rgba(255,255,255,.22); color:#fff}
.lp-purchase .lp-btn-ghost:hover{background:rgba(255,255,255,.10)}

.lp-faq{background:linear-gradient(180deg, transparent, rgba(11,18,32,.02))}
.lp-accordion{max-width:860px; margin:18px auto 0}
.lp-qa{
  border:1px solid var(--lp-border);
  background:#fff;
  border-radius:var(--lp-radius);
  padding:2px 14px;
  margin:10px 0;
}
.lp-qa summary{
  list-style:none;
  cursor:pointer;
  padding:14px 0;
  font-weight:900;
  display:flex;
  align-items:center;
  gap:10px;
}
.lp-qa summary::-webkit-details-marker{display:none}
.lp-q-icon{font-size:18px}
.lp-a{padding:0 0 14px; color:var(--lp-muted)}

.lp-footer{
  padding:44px 0 24px;
  border-top:1px solid var(--lp-border);
  background:#fff;
}
.lp-footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .9fr .9fr .9fr;
  gap:18px;
  align-items:start;
}
.lp-footer-brand{font-weight:900; font-size:16px}
.lp-footer-tag{margin:8px 0 0; color:var(--lp-muted)}
.lp-footer-col h3{margin:0 0 10px}
.lp-footer-h{font-size:13px; letter-spacing:.06em; text-transform:uppercase; color:var(--lp-muted)}
.lp-footer-col a, .lp-link-btn{
  display:block;
  padding:8px 0;
  text-decoration:none;
  color:var(--lp-fg);
  font-weight:700;
  font-size:14px;
}
.lp-footer-col a:hover{text-decoration:underline}
.lp-link-btn{
  border:0;
  background:transparent;
  text-align:left;
  cursor:pointer;
  font-family:inherit;
}

.lp-newsletter{margin-top:16px}
.lp-newsletter-label{display:block; font-weight:900; margin-bottom:8px}
.lp-newsletter-row{display:flex; gap:10px; flex-wrap:wrap}
.lp-newsletter-row input{
  flex:1;
  min-width:220px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--lp-border);
  font-family:inherit;
  font-size:14px;
}
.lp-newsletter-row input:focus{
  outline:none;
  border-color:rgba(11,42,107,.35);
  box-shadow:0 0 0 4px rgba(11,42,107,.12);
}

.lp-footer-bottom{
  margin-top:26px;
  padding-top:18px;
  border-top:1px solid var(--lp-border);
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  color:var(--lp-muted);
  font-size:13px;
}
.lp-footer-social{display:flex; gap:14px; flex-wrap:wrap}
.lp-footer-social a{color:var(--lp-muted); text-decoration:none; font-weight:800}
.lp-footer-social a:hover{color:var(--lp-fg)}

.lp-modal[hidden]{display:none}
.lp-modal{
  position:fixed;
  inset:0;
  z-index:4000;
  display:grid;
  place-items:center;
}
.lp-modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}
.lp-modal-card{
  position:relative;
  width:min(520px, calc(100% - 28px));
  border-radius:22px;
  background:#fff;
  border:1px solid rgba(255,255,255,.2);
  box-shadow:0 40px 120px rgba(0,0,0,.28);
  padding:22px 18px 18px;
}
.lp-modal-close{
  position:absolute;
  right:14px;
  top:12px;
  width:38px;
  height:38px;
  border-radius:999px;
  border:1px solid var(--lp-border);
  background:#fff;
  cursor:pointer;
  font-size:20px;
  line-height:1;
}
.lp-modal-close:hover{background:var(--lp-surface)}
.lp-sales-actions{display:grid; gap:10px; margin-top:12px}

.lp-reveal{
  opacity:0;
  transform:translateY(10px);
  transition:opacity .6s ease, transform .6s ease;
}
.lp-reveal.is-in{
  opacity:1;
  transform:translateY(0);
}

@media (max-width: 980px){
  .lp-hero-grid{grid-template-columns:1fr; gap:26px}
  .lp-hero-visual{order:-1}
  .lp-two-col{grid-template-columns:1fr}
  .lp-spotlight-grid{grid-template-columns:1fr}
  .lp-problem-grid{grid-template-columns:repeat(2,1fr)}
  .lp-steps{grid-template-columns:1fr}
  .lp-feature-grid{grid-template-columns:repeat(2,1fr)}
  .lp-footer-grid{grid-template-columns:1fr 1fr; gap:16px}
}

@media (max-width: 740px){
  .lp-nav-toggle{display:inline-flex; align-items:center; justify-content:center}
  .lp-nav{
    position:absolute;
    left:0;
    right:0;
    top:var(--lp-header-h);
    padding:12px 18px 18px;
    background:rgba(255,255,255,.98);
    border-bottom:1px solid var(--lp-border);
    box-shadow:0 18px 50px rgba(0,0,0,.10);
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
  }
  .lp-nav.is-open{display:flex}
  .lp-nav-link{padding:12px 12px}
  .lp-problem-grid{grid-template-columns:1fr}
  .lp-feature-grid{grid-template-columns:1fr}
  .lp-spot-phone{min-height:380px}
  .lp-spot-phone-screen h3{font-size:23px}
  .lp-price-grid{grid-template-columns:1fr}
  .lp-metrics{grid-template-columns:1fr}
  .lp-footer-grid{grid-template-columns:1fr}
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .lp-btn,.lp-feature{transition:none}
  .lp-reveal{transition:none; transform:none; opacity:1}
}

