/* ── BrikTech landing page styles ──
   Isolated from the in-app shell. Reuses the brand variables defined in
   projecthub.css (--accent, --accent-rgb, --muted, etc.). */

body.lp {
  margin: 0;
  background: #fbf7f0;
  color: #1a1f2e;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
.lp * { box-sizing: border-box; }
.lp a { color: inherit; text-decoration: none; }

.lp-container { max-width: 1080px; margin: 0 auto; padding: 0 1.25rem; }

/* ── Top nav ── */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 240, 0.86);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.7rem 1.25rem;
}
.lp-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.lp-logo img { border-radius: 6px; }
.lp-nav-links {
  display: flex;
  gap: 1.5rem;
  margin-left: 1.5rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: #4a5363;
}
.lp-nav-links a:hover { color: var(--accent); }
.lp-signin {
  margin-left: auto;
  background: #1a1f2e;
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.45rem 1rem;
  border-radius: 8px;
  transition: opacity 0.15s;
}
.lp-signin:hover { opacity: 0.88; }

@media (max-width: 720px) {
  .lp-nav-links { display: none; }
}

/* ── Hero ── */
.lp-hero {
  padding: 4rem 0 3rem;
  background:
    radial-gradient(circle at 8% 30%,  rgba(var(--accent-rgb), 0.22) 0%, transparent 32%),
    radial-gradient(circle at 92% 70%, rgba(var(--accent-rgb), 0.18) 0%, transparent 35%);
}
.lp-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}
.lp-hero-title {
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 1.1rem;
  max-width: 18ch;
}
.lp-accent { color: var(--accent); }
.lp-hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #4a5363;
  max-width: 36rem;
  margin: 0 0 1.8rem;
}
.lp-cta-row {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1.4rem;
  border-radius: 10px;
  transition: transform 0.12s, box-shadow 0.12s, opacity 0.12s;
  cursor: pointer;
  border: none;
}
.lp-btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 18px rgba(var(--accent-rgb), 0.3);
}
.lp-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(var(--accent-rgb), 0.36); }
.lp-btn-ghost {
  background: rgba(0,0,0,0.04);
  color: #1a1f2e;
}
.lp-btn-ghost:hover { background: rgba(0,0,0,0.08); }
.lp-hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.2rem;
  font-size: 0.85rem;
  color: #4a5363;
}
.lp-hero-bullets span { display: inline-flex; align-items: center; gap: 0.4rem; }
.lp-tick { color: var(--accent); font-weight: 700; }

/* ── Trust strip ── */
.lp-strip {
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 1.5rem 0;
}
.lp-strip-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.lp-strip-row > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.lp-strip-row strong { font-size: 1rem; font-weight: 700; }
.lp-strip-row span { font-size: 0.78rem; color: #6b7280; }
@media (max-width: 720px) {
  .lp-strip-row { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
}

/* ── Sections ── */
.lp-section { padding: 4.5rem 0; }
.lp-section-tinted { background: #fff; }
.lp-section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.6rem;
  max-width: 26ch;
}
.lp-section-sub {
  font-size: 1.02rem;
  color: #4a5363;
  max-width: 38rem;
  margin: 0 0 2.5rem;
}
.lp-section[style*="center"] .lp-section-title,
.lp-section[style*="center"] .lp-section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ── Features grid ── */
.lp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 960px) { .lp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .lp-grid { grid-template-columns: 1fr; } }

.lp-feature {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 14px;
  padding: 1.5rem;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.lp-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(var(--accent-rgb), 0.1);
  border-color: rgba(var(--accent-rgb), 0.25);
}
.lp-feat-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 10px;
  background: rgba(var(--accent-rgb), 0.1);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
}
.lp-feat-icon svg { width: 1.3rem; height: 1.3rem; }
.lp-feature h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.lp-feature p {
  margin: 0;
  font-size: 0.93rem;
  color: #4a5363;
  line-height: 1.55;
}

/* ── Two-column detail sections ── */
.lp-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.lp-two-col h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 1rem;
}
.lp-two-col p {
  font-size: 1rem;
  color: #4a5363;
  margin: 0 0 1.2rem;
}
.lp-checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.95rem;
  color: #1a1f2e;
}
.lp-checks li {
  position: relative;
  padding-left: 1.6rem;
}
.lp-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.15) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c96d2d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M5 13l4 4L19 7'/></svg>") center/0.75rem no-repeat;
}
@media (max-width: 820px) {
  .lp-two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .lp-two-col-reverse { grid-auto-flow: dense; }
  .lp-two-col-reverse > div:last-child { order: -1; }
}

/* Mock screenshot card */
.lp-screenshot { display: flex; justify-content: center; }
.lp-mockup {
  width: 100%;
  max-width: 360px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  box-shadow:
    0 18px 40px rgba(var(--accent-rgb), 0.12),
    0 4px 10px rgba(0,0,0,0.05);
  overflow: hidden;
}
.lp-mockup-bar {
  display: flex;
  gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  background: #f5f0e6;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.lp-mockup-bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(0,0,0,0.16);
}
.lp-mockup-bar span:first-child { background: #ff5f57; }
.lp-mockup-bar span:nth-child(2) { background: #febc2e; }
.lp-mockup-bar span:nth-child(3) { background: #27c93f; }
.lp-mockup-body { padding: 1.1rem 1.1rem 1.3rem; }
.lp-mockup-title {
  margin: 0 0 0.8rem;
  font-weight: 700;
  font-size: 0.95rem;
}
.lp-mockup-task {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.7rem;
  background: #fff8ef;
  border: 1px solid rgba(var(--accent-rgb), 0.12);
  border-radius: 10px;
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
  position: relative;
}
.lp-mockup-task span:first-child {
  width: 1rem; height: 1rem;
  border-radius: 4px;
  border: 1.5px solid rgba(var(--accent-rgb), 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--accent);
  flex-shrink: 0;
}
.lp-mockup-done span:first-child {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.lp-mockup-done { opacity: 0.65; text-decoration: line-through; text-decoration-color: rgba(0,0,0,0.25); }
.lp-mockup-task em {
  margin-left: auto;
  font-style: normal;
  font-size: 0.75rem;
  color: #6b7280;
  white-space: nowrap;
}

/* QR mock */
.lp-qr {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  box-shadow: 0 18px 40px rgba(var(--accent-rgb), 0.1);
  max-width: 280px;
  width: 100%;
}
.lp-qr svg { width: 180px; height: 180px; }
.lp-qr-label {
  margin: 0;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.82rem;
  color: var(--accent);
}

/* ── Integration cards ── */
.lp-int-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 820px;
  margin: 0 auto;
}
@media (max-width: 700px) { .lp-int-row { grid-template-columns: 1fr; } }
.lp-int-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 14px;
  padding: 1.6rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.lp-int-card strong { font-size: 1rem; font-weight: 700; }
.lp-int-card span { font-size: 0.85rem; color: #4a5363; }

/* ── Final CTA ── */
.lp-cta {
  background: linear-gradient(135deg, var(--accent) 0%, color-mix(in srgb, var(--accent) 65%, #f4a96b) 100%);
  color: #fff;
  padding: 4.5rem 0;
}
.lp-cta-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}
.lp-cta-sub {
  font-size: 1.05rem;
  opacity: 0.92;
  margin: 0 0 1.8rem;
}
.lp-cta .lp-btn-primary { background: #1a1f2e; color: #fff; box-shadow: 0 8px 22px rgba(0,0,0,0.18); }
.lp-cta .lp-btn-primary:hover { background: #2a2f3e; }
.lp-cta .lp-btn-ghost { background: rgba(255,255,255,0.18); color: #fff; }
.lp-cta .lp-btn-ghost:hover { background: rgba(255,255,255,0.28); }

/* ── Footer ── */
.lp-footer {
  background: #1a1f2e;
  color: #c9cfd9;
  padding: 2.5rem 0 2rem;
}
.lp-footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
}
.lp-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}
.lp-footer-brand img { border-radius: 6px; }
.lp-footer-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.88rem;
}
.lp-footer-links a:hover { color: #fff; }
.lp-footer-copy {
  margin-left: auto;
  font-size: 0.8rem;
  color: #8a93a3;
}
@media (max-width: 720px) {
  .lp-footer-copy { margin-left: 0; flex-basis: 100%; }
}

/* ── App preview phone mockups ── */
.lp-phones {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0 1.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.lp-phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.lp-phone {
  width: 264px;
  background: #1a1a1a;
  border-radius: 46px;
  padding: 10px;
  box-shadow:
    0 28px 62px rgba(0,0,0,0.26),
    0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
}
.lp-phone-wrap--mid .lp-phone {
  box-shadow:
    0 46px 90px rgba(0,0,0,0.34),
    0 0 0 1px rgba(255,255,255,0.07);
  transform: translateY(-10px);
}
.lp-phone::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 58px;
  height: 5px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  z-index: 2;
}
.lp-phone-screen {
  border-radius: 38px;
  overflow: hidden;
  height: 530px;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at top left, rgba(201,109,45,0.2) 0%, transparent 55%),
    #f7f2eb;
}

/* ── Chrome: status bar + topbar ── */
.lp-ps-chrome {
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid rgba(201,109,45,0.18);
  flex-shrink: 0;
}
.lp-ps-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px 2px;
  font-size: 10px;
  font-weight: 700;
  color: #1f2933;
}
.lp-ps-icons { display: flex; gap: 4px; align-items: center; }
.lp-ps-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 10px;
}
.lp-ps-bl {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  border: 1px solid rgba(201,109,45,0.2);
  background: #fff;
  padding: 2px;
  box-shadow: 0 2px 6px rgba(201,109,45,0.12);
  flex-shrink: 0;
  display: block;
}
.lp-ps-tbar-txt { flex: 1; min-width: 0; }
.lp-ps-tbar-co {
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #c96d2d;
  line-height: 1;
}
.lp-ps-tbar-nm {
  font-size: 13px;
  font-weight: 800;
  color: #1f2933;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lp-ps-tbar-icons {
  display: flex;
  gap: 6px;
  color: #62707c;
  flex-shrink: 0;
}
.lp-ps-tbar-icons svg { width: 15px; height: 15px; }
.lp-ps-back { color: #62707c; flex-shrink: 0; }
.lp-ps-prow {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
.lp-ps-pct {
  font-size: 9px;
  font-weight: 700;
  color: #c96d2d;
}

/* ── Stats strip (like real app .ov-stats) ── */
.lp-ps-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(201,109,45,0.12);
  flex-shrink: 0;
  gap: 1px;
  background: rgba(201,109,45,0.1);
}
.lp-ps-stat {
  background: rgba(255,255,255,0.78);
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lp-ps-stat-l {
  font-size: 7.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #62707c;
}
.lp-ps-stat-v {
  font-size: 14px;
  font-weight: 800;
  color: #1f2933;
  line-height: 1;
}
.lp-ps-stat--grn .lp-ps-stat-v { color: #207857; }
.lp-ps-stat--warn .lp-ps-stat-v { color: #a05d1a; }

/* ── Page body ── */
.lp-ps-page {
  flex: 1;
  padding: 9px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}
.lp-ps-phdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2px;
}
.lp-ps-eyebrow {
  font-size: 8.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c96d2d;
}

/* ── Cards (like real app .list-card) ── */
.lp-ps-card {
  background: #ffffff;
  border: 1px solid rgba(201,109,45,0.13);
  border-radius: 14px;
  padding: 9px 11px;
  box-shadow:
    0 6px 14px rgba(201,109,45,0.07),
    0 1px 3px rgba(15,23,42,0.04);
}
.lp-ps-card-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 7px;
}
.lp-ps-card-row--foot {
  margin-top: 6px;
  align-items: center;
}
.lp-ps-card-main { flex: 1; min-width: 0; }
.lp-ps-jt {
  font-size: 11px;
  font-weight: 700;
  color: #1f2933;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lp-ps-jc {
  font-size: 9px;
  color: #62707c;
  margin-top: 1px;
}
.lp-ps-jdue {
  font-size: 8.5px;
  color: #62707c;
}
.lp-ps-sp {
  font-size: 10px;
  font-weight: 700;
  color: #c96d2d;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Progress track */
.lp-ps-ptrack {
  height: 4px;
  background: rgba(201,109,45,0.13);
  border-radius: 999px;
  margin: 6px 0;
  overflow: hidden;
}
.lp-ps-ptrack--sm {
  width: 46px;
  margin: 0;
  flex-shrink: 0;
}
.lp-ps-pfill {
  height: 100%;
  background: linear-gradient(90deg, #c96d2d 0%, #e5aa62 100%);
  border-radius: 999px;
}

/* ── Status pills (like real app .status-badge) ── */
.lp-ps-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 2.5px 7px;
  font-size: 8.5px;
  font-weight: 700;
  background: rgba(201,109,45,0.09);
  color: #c96d2d;
  border: 1px solid rgba(201,109,45,0.2);
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.4;
}
.lp-ps-pill--green { background: #dff6ec; color: #207857; border-color: transparent; }
.lp-ps-pill--amber { background: #fff1de; color: #a05d1a; border-color: transparent; }
.lp-ps-pill--blue  { background: #e6efff; color: #1d4ed8; border-color: transparent; }
.lp-ps-pill--ora   { background: rgba(201,109,45,0.1); color: #c96d2d; border-color: rgba(201,109,45,0.22); }

/* ── Task cards ── */
.lp-ps-tcard {
  background: #fff;
  border: 1px solid rgba(201,109,45,0.12);
  border-radius: 12px;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 10px rgba(201,109,45,0.05);
}
.lp-ps-tcard--prog {
  border-color: rgba(201,109,45,0.3);
  background: #fff9f3;
}
.lp-ps-tcard--done { opacity: 0.55; }
.lp-ps-ck {
  width: 15px;
  height: 15px;
  border-radius: 5px;
  border: 1.5px solid rgba(201,109,45,0.35);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: white;
}
.lp-ps-ck--done { background: #c96d2d; border-color: #c96d2d; }
.lp-ps-ck--prog { background: rgba(201,109,45,0.14); border-color: #c96d2d; }
.lp-ps-ti { flex: 1; min-width: 0; }
.lp-ps-tn {
  font-size: 10.5px;
  font-weight: 600;
  color: #1f2933;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lp-ps-tn--done { color: #b0b8c4; text-decoration: line-through; }
.lp-ps-ts {
  font-size: 8.5px;
  color: #62707c;
  margin-top: 2px;
}
.lp-ps-td {
  font-size: 8.5px;
  color: #62707c;
  flex-shrink: 0;
  white-space: nowrap;
}

/* ── Bottom nav (like real app .job-app-nav) ── */
.lp-ps-bnav {
  margin: 0 8px 8px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(201,109,45,0.14);
  box-shadow:
    0 10px 28px rgba(201,109,45,0.16),
    0 2px 6px rgba(15,23,42,0.04);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 4px;
  gap: 2px;
  flex-shrink: 0;
}
.lp-ps-bnav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 3px;
  border-radius: 14px;
  font-size: 7px;
  font-weight: 700;
  color: #62707c;
  line-height: 1;
}
.lp-ps-bnav-item svg { width: 13px; height: 13px; }
.lp-ps-bnav-item--on { background: #c96d2d; color: #ffffff; }

/* Caption below each phone */
.lp-phone-lbl {
  font-size: 0.85rem;
  font-weight: 600;
  color: #4a5363;
  text-align: center;
  margin: 0;
}

@media (max-width: 900px) {
  .lp-phones { gap: 1.5rem; }
}
@media (max-width: 620px) {
  .lp-phones {
    justify-content: flex-start;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lp-phone-wrap--mid .lp-phone { transform: none; }
}

.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.lp-price-card {
  text-align: left;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(201, 109, 45, 0.14);
  border-radius: 24px;
  padding: 1.4rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.lp-price-card-featured {
  border-color: rgba(201, 109, 45, 0.42);
  box-shadow: 0 20px 52px rgba(201, 109, 45, 0.16);
}

.lp-price-head h3 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
}

.lp-price-head p {
  margin: 0;
  color: #62707c;
  min-height: 3rem;
}

.lp-price-amount {
  margin: 1.2rem 0 1rem;
  font-size: 2rem;
  font-weight: 800;
  color: #1a1f2e;
}

.lp-price-amount span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #62707c;
}

.lp-price-list {
  margin: 0 0 1.2rem;
  padding-left: 1rem;
  color: #243041;
}

.lp-price-list li + li {
  margin-top: 0.45rem;
}

.lp-price-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
