/* ============================================================
   lp.css — v4 "Console" design system
   SaaS product aesthetic sharing the sadmin palette (deep teal
   #19535C). Soft teal-grey canvas, white cards, teal accents.
   Clean: no gradient panels, no blurred orbs.
   ============================================================ */

:root {
  --bg: #f3f7f8;
  --surface: #ffffff;
  --ink: #123f47;
  --ink-soft: #1e2a30;
  --muted: #5b6b73;
  --line: rgba(25, 83, 92, .14);
  --line-soft: #e8f2f3;

  --brand: #19535c;
  --brand-2: #2a8a96;
  --brand-hot: #247a85;
  --brand-ink: #123f47;
  --accent: #19535c;
  --mint: #059669;
  --amber: #d97706;

  --grad-brand: var(--brand);

  --shadow-sm: 0 1px 2px rgba(25, 83, 92, .05), 0 4px 14px rgba(25, 83, 92, .05);
  --shadow-md: 0 1px 2px rgba(25, 83, 92, .05), 0 10px 30px rgba(25, 83, 92, .09);
  --shadow-lg: 0 20px 55px rgba(25, 83, 92, .14);
  --shadow-brand: 0 10px 26px rgba(25, 83, 92, .28);

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-pill: 999px;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --font: "Gilroy", "Segoe UI", system-ui, sans-serif;

  --lp-max: 1480px;
  --lp-gutter: clamp(28px, 5vw, 72px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.lp {
  margin: 0;
  position: relative;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}
/* Ambient teal glows behind everything */
body.lp::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(55% 45% at 88% -8%, rgba(42, 138, 150, .16), transparent 60%),
    radial-gradient(45% 38% at -8% 12%, rgba(25, 83, 92, .12), transparent 60%),
    radial-gradient(40% 40% at 60% 108%, rgba(42, 138, 150, .12), transparent 60%);
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }

/* Fixed dot-grid texture, fading down the page */
.lp-grain {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .6;
  background-image: radial-gradient(rgba(25, 83, 92, .14) 1px, transparent 1.4px);
  background-size: 24px 24px;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.5) 45%, transparent 80%);
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.5) 45%, transparent 80%);
}

/* Keep real content above the ambient layers */
.lp-nav, .lp-apply, main, .lp-foot { position: relative; z-index: 1; }

/* Scroll progress bar */
.lp-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  height: 3px;
  width: 100%;
  transform: scaleX(var(--p, 0));
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  box-shadow: 0 1px 6px rgba(25, 83, 92, .4);
  transition: transform .1s linear;
}

/* Shared content width (nav, hero copy, sections, footer) */
.lp-shell {
  width: min(var(--lp-max), 100%);
  margin-inline: auto;
  padding-inline: var(--lp-gutter);
  box-sizing: border-box;
}

/* ---------- Nav ---------- */
.lp-nav {
  position: sticky;
  z-index: 30;
  top: 0;
  width: 100%;
  height: 78px;
  padding: 0;
  display: block;
  background: rgba(243, 247, 248, .8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.lp-nav .lp-shell {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-nav--solid { background: rgba(255, 255, 255, .92); }
.lp-brand,
.lp-nav-end,
.lp-nav-links,
.lp-lang { display: flex; align-items: center; }
.lp-brand {
  gap: 11px;
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -.02em;
}
.lp-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 10px;
}
.lp-nav-links { gap: 6px; margin-left: auto; margin-right: 26px; }
.lp-nav-links a {
  padding: 9px 15px;
  border-radius: var(--r-pill);
  font-size: .9rem;
  font-weight: 600;
  color: var(--muted);
  transition: color .2s, background .2s;
}
.lp-nav-links a:hover { color: var(--brand); background: rgba(25, 83, 92, .08); }
.lp-nav-end { gap: 14px; }
.lp-lang { gap: 2px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 3px; }
.lp-lang a {
  padding: 6px 11px;
  border-radius: var(--r-pill);
  font-size: .72rem;
  font-weight: 700;
  color: var(--muted);
}
.lp-lang a.is-on { background: var(--grad-brand); color: #fff; }

/* ---------- Buttons ---------- */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 26px;
  border: 0;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: -.01em;
  transition: transform .25s var(--ease), box-shadow .25s, background .25s, color .25s;
}
.lp-btn:hover { transform: translateY(-2px); }
.lp-btn--sm { min-height: 42px; padding: 0 18px; font-size: .84rem; }
.lp-btn--solid { background: var(--brand); color: #fff; box-shadow: var(--shadow-brand); }
.lp-btn--solid:hover { background: var(--brand-hot); }
.lp-btn--light { background: var(--brand); color: #fff; box-shadow: var(--shadow-brand); }
.lp-btn--light:hover { background: var(--brand-hot); }
.lp-btn--ghost { background: var(--surface); color: var(--brand); border: 1px solid var(--line); }
.lp-btn--ghost:hover { border-color: var(--brand); background: var(--line-soft); }
.lp-btn--outline { background: var(--surface); color: var(--brand); border: 1px solid var(--line); }
.lp-btn--outline:hover { border-color: var(--brand); background: var(--line-soft); }
.lp-btn--quiet { background: transparent; color: var(--muted); }
.lp-btn--quiet:hover { color: var(--ink); }
.lp-btn--stripe { background: #635bff; color: #fff; box-shadow: 0 16px 38px rgba(99, 91, 255, .35); }
.lp-btn--stripe:hover { background: #5148e6; }
.lp-btn-meta {
  padding: 3px 9px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .22);
  font-size: .72rem;
  font-weight: 800;
}
.lp-btn--solid .lp-btn-meta,
.lp-btn--stripe .lp-btn-meta { background: rgba(255, 255, 255, .22); }

/* ---------- Flash ---------- */
.lp-flash {
  position: relative;
  z-index: 4;
  width: min(var(--lp-max), 100%);
  margin: 20px auto 0;
  padding: 15px var(--lp-gutter);
  border-radius: var(--r-md);
  background: #fff6e9;
  border: 1px solid #ffd9a8;
  color: #7a4a12;
  font-weight: 600;
  font-size: .92rem;
  box-sizing: border-box;
}

/* ---------- Hero ---------- */
.lp-hero {
  position: relative;
  width: 100%;
  margin: 0;
  min-height: min(88vh, 820px);
  padding: clamp(88px, 12vw, 168px) 0 clamp(64px, 8vw, 110px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
}
.lp-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-color: #0e3b42;
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  will-change: transform;
  animation: heroZoom 18s var(--ease) both;
}
.lp-hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 28, 32, .35) 0%, rgba(7, 28, 32, .18) 40%, rgba(7, 28, 32, .62) 100%),
    linear-gradient(90deg, rgba(7, 41, 47, .55) 0%, rgba(7, 41, 47, .22) 55%, rgba(7, 41, 47, .08) 100%);
}
.lp-hero-inner {
  position: relative;
  z-index: 3;
  width: min(var(--lp-max), 100%);
  margin: 0 auto;
  padding-inline: var(--lp-gutter);
  box-sizing: border-box;
  text-align: left;
  animation: rise .9s var(--ease) both .08s;
}
.lp-hero-brand {
  margin: 0 0 20px;
  font-size: clamp(3.2rem, 9vw, 6.6rem);
  font-weight: 800;
  line-height: .94;
  letter-spacing: -.045em;
  color: #fff;
  text-shadow: 0 12px 40px rgba(0, 0, 0, .28);
}
.lp-hero-lead {
  max-width: 44ch;
  margin: 0 0 32px;
  font-size: clamp(1.06rem, 1.5vw, 1.28rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, .86);
  font-weight: 500;
}
.lp-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-start; margin: 0; }
.lp-hero .lp-btn--light { background: #fff; color: var(--brand); }
.lp-hero .lp-btn--light:hover { background: var(--line-soft); }
.lp-hero .lp-btn--ghost {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .42);
}
.lp-hero .lp-btn--ghost:hover {
  background: rgba(255, 255, 255, .2);
  border-color: #fff;
}

/* ---------- Trust bar (below hero) ---------- */
.lp-trust-bar {
  width: min(var(--lp-max), 100%);
  margin: -28px auto 0;
  padding: 0 var(--lp-gutter);
  position: relative;
  z-index: 4;
  box-sizing: border-box;
}
.lp-hero-trust {
  margin: 0;
  padding: 18px 26px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}
.lp-hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.lp-hero-trust i { color: var(--brand); }

/* ---------- Sections ---------- */
.lp-section {
  width: min(var(--lp-max), 100%);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) var(--lp-gutter);
  box-sizing: border-box;
}
.lp-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, .9fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 44px;
}
.lp-section-head h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4.5vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -.035em;
}
.lp-section-head p {
  max-width: 430px;
  margin: 0 0 6px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.6;
}
.lp-section-head--center {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}
.lp-section-head--center h2 { max-width: 22ch; }

/* ---------- Packages ---------- */
.lp-packs {
  display: grid;
  grid-template-columns: repeat(var(--lp-pack-count), minmax(0, 1fr));
  gap: 20px;
}
.lp-pack {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 30px 28px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
}
/* Cursor spotlight glow */
.lp-pack::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 0%), rgba(42, 138, 150, .12), transparent 70%);
  transition: opacity .35s;
}
.lp-pack:hover::before { opacity: 1; }
.lp-pack > * { position: relative; z-index: 1; }
.lp-pack:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.lp-pack.is-featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand), var(--shadow-md);
}
.lp-pack.is-featured::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  z-index: 2;
}
.lp-pack.is-featured li i { color: var(--brand); }
.lp-pack-mark {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 13px;
  border-radius: var(--r-pill);
  background: var(--brand);
  color: #fff;
  font-size: .66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.lp-pack-top { padding-right: 70px; }
.lp-pack h3 { margin: 0; font-size: 1.4rem; letter-spacing: -.02em; }
.lp-pack-trial {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.lp-price { display: flex; align-items: baseline; gap: 8px; margin: 26px 0 22px; }
.lp-price b { font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: .9; letter-spacing: -.03em; }
.lp-price span { font-size: .82rem; color: var(--muted); font-weight: 700; }
.lp-pack ul {
  flex: 1;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  display: grid;
  align-content: start;
  gap: 12px;
}
.lp-pack li { display: flex; gap: 11px; font-size: .92rem; font-weight: 500; color: var(--ink-soft); }
.lp-pack li i {
  color: var(--brand);
  font-size: .7rem;
  margin-top: 4px;
}
.lp-pack .lp-btn { width: 100%; margin-top: auto; }

/* ---------- Flow ---------- */
.lp-section--flow { padding-top: 0; }
.lp-flow {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: flow;
}
.lp-flow--3 { grid-template-columns: repeat(3, 1fr); }
.lp-flow li {
  position: relative;
  overflow: hidden;
  padding: 26px 22px 22px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--line);
  min-height: 156px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
}
.lp-flow li:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand); }
/* Big ghost index in the corner */
.lp-flow li::after {
  counter-increment: flow;
  content: counter(flow);
  position: absolute;
  right: 8px;
  bottom: -18px;
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(25, 83, 92, .06);
  pointer-events: none;
}
.lp-flow span {
  font-size: .78rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: .04em;
}
.lp-flow b { position: relative; z-index: 1; font-size: 1.15rem; letter-spacing: -.02em; line-height: 1.1; }

/* ---------- Features ---------- */
.lp-feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lp-feat {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  min-height: 250px;
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
}
.lp-feat::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 138, 150, .12), transparent 70%);
  transition: transform .5s var(--ease);
}
.lp-feat:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--brand); }
.lp-feat:hover::after { transform: scale(1.6); }
.lp-feat > * { position: relative; z-index: 1; }
.lp-feat-ico {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 48px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  font-size: 1.3rem;
  box-shadow: var(--shadow-brand);
  transition: transform .4s var(--ease);
}
.lp-feat:hover .lp-feat-ico { transform: translateY(-4px) rotate(-6deg); }
.lp-feat h3 { margin: 0 0 10px; font-size: 1.3rem; letter-spacing: -.02em; }
.lp-feat p { max-width: 32ch; margin: 0; line-height: 1.55; font-size: .94rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.lp-trial {
  position: relative;
  overflow: hidden;
  width: min(var(--lp-max), 100%);
  margin: 0 auto clamp(72px, 10vw, 130px);
  padding: clamp(44px, 5vw, 84px) var(--lp-gutter);
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--brand) 0%, #12474f 60%, #0e3b42 100%);
  color: #fff;
  display: flex;
  gap: 34px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
  box-sizing: border-box;
  box-shadow: var(--shadow-lg);
}
/* Decorative shapes + dot texture on the CTA */
.lp-trial::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .1) 1px, transparent 1.4px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(80% 80% at 80% 20%, #000, transparent 70%);
  mask-image: radial-gradient(80% 80% at 80% 20%, #000, transparent 70%);
  opacity: .5;
}
.lp-trial::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -140px;
  top: -160px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(42, 138, 150, .7), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}
.lp-trial-copy { position: relative; z-index: 1; flex: 1; min-width: 260px; }
.lp-trial .lp-btn { position: relative; z-index: 1; }
.lp-trial h2 {
  margin: 0 auto 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -.035em;
  line-height: 1.02;
}
.lp-trial p { max-width: 48ch; margin: 0 auto; color: rgba(255, 255, 255, .82); line-height: 1.6; }
.lp-trial .lp-btn { flex-shrink: 0; background: #fff; color: var(--brand); box-shadow: none; }
.lp-trial .lp-btn:hover { background: var(--line-soft); }

/* ---------- Stats strip ---------- */
.lp-stats-wrap {
  width: min(var(--lp-max), 100%);
  margin: 36px auto 0;
  padding: 0 var(--lp-gutter);
  box-sizing: border-box;
}
.lp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.lp-stat {
  background: var(--surface);
  padding: 28px 22px;
  text-align: center;
}
.lp-stat b {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--brand);
  line-height: 1;
}
.lp-stat span { display: block; margin-top: 8px; font-size: .82rem; font-weight: 600; color: var(--muted); }

/* ---------- Scene mosaic ---------- */
.lp-section--scene { padding-top: clamp(48px, 7vw, 88px); }
.lp-scene {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.lp-scene figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: #d7e6e8;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  height: auto;
  min-height: 0;
}
.lp-scene img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
  transition: transform 1s var(--ease);
}
.lp-scene figure:hover img { transform: scale(1.05); }

/* ---------- Section variants ---------- */
.lp-section--tight { padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(40px, 6vw, 72px); }
.lp-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 13px;
  border-radius: var(--r-pill);
  background: var(--line-soft);
  color: var(--brand);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.lp-feats--6 { grid-template-columns: repeat(3, 1fr); }
.lp-feat { min-height: 0; }

/* ---------- Showcase (alternating deep-dive) ---------- */
.lp-showcase {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.lp-showcase--rev .lp-showcase-copy { order: 2; }
.lp-showcase-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.04;
  letter-spacing: -.035em;
}
.lp-showcase-copy > p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 46ch;
}
.lp-check-list { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 12px; }
.lp-check-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--ink-soft); }
.lp-check-list i {
  flex-shrink: 0;
  width: 24px; height: 24px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: .66rem;
}

/* ---------- Photo-rich product mocks ---------- */
.lp-mock {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}
.lp-mock-phone {
  position: relative;
  z-index: 2;
  width: 270px;
  padding: 14px 14px 18px;
  border-radius: 34px;
  background: #0f2a30;
  border: 3px solid #1a3f47;
  box-shadow: var(--shadow-lg), 0 0 0 10px rgba(25, 83, 92, .08);
}
.lp-mock-notch {
  width: 88px;
  height: 8px;
  margin: 4px auto 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .18);
}
.lp-mock-menu-head {
  margin-bottom: 12px;
  padding: 0 4px;
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.lp-mock-dish {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  padding: 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .08);
}
.lp-mock-dish img {
  width: 56px;
  height: 56px;
  max-width: none;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}
.lp-mock-dish div { flex: 1; min-width: 0; display: flex; justify-content: space-between; gap: 8px; align-items: baseline; }
.lp-mock-dish b { color: #fff; font-size: .84rem; font-weight: 700; }
.lp-mock-dish em { color: #9ad7de; font-style: normal; font-size: .78rem; font-weight: 800; }
.lp-mock-qr {
  position: absolute;
  right: -18px; bottom: 26px;
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  display: grid; place-items: center;
  color: var(--brand); font-size: 1.6rem;
  animation: floatSoft 5s ease-in-out infinite;
}
.lp-mock-float {
  position: absolute;
  left: 4%;
  bottom: 8%;
  z-index: 1;
  width: min(210px, 48%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid #fff;
  animation: floatSoftTilt 6.5s ease-in-out infinite reverse;
}
.lp-mock-float img { width: 100%; height: 150px; max-width: none; object-fit: cover; display: block; }

.lp-mock--staff {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 16px;
  align-items: end;
  min-height: 0;
}
.lp-mock-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  min-height: 340px;
  background: #d7e6e8;
}
.lp-mock-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  min-height: 340px;
  object-fit: cover;
  display: block;
  transition: transform .9s var(--ease);
}
.lp-mock--staff:hover .lp-mock-photo img { transform: scale(1.04); }
.lp-mock-board {
  width: 100%;
  padding: 16px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.lp-mock-board-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--brand);
  font-weight: 800;
}
.lp-mock-ticket {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 14px;
  background: var(--line-soft);
  border: 1px solid var(--line);
}
.lp-mock-ticket:last-child { margin-bottom: 0; }
.lp-mock-ticket img {
  width: 44px;
  height: 44px;
  max-width: none;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.lp-mock-ticket-txt { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.lp-mock-ticket-txt b { font-size: .86rem; color: var(--ink); }
.lp-mock-ticket-txt span {
  font-size: .72rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.lp-mock-ticket.is-hot {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(25, 83, 92, .12);
  background: #fff;
}
.lp-mock-ticket.is-hot span { color: var(--amber); }

.lp-mock--site { min-height: 0; }
.lp-mock-browser {
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  transform: perspective(900px) rotateY(-4deg) rotateX(2deg);
  transition: transform .5s var(--ease);
}
.lp-mock--site:hover .lp-mock-browser {
  transform: perspective(900px) rotateY(0deg) rotateX(0deg);
}
.lp-mock-browser-bar {
  display: flex;
  gap: 7px;
  padding: 12px 14px;
  background: var(--line-soft);
  border-bottom: 1px solid var(--line);
}
.lp-mock-browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d5e4e7;
}
.lp-mock-browser-bar span:nth-child(1) { background: #f2a3a3; }
.lp-mock-browser-bar span:nth-child(2) { background: #f0d08a; }
.lp-mock-browser-bar span:nth-child(3) { background: #9ad4b0; }
.lp-mock-browser img {
  width: 100%;
  height: 300px;
  max-width: none;
  object-fit: cover;
  display: block;
}

/* ---------- Atmosphere gallery ---------- */
.lp-gallery {
  display: grid;
  grid-template-columns: 1.1fr .8fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 14px;
}
.lp-gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: #d7e6e8;
  box-shadow: var(--shadow-md);
  min-height: 180px;
}
.lp-gallery-item--tall { grid-row: 1 / span 2; }
.lp-gallery-item:first-child { grid-column: 1; grid-row: 1 / span 2; }
.lp-gallery-item:nth-child(3) { grid-column: 3; grid-row: 1; }
.lp-gallery-item:nth-child(4) { grid-column: 3; grid-row: 2; }
.lp-gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
  transition: transform 1s var(--ease);
}
.lp-gallery-item:hover img { transform: scale(1.06); }
.lp-gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 16px 14px;
  background: linear-gradient(transparent, rgba(7, 28, 32, .78));
  color: #fff;
  font-size: .88rem;
  font-weight: 700;
}

/* ---------- Rich flow ---------- */
.lp-flow--rich li { min-height: 180px; }
.lp-flow--rich em {
  position: relative;
  z-index: 1;
  font-style: normal;
  font-size: .9rem;
  line-height: 1.5;
  color: var(--muted);
}

/* ---------- Benefits ---------- */
.lp-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.lp-benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.lp-benefit:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--brand); }
.lp-benefit-ico {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--line-soft);
  color: var(--brand);
  font-size: 1.1rem;
}

/* ---------- Testimonials ---------- */
.lp-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lp-quote {
  margin: 0;
  padding: 28px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.lp-quote:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.lp-quote-stars { color: var(--amber); font-size: .82rem; letter-spacing: 2px; margin-bottom: 14px; }
.lp-quote blockquote { margin: 0 0 16px; font-size: 1.02rem; line-height: 1.6; color: var(--ink); font-weight: 500; }
.lp-quote figcaption { font-size: .84rem; font-weight: 700; color: var(--muted); }

/* ---------- FAQ ---------- */
.lp-faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.lp-faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.lp-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-weight: 700;
  font-size: 1.02rem;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary i {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--line-soft);
  color: var(--brand);
  font-size: .8rem;
  transition: transform .3s var(--ease), background .3s, color .3s;
}
.lp-faq-item[open] summary i { transform: rotate(45deg); background: var(--brand); color: #fff; }
.lp-faq-a { padding: 0 22px 22px; color: var(--muted); line-height: 1.6; }

/* ---------- Footer ---------- */
.lp-foot {
  width: min(var(--lp-max), 100%);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) var(--lp-gutter) 40px;
  border-top: 1px solid var(--line);
  box-sizing: border-box;
}
.lp-foot-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.lp-foot-brand { display: flex; align-items: center; gap: 11px; font-weight: 800; letter-spacing: -.02em; font-size: 1.15rem; }
.lp-foot-brand img { height: 34px; width: 34px; object-fit: contain; border-radius: 9px; }
.lp-foot-tag { margin: 16px 0 0; max-width: 34ch; color: var(--muted); font-size: .9rem; line-height: 1.6; }
.lp-foot-col h4 { margin: 0 0 14px; font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--ink); }
.lp-foot-col a { display: block; margin-bottom: 10px; color: var(--muted); font-size: .92rem; font-weight: 600; transition: color .2s; }
.lp-foot-col a:hover { color: var(--brand); }
.lp-foot-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 600;
}

/* ============================================================
   Apply flow (multi-page)
   ============================================================ */
.lp-apply-page { background: var(--bg); }
.lp-apply {
  width: min(var(--lp-max), 100%);
  margin: 0 auto;
  padding: 28px var(--lp-gutter) 72px;
  box-sizing: border-box;
}
.lp-apply-shell {
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  overflow: hidden;
  border-radius: calc(var(--r-lg) + 4px);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  min-height: calc(100svh - 150px);
}

/* Sidebar tracker */
.lp-apply-side {
  padding: 36px 28px;
  background:
    linear-gradient(165deg, rgba(25, 83, 92, .08), transparent 55%),
    var(--line-soft);
  color: var(--ink);
  border-right: 1px solid var(--line);
  position: relative;
}
.lp-apply-kicker {
  margin: 0 0 12px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.lp-apply-side h1 {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.02;
  letter-spacing: -.03em;
}
.lp-apply-progress-label {
  margin: 0 0 28px;
  font-size: .92rem;
  color: var(--muted);
}
.lp-apply-progress-label strong { color: var(--ink); }

.lp-progress {
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}
.lp-progress li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--r-md);
  transition: background .3s, box-shadow .3s;
}
.lp-progress li.is-current { background: var(--surface); box-shadow: var(--shadow-sm); }
.lp-progress-num {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  font-size: .76rem;
  font-weight: 800;
  flex-shrink: 0;
  color: var(--muted);
  transition: all .3s;
}
.lp-progress li.is-current .lp-progress-num {
  background: var(--ink); color: #fff; border-color: var(--ink);
}
.lp-progress li.is-done .lp-progress-num {
  background: var(--brand); color: #fff; border-color: var(--brand);
}
.lp-progress-txt { font-size: .92rem; font-weight: 700; }
.lp-progress li.is-todo .lp-progress-txt { color: var(--muted); }

.lp-progress-bar {
  position: relative;
  height: 6px;
  border-radius: var(--r-pill);
  background: var(--line);
  overflow: hidden;
}
.lp-progress-bar i {
  display: block;
  height: 100%;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  transition: width .5s var(--ease);
}

/* Form area */
.lp-apply-main { padding: 40px clamp(28px, 3.5vw, 48px); }
.lp-apply-form .lp-step-title {
  margin: 0 0 8px;
  font-size: clamp(1.55rem, 2.4vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -.03em;
}
.lp-step-sub {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 54ch;
}

/* Plan picker — flex row of equal cards */
.lp-plan-pick {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 8px;
  align-items: stretch;
}
.lp-plan {
  position: relative;
  display: flex;
  flex: 1 1 calc((100% - (var(--lp-plan-count, 3) - 1) * 18px) / var(--lp-plan-count, 3));
  min-width: min(220px, 100%);
  max-width: 100%;
  flex-direction: column;
  gap: 0;
  padding: 28px 24px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: border-color .25s, box-shadow .25s, transform .25s var(--ease), background .25s;
}
.lp-plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(25, 83, 92, .28);
}
.lp-plan input { position: absolute; opacity: 0; pointer-events: none; }
.lp-plan-check {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: var(--surface);
  color: transparent;
  font-size: .72rem;
  transition: all .2s;
}
.lp-plan-badge {
  position: absolute;
  top: 0;
  left: 24px;
  transform: translateY(-50%);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: var(--brand);
  color: #fff;
  font-size: .62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  box-shadow: var(--shadow-brand);
}
.lp-plan-name {
  display: block;
  margin: 4px 36px 14px 0;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
}
.lp-plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0 0 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.lp-plan-price b {
  font-size: clamp(2rem, 3vw, 2.55rem);
  line-height: .9;
  letter-spacing: -.035em;
  color: var(--brand);
}
.lp-plan-price span { font-size: .82rem; font-weight: 700; color: var(--muted); }
.lp-plan-feats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.lp-plan-feats > span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.35;
}
.lp-plan-feat-ico {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--line-soft);
  color: var(--brand);
}
.lp-plan-feat-ico i {
  font-size: .78rem;
  line-height: 1;
  width: auto;
  height: auto;
  display: inline-block;
}
.lp-plan-feats b { color: var(--ink); font-weight: 800; margin-left: auto; }
.lp-plan-note {
  display: block;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: .78rem;
  font-weight: 700;
  color: var(--amber);
}
.lp-plan.is-on,
.lp-plan:has(input:checked) {
  background: var(--surface);
  border-color: var(--brand);
  box-shadow: 0 0 0 2px var(--brand), var(--shadow-md);
}
.lp-plan.is-on .lp-plan-check,
.lp-plan:has(input:checked) .lp-plan-check {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.lp-plan.is-featured {
  border-color: rgba(25, 83, 92, .35);
  background: var(--surface);
}
.lp-plan.is-disabled { opacity: .5; cursor: not-allowed; }
.lp-plan.is-disabled:hover { transform: none; box-shadow: var(--shadow-sm); }
.lp-field { margin-bottom: 18px; }
.lp-field > label {
  display: block;
  margin-bottom: 9px;
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
}
.lp-field input,
.lp-field select {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  outline: none;
  background: var(--bg);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.lp-field input:focus {
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(25, 83, 92, .14);
}
.lp-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.lp-choice { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.lp-choice--3 { grid-template-columns: repeat(3, 1fr); }
.lp-choice label,
.lp-pack-option {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--bg);
  cursor: pointer;
  font-size: .92rem;
  font-weight: 700;
  transition: border-color .2s, background .2s, box-shadow .2s, transform .2s;
}
.lp-choice label:hover,
.lp-pack-option:hover { transform: translateY(-2px); }
.lp-choice input,
.lp-pack-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.lp-choice label.is-on,
.lp-choice label:has(input:checked),
.lp-pack-option.is-on,
.lp-pack-option:has(input:checked) {
  border-color: var(--brand);
  background: rgba(25, 83, 92, .07);
  box-shadow: 0 0 0 3px rgba(25, 83, 92, .12);
}
.lp-pack-option.is-disabled { opacity: .45; cursor: not-allowed; }
.lp-pack-option.is-disabled:hover { transform: none; }
.lp-pack-pick { display: grid; gap: 10px; }
.lp-pack-option { justify-content: space-between; gap: 16px; }
.lp-pack-option-name { display: block; }
.lp-pack-option-note {
  display: block;
  margin-top: 4px;
  font-size: .72rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}
.lp-pack-option-price { font-size: .84rem; color: var(--muted); white-space: nowrap; }

.lp-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.lp-summary > div {
  padding: 16px;
  border-radius: var(--r-md);
  background: var(--line-soft);
  border: 1px solid var(--line);
}
.lp-summary span {
  display: block;
  margin-bottom: 6px;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}
.lp-summary b { font-size: 1rem; letter-spacing: -.01em; text-transform: capitalize; }

.lp-apply-hint {
  margin: 4px 0 0;
  padding: 16px 18px;
  border-radius: var(--r-md);
  background: var(--line-soft);
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
  font-size: .9rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.lp-apply-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.lp-err {
  display: none;
  margin: 0 0 20px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  background: #ffeae5;
  border: 1px solid #ffc4b6;
  color: #9c2a17;
  font-size: .9rem;
  font-weight: 700;
}
.lp-err.is-on { display: block; }

/* ---------- Reveal ---------- */
.lp-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
  will-change: transform, opacity;
}
.lp-reveal[data-anim="left"] { transform: translateX(-40px); }
.lp-reveal[data-anim="right"] { transform: translateX(40px); }
.lp-reveal[data-anim="scale"] { transform: scale(.94); }
.lp-reveal.is-visible { opacity: 1; transform: none; }
/* Photo blocks should not stay invisible if JS is delayed */
.lp-mock img, .lp-scene img, .lp-gallery-item img { opacity: 1; }

/* Stagger the flow steps when the list reveals */
.lp-flow.is-visible > li { animation: rise .6s var(--ease) both; }
.lp-flow.is-visible > li:nth-child(1) { animation-delay: .05s; }
.lp-flow.is-visible > li:nth-child(2) { animation-delay: .15s; }
.lp-flow.is-visible > li:nth-child(3) { animation-delay: .25s; }
.lp-flow.is-visible > li:nth-child(4) { animation-delay: .35s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}
@keyframes heroZoom {
  from { transform: scale(1.12); }
  to { transform: scale(1.06); }
}
@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes floatSoftTilt {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50% { transform: rotate(-6deg) translateY(-10px); }
}
@keyframes floaty {
  0%   { transform: translate(0, 0) rotate(0deg); }
  33%  { transform: translate(18px, -22px) rotate(6deg); }
  66%  { transform: translate(-14px, 14px) rotate(-5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}
@keyframes spinny {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .lp-feats--6 { grid-template-columns: repeat(2, 1fr); }
  .lp-benefits { grid-template-columns: repeat(2, 1fr); }
  .lp-quotes { grid-template-columns: 1fr; }
  .lp-quotes .lp-quote { max-width: 640px; margin: 0 auto; width: 100%; }
  .lp-scene {
    grid-template-columns: repeat(3, 1fr);
  }
  .lp-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .lp-gallery-item:first-child { grid-column: 1 / span 2; grid-row: 1; }
  .lp-gallery-item--tall { grid-column: 1; grid-row: 2 / span 2; }
  .lp-gallery-item:nth-child(3) { grid-column: 2; grid-row: 2; }
  .lp-gallery-item:nth-child(4) { grid-column: 2; grid-row: 3; }
}
@media (max-width: 900px) {
  :root { --lp-gutter: 20px; }
  .lp-nav { height: 66px; }
  .lp-nav-links { display: none; }
  .lp-nav-end { gap: 8px; }
  .lp-hero {
    width: 100%;
    min-height: min(78vh, 680px);
    align-items: flex-end;
  }
  .lp-hero-brand { max-width: none; }
  .lp-trust-bar { margin-top: -20px; }
  .lp-section-head { grid-template-columns: 1fr; gap: 16px; }
  .lp-packs { grid-template-columns: 1fr; }
  .lp-flow { grid-template-columns: 1fr 1fr; }
  .lp-feats { grid-template-columns: 1fr; }
  .lp-feats--6 { grid-template-columns: 1fr; }
  .lp-stats { grid-template-columns: repeat(2, 1fr); }
  .lp-benefits { grid-template-columns: 1fr; }
  .lp-scene { grid-template-columns: 1fr; }
  .lp-showcase { grid-template-columns: 1fr; gap: 28px; }
  .lp-showcase--rev .lp-showcase-copy { order: 0; }
  .lp-mock--staff { grid-template-columns: 1fr; }
  .lp-mock-browser { transform: none; max-width: 100%; }
  .lp-mock-float { display: none; }
  .lp-trial { flex-direction: column; align-items: flex-start; text-align: left; }
  .lp-trial h2, .lp-trial p { margin-left: 0; margin-right: 0; }
  .lp-foot-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .lp-apply-shell { grid-template-columns: 1fr; }
  .lp-apply-side {
    padding: 24px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .lp-apply-main { padding: 28px 20px; }
  .lp-plan {
    flex: 1 1 100%;
    min-width: 0;
  }
  .lp-progress {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .lp-progress li { flex: 1 1 auto; min-width: 120px; }
  .lp-grid-2,
  .lp-choice,
  .lp-choice--3,
  .lp-summary { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .lp-stats { grid-template-columns: 1fr 1fr; }
  .lp-foot-top { grid-template-columns: 1fr; }
  .lp-mock-phone { width: 220px; }
  .lp-mock-board { width: 100%; max-width: none; }
  .lp-scene {
    grid-template-columns: 1fr;
  }
  .lp-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .lp-gallery-item,
  .lp-gallery-item:first-child,
  .lp-gallery-item--tall,
  .lp-gallery-item:nth-child(3),
  .lp-gallery-item:nth-child(4) {
    grid-column: 1;
    grid-row: auto;
    min-height: 200px;
  }
  .lp-hero-trust { justify-content: flex-start; padding: 16px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .lp-reveal { opacity: 1; transform: none; }
  .lp-hero-media { transform: scale(1.02); animation: none; }
}
