:root {
  color-scheme: dark;
  --ink: #080b10;
  --ink-2: #101721;
  --charcoal: #15191f;
  --ivory: #f5f0e6;
  --ivory-2: #ebe3d2;
  --paper: #fffaf0;
  --text: #f7f2e9;
  --paper-text: #182027;
  --muted: #c3c7c0;
  --paper-muted: #5f665e;
  --gold: #d8b46a;
  --gold-2: #f0d692;
  --teal: #60d7cb;
  --copper: #b87555;
  --line-dark: rgba(255, 255, 255, 0.16);
  --line-light: rgba(24, 32, 39, 0.14);
  --shadow: 0 24px 70px rgba(4, 8, 12, 0.32);
  --radius: 8px;
  --max: 1160px;
  font-family: "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  background: var(--ink);
  color: var(--text);
  line-height: 1.75;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--ink);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background:
    linear-gradient(180deg, rgba(8, 11, 16, 0.96), rgba(14, 18, 24, 0.98)),
    var(--ink);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(216, 180, 106, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 215, 203, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.lp-shell {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.lp-skip {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  border-radius: var(--radius);
  padding: 10px 14px;
  background: var(--paper);
  color: var(--paper-text);
  font-weight: 700;
}

.lp-skip:focus {
  transform: translateY(0);
}

.lp-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 11, 16, 0.86);
  backdrop-filter: blur(18px);
}

.lp-header__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
}

.lp-brand img {
  width: 34px;
  height: 34px;
}

.lp-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.lp-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 7px 11px;
  color: rgba(247, 242, 233, 0.82);
  text-decoration: none;
  font-size: 0.92rem;
}

.lp-nav a:hover,
.lp-nav a:focus-visible {
  border-color: rgba(216, 180, 106, 0.36);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.lp-hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(216, 180, 106, 0.18);
}

.lp-hero__image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  filter: saturate(0.86) contrast(1.08);
}

.lp-hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 11, 16, 0.98) 0%, rgba(8, 11, 16, 0.88) 48%, rgba(8, 11, 16, 0.45) 100%),
    linear-gradient(180deg, rgba(8, 11, 16, 0.24), rgba(8, 11, 16, 0.98));
}

.lp-hero__content {
  padding-block: 92px 110px;
}

.lp-kicker {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lp-hero__title {
  max-width: 820px;
  margin: 0;
  font-size: 3.8rem;
  line-height: 1.13;
  letter-spacing: 0;
  text-wrap: balance;
}

.lp-hero__title span,
.lp-hero__lead span {
  display: block;
}

.lp-hero__lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(247, 242, 233, 0.86);
  font-size: 1.08rem;
}

.lp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.lp-hero__review-link {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(247, 242, 233, 0.72);
  font-size: 0.98rem;
}

.lp-hero__review-link a {
  color: var(--gold-2);
  font-weight: 800;
  text-underline-offset: 4px;
}

.lp-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 12px 18px;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.lp-button:hover,
.lp-button:focus-visible {
  transform: translateY(-1px);
}

.lp-button--primary {
  border-color: rgba(216, 180, 106, 0.8);
  background: linear-gradient(135deg, #e8c477, #a96d42);
  color: #14100a;
  box-shadow: 0 16px 38px rgba(216, 180, 106, 0.22);
}

.lp-button--gold {
  border-color: rgba(240, 214, 146, 0.8);
  background: linear-gradient(135deg, #f0d692, #b87555);
  color: #16120b;
  box-shadow: 0 16px 38px rgba(216, 180, 106, 0.24);
}

.lp-button--outline {
  border-color: rgba(240, 214, 146, 0.38);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.lp-button--ghost {
  background: rgba(255, 255, 255, 0.07);
}

.lp-button--ghost-light {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.lp-button--full {
  width: 100%;
}

.lp-button--payment {
  width: 100%;
  min-height: 46px;
  padding-inline: 14px;
}

.lp-pay-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 5px;
}

.lp-section {
  padding-block: 86px;
}

.lp-section--ivory {
  background:
    linear-gradient(180deg, var(--ivory), var(--ivory-2));
  color: var(--paper-text);
}

.lp-section--dark {
  background:
    linear-gradient(180deg, #101721, #080b10);
  color: var(--text);
}

.lp-section--contact {
  background:
    linear-gradient(135deg, rgba(96, 215, 203, 0.14), transparent 34%),
    linear-gradient(180deg, #11161d, #080b10);
  color: var(--text);
  border-top: 1px solid rgba(216, 180, 106, 0.18);
}

.lp-section__head {
  max-width: 760px;
  margin-bottom: 34px;
}

.lp-section__head--light {
  color: var(--text);
}

.lp-section__head h2 {
  margin: 0;
  font-size: 2.35rem;
  line-height: 1.22;
  letter-spacing: 0;
  text-wrap: balance;
}

.lp-section__head p:not(.lp-kicker) {
  margin: 16px 0 0;
  color: var(--paper-muted);
  font-size: 1rem;
}

.lp-section__head--light p:not(.lp-kicker) {
  color: rgba(247, 242, 233, 0.76);
}

.lp-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.lp-service-dots {
  display: none;
}

.lp-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.lp-card,
.lp-price-card {
  border-radius: var(--radius);
  border: 1px solid var(--line-light);
  background: rgba(255, 250, 240, 0.78);
  box-shadow: var(--shadow);
}

.lp-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 24px;
}

.lp-card--accent {
  border-color: rgba(184, 117, 85, 0.32);
  background:
    linear-gradient(135deg, rgba(216, 180, 106, 0.18), rgba(255, 250, 240, 0.82));
}

.lp-card__eyebrow,
.lp-plan-label {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(184, 117, 85, 0.34);
  border-radius: 999px;
  padding: 3px 10px;
  color: #5b3a1c;
  background: rgba(216, 180, 106, 0.22);
  font-size: 0.78rem;
  font-weight: 800;
}

.lp-price-card .lp-plan-label {
  border-color: rgba(240, 214, 146, 0.42);
  color: #f0d692;
  background: rgba(240, 214, 146, 0.08);
}

.lp-card h3,
.lp-price-card h3 {
  margin: 14px 0 10px;
  font-size: 1.22rem;
  line-height: 1.35;
  letter-spacing: 0;
}

.lp-card p {
  margin: 0;
  color: var(--paper-muted);
}

.lp-section__head p > span,
.lp-price-card__note > span,
.lp-contact p > span {
  display: block;
}

.lp-section__head p > span + span,
.lp-price-card__note > span + span,
.lp-contact p > span + span {
  margin-top: 4px;
}

.lp-check-list {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.lp-check-list li {
  position: relative;
  padding-left: 22px;
  color: #243038;
  font-weight: 700;
}

.lp-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(96, 215, 203, 0.16);
}

.lp-price-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-color: var(--line-dark);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    #151b23;
}

.lp-price-card--featured {
  border-color: rgba(216, 180, 106, 0.58);
  background:
    linear-gradient(135deg, rgba(216, 180, 106, 0.2), rgba(96, 215, 203, 0.06)),
    #161b20;
}

.lp-price-card__top p {
  margin: 12px 0 0;
  color: rgba(247, 242, 233, 0.78);
}

.lp-price-card__top h3 {
  margin: 14px 0 0;
  color: var(--text);
  font-size: 1.42rem;
  line-height: 1.28;
}

.lp-price-list {
  display: grid;
  gap: 12px;
  margin: 26px 0;
}

.lp-price-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 14px;
}

.lp-price-list dt {
  color: rgba(247, 242, 233, 0.72);
  font-weight: 700;
}

.lp-price-list dd {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  margin: 0;
  color: rgba(247, 242, 233, 0.72);
  text-align: right;
}

.lp-amount {
  color: var(--gold-2);
  font-size: 1.68rem;
  font-weight: 900;
  white-space: nowrap;
}

.lp-price-card__note {
  min-height: 126px;
  margin: 0 0 24px;
  color: rgba(247, 242, 233, 0.76);
}

.lp-payment-actions {
  display: grid;
  gap: 10px;
}

.lp-pricing-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  border: 1px solid rgba(216, 180, 106, 0.24);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 250, 240, 0.06);
}

.lp-pricing-note__copy {
  display: grid;
  gap: 8px;
}

.lp-pricing-note p {
  margin: 0;
  color: rgba(247, 242, 233, 0.76);
}

.lp-pricing-note a {
  color: var(--gold-2);
  font-weight: 900;
  text-underline-offset: 4px;
  white-space: nowrap;
}

.lp-compare {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.9);
  box-shadow: var(--shadow);
}

.lp-compare-cards {
  display: none;
}

.lp-compare__row {
  display: grid;
  grid-template-columns: minmax(220px, 1.32fr) repeat(3, minmax(122px, 0.82fr));
  border-bottom: 1px solid rgba(24, 32, 39, 0.12);
}

.lp-compare__row:last-child {
  border-bottom: 0;
}

.lp-compare__row > span {
  display: flex;
  min-height: 56px;
  min-width: 0;
  align-items: center;
  justify-content: center;
  padding: 13px 14px;
  border-right: 1px solid rgba(24, 32, 39, 0.12);
  color: #29333b;
  font-size: 0.94rem;
  font-weight: 820;
  line-height: 1.42;
  text-align: center;
}

.lp-compare__row > span:first-child {
  justify-content: flex-start;
  color: var(--paper-text);
  font-weight: 900;
  text-align: left;
}

.lp-compare__row > span:last-child {
  border-right: 0;
}

.lp-compare__row--head {
  background: linear-gradient(135deg, #121a24, #23303c);
  color: var(--text);
  font-weight: 950;
}

.lp-compare__row--head > span {
  min-height: 60px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 950;
}

.lp-compare__row--head > span:first-child {
  color: var(--text);
}

.lp-compare__group-title {
  border-bottom: 1px solid rgba(24, 32, 39, 0.12);
  background:
    linear-gradient(90deg, rgba(216, 180, 106, 0.24), rgba(96, 215, 203, 0.12) 64%, rgba(255, 250, 240, 0.38));
}

.lp-compare__group-title > span {
  display: block;
  padding: 11px 14px;
  color: #5b3a1c;
  font-size: 0.92rem;
  font-weight: 950;
}

.lp-yes {
  display: inline-grid;
  width: 1.58rem;
  height: 1.58rem;
  place-items: center;
  border-radius: 999px;
  background: rgba(18, 108, 99, 0.13);
  color: #126c63;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1;
}

.lp-no {
  color: #929996;
  font-weight: 950;
}

.lp-estimate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.18rem 0.56rem;
  background: rgba(216, 180, 106, 0.18);
  color: #6d461f;
  font-size: 0.86rem;
  font-weight: 950;
  line-height: 1.25;
  white-space: nowrap;
}

.lp-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.lp-contact h2 {
  margin: 0;
  font-size: 2.35rem;
  line-height: 1.2;
}

.lp-contact p {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(247, 242, 233, 0.78);
}

.lp-contact-note {
  padding-top: 14px;
  border-top: 1px solid rgba(216, 180, 106, 0.28);
}

.lp-contact__actions {
  display: grid;
  gap: 12px;
  min-width: 280px;
}

.lp-legal {
  padding-block: 42px 28px;
  border-top: 1px solid rgba(24, 32, 39, 0.12);
  background:
    linear-gradient(180deg, var(--ivory-2), var(--ivory));
  color: var(--paper-muted);
  font-size: 0.8rem;
}

.lp-legal .lp-shell {
  width: min(100% - 40px, 1240px);
}

.lp-legal h2 {
  margin: 0;
  color: var(--paper-text);
  font-size: 1.08rem;
  line-height: 1.35;
}

.lp-legal a {
  color: inherit;
}

.lp-legal-list {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

.lp-legal-list div {
  display: grid;
  grid-template-columns: 8rem minmax(0, 1fr);
  gap: 12px;
}

.lp-legal-list dt {
  color: #303941;
  font-weight: 900;
}

.lp-legal-list dd {
  margin: 0;
}

.lp-legal__notice {
  margin: 0;
}

.lp-legal__notice {
  max-width: none;
}

.lp-legal-detail-link {
  margin: 14px 0 0;
}

.lp-legal-detail-link a {
  color: #5b3a1c;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.18em;
}

.lp-bottom-links {
  padding-block: 0 54px;
  background:
    linear-gradient(180deg, var(--ivory), #ded4bd);
  color: #5f665e;
  font-size: 0.88rem;
}

.lp-bottom-links__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-top: 1px solid rgba(24, 32, 39, 0.16);
  padding-top: 18px;
}

.lp-bottom-links__inner > span {
  flex-shrink: 0;
  color: #6d6f62;
  font-weight: 850;
  white-space: nowrap;
}

.lp-bottom-links nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.lp-bottom-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(24, 32, 39, 0.14);
  border-radius: var(--radius);
  padding: 6px 11px;
  background: rgba(255, 250, 240, 0.72);
  color: #3a2d20;
  font-weight: 900;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.lp-bottom-links a:hover {
  border-color: rgba(184, 117, 85, 0.42);
  background: #fffaf0;
  color: #7a531e;
  transform: translateY(-1px);
}

.lp-footer-disclaimer {
  display: grid;
  gap: 6px;
  padding-top: 16px;
  color: #6d6f62;
  text-align: center;
}

.lp-footer-disclaimer p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 650;
  line-height: 1.7;
}

.lp-footer-disclaimer small {
  color: #868776;
  font-size: 0.78rem;
  font-weight: 760;
}

.lp-site-footer {
  padding-block: 0 42px;
  background: #ded4bd;
}

.lp-legal-page {
  min-height: 100vh;
  color: var(--paper-text);
  background:
    linear-gradient(180deg, #111721 0, #15191f 330px, var(--ivory) 330px, #efe5d2 100%);
}

.lp-legal-hero {
  padding-block: 72px 54px;
  color: #fff;
  background:
    radial-gradient(ellipse at 14% 0%, rgba(216, 180, 106, 0.26), transparent 28rem),
    radial-gradient(ellipse at 86% 18%, rgba(96, 215, 203, 0.18), transparent 24rem),
    linear-gradient(135deg, #080b10, #15191f 56%, #3c2a19);
}

.lp-legal-hero h1 {
  margin: 8px 0 0;
  color: #fffaf0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.14;
}

.lp-legal-hero p {
  max-width: 760px;
  margin: 12px 0 0;
  color: rgba(247, 242, 233, 0.8);
  font-weight: 720;
  line-height: 1.8;
}

.lp-legal-page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.lp-legal-page-nav a {
  border: 1px solid rgba(216, 180, 106, 0.32);
  border-radius: var(--radius);
  color: #fffaf0;
  background: rgba(255, 250, 240, 0.08);
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
}

.lp-legal-page-section {
  scroll-margin-top: 96px;
  padding-block: 54px;
  background: var(--ivory);
}

.lp-legal-page-section:nth-of-type(odd) {
  background: #fffaf0;
}

.lp-legal-document {
  max-width: 960px;
}

.lp-legal-document h2 {
  margin: 0;
  color: #111721;
  font-size: clamp(1.45rem, 2.7vw, 2.1rem);
}

.lp-legal-document dl {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
}

.lp-legal-document dl div {
  display: grid;
  grid-template-columns: 12rem minmax(0, 1fr);
  gap: 16px;
  border: 1px solid rgba(24, 32, 39, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.9);
  padding: 16px;
  box-shadow: 0 18px 46px rgba(24, 32, 39, 0.08);
}

.lp-legal-document dt {
  color: #303941;
  font-weight: 950;
}

.lp-legal-document dd {
  margin: 0;
  color: #4d5863;
  font-weight: 650;
  line-height: 1.8;
}

.lp-legal-document article {
  margin-top: 16px;
  border: 1px solid rgba(24, 32, 39, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.9);
  padding: 18px;
  box-shadow: 0 18px 46px rgba(24, 32, 39, 0.08);
}

.lp-legal-document h3 {
  margin: 0;
  color: #6f4a18;
  font-size: 1rem;
}

.lp-legal-document p {
  margin: 8px 0 0;
  color: #4d5863;
  font-weight: 650;
  line-height: 1.85;
}

.lp-floating-actions {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 70;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 9px;
  border: 1px solid rgba(216, 180, 106, 0.24);
  border-radius: var(--radius);
  background: rgba(8, 11, 16, 0.84);
  padding: 9px;
  box-shadow: 0 22px 52px rgba(4, 8, 12, 0.34);
  backdrop-filter: blur(14px);
}

.lp-floating-actions a {
  display: grid;
  min-width: 132px;
  min-height: 54px;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: #fffaf0;
  background: rgba(255, 250, 240, 0.1);
  padding: 9px 13px;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
}

.lp-floating-actions__mini {
  color: #111721 !important;
  background: linear-gradient(135deg, var(--gold-2), var(--copper)) !important;
}

.lp-floating-actions__pack {
  background: linear-gradient(135deg, #111721, #49341c) !important;
}

.lp-floating-actions span {
  font-size: 0.78rem;
  font-weight: 850;
}

.lp-floating-actions strong {
  margin-top: 3px;
  font-size: 1rem;
  font-weight: 950;
  white-space: nowrap;
}

.lp-modal-open {
  overflow: hidden;
}

.lp-stores-modal[hidden] {
  display: none;
}

.lp-stores-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 32px);
  color: var(--paper-text);
}

.lp-stores-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 11, 16, 0.72);
  backdrop-filter: blur(9px);
}

.lp-stores-modal__panel {
  position: relative;
  display: grid;
  width: min(100%, 540px);
  gap: 13px;
  border: 1px solid rgba(216, 180, 106, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(245, 240, 230, 0.98));
  padding: clamp(18px, 4vw, 25px);
  box-shadow: 0 30px 90px rgba(4, 8, 12, 0.45);
}

.lp-stores-modal__close {
  position: absolute;
  top: 11px;
  right: 11px;
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(24, 32, 39, 0.14);
  border-radius: 999px;
  color: #303941;
  background: rgba(255, 255, 255, 0.74);
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.lp-stores-modal .lp-kicker {
  margin: 0;
  padding-right: 40px;
  color: #7a531e;
}

.lp-stores-modal h2,
.lp-stores-modal p,
.lp-stores-modal ul {
  margin: 0;
}

.lp-stores-modal h2 {
  color: #111721;
  font-size: clamp(1.35rem, 4.8vw, 1.85rem);
  line-height: 1.25;
}

.lp-stores-modal p {
  color: #303941;
  font-size: 1rem;
  font-weight: 760;
  line-height: 1.7;
}

.lp-stores-modal a:not(.lp-button) {
  color: #7a531e;
  font-weight: 900;
  text-underline-offset: 3px;
}

.lp-stores-modal ul {
  display: grid;
  gap: 8px;
  padding: 0;
  color: #4d5863;
  font-size: 0.94rem;
  line-height: 1.72;
  list-style: none;
}

.lp-stores-modal li {
  position: relative;
  padding-left: 23px;
}

.lp-stores-modal li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.lp-stores-modal__actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin-top: 3px;
}

.lp-stores-modal__actions .lp-button {
  min-height: 46px;
  padding-inline: 15px;
}

.lp-scroll-highlight {
  animation: lp-scroll-highlight 1500ms ease;
}

.lp-reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0) scale(0.995);
  transition:
    opacity 680ms ease,
    transform 780ms cubic-bezier(0.18, 0.8, 0.22, 1);
  will-change: opacity, transform;
}

.lp-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .lp-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@keyframes lp-scroll-highlight {
  0%,
  100% {
    box-shadow: var(--shadow);
  }
  35% {
    box-shadow: 0 0 0 5px rgba(240, 214, 146, 0.32), var(--shadow);
  }
}

@media (max-width: 900px) {
  .lp-header__inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 14px;
    gap: 12px;
  }

  .lp-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .lp-hero {
    min-height: 620px;
  }

  .lp-hero__title {
    font-size: 2.65rem;
  }

  .lp-service-grid,
  .lp-price-grid,
  .lp-contact {
    grid-template-columns: 1fr;
  }

  .lp-price-card__note {
    min-height: auto;
  }

  .lp-pricing-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .lp-contact__actions {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 700px) {
  .lp-shell {
    width: min(100% - 28px, var(--max));
  }

  .lp-section {
    padding-block: 64px;
  }

  .lp-hero {
    min-height: 660px;
  }

  .lp-hero__content {
    padding-block: 66px 76px;
  }

  .lp-hero__title {
    font-size: clamp(1.48rem, 7.2vw, 2.18rem);
  }

  .lp-hero__title span {
    white-space: nowrap;
  }

  .lp-hero__lead {
    font-size: 1rem;
  }

  .lp-hero__actions,
  .lp-button {
    width: 100%;
  }

  .lp-section__head h2,
  .lp-contact h2 {
    font-size: 1.78rem;
  }

  .lp-service-grid {
    display: flex;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-inline: max(0px, calc((100% - 330px) / 2));
    scroll-snap-type: x mandatory;
    padding: 2px max(0px, calc((100% - 330px) / 2)) 14px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .lp-service-grid .lp-card {
    flex: 0 0 min(100%, 330px);
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .lp-service-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
  }

  .lp-service-dot {
    width: 9px;
    height: 9px;
    cursor: pointer;
    border: 0;
    border-radius: 999px;
    padding: 0;
    background: rgba(24, 32, 39, 0.26);
    transition: width 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
  }

  .lp-service-dot.is-active {
    width: 24px;
    background: #b87555;
    box-shadow: 0 0 0 4px rgba(184, 117, 85, 0.14);
  }

  .lp-service-dot:focus-visible {
    outline: 2px solid #126c63;
    outline-offset: 4px;
  }

  .lp-card,
  .lp-price-card {
    padding: 20px;
  }

  .lp-price-list div {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .lp-price-list dd {
    justify-content: flex-start;
    text-align: left;
  }

  .lp-amount {
    font-size: 1.48rem;
  }

  .lp-compare-table {
    display: none;
  }

  .lp-compare-cards {
    display: block;
  }

  .lp-compare-cards--single {
    overflow: hidden;
    border: 1px solid var(--line-light);
    border-radius: var(--radius);
    background: rgba(255, 250, 240, 0.92);
    box-shadow: var(--shadow);
  }

  .lp-compare-cards--single > summary {
    display: flex;
    width: 100%;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    background:
      linear-gradient(90deg, rgba(216, 180, 106, 0.28), rgba(96, 215, 203, 0.12));
    color: #5b3a1c;
    font-weight: 950;
    line-height: 1.25;
    list-style: none;
  }

  .lp-compare-cards--single > summary::-webkit-details-marker {
    display: none;
  }

  .lp-compare-cards--single > summary::after {
    content: "+";
    display: inline-grid;
    width: 1.5rem;
    height: 1.5rem;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 999px;
    background: rgba(18, 108, 99, 0.12);
    color: #126c63;
    font-weight: 950;
    line-height: 1;
  }

  .lp-compare-cards--single[open] > summary {
    border-bottom: 1px solid rgba(24, 32, 39, 0.12);
  }

  .lp-compare-cards--single[open] > summary::after {
    content: "-";
  }

  .lp-compare-card__body {
    display: grid;
  }

  .lp-compare-card__group {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(24, 32, 39, 0.1);
    background: rgba(96, 215, 203, 0.08);
    color: #385048;
    font-size: 0.86rem;
    font-weight: 950;
  }

  .lp-compare-card__row {
    display: grid;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(24, 32, 39, 0.1);
  }

  .lp-compare-card__row:last-child {
    border-bottom: 0;
  }

  .lp-compare-card__row p {
    margin: 0;
    color: var(--paper-text);
    font-size: 0.9rem;
    font-weight: 900;
    line-height: 1.45;
  }

  .lp-compare-card__row dl {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin: 0;
  }

  .lp-compare-card__row dl div {
    display: grid;
    min-width: 0;
    justify-items: center;
    gap: 4px;
    border: 1px solid rgba(24, 32, 39, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.48);
    padding: 8px 4px;
  }

  .lp-compare-card__row dt {
    color: var(--paper-muted);
    font-size: 0.68rem;
    font-weight: 950;
    line-height: 1.15;
    text-align: center;
  }

  .lp-compare-card__row dd {
    display: grid;
    min-height: 1.58rem;
    place-items: center;
    margin: 0;
    line-height: 1;
  }

  .lp-legal-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .lp-bottom-links__inner {
    display: grid;
    justify-items: center;
    gap: 10px;
  }

  .lp-bottom-links nav {
    width: 100%;
  }

  .lp-legal-document dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .lp-legal-hero {
    padding-block: 58px 42px;
  }

  .lp-legal-page-nav {
    display: grid;
  }

  .lp-floating-actions {
    right: max(8px, env(safe-area-inset-right));
    bottom: max(8px, env(safe-area-inset-bottom));
    left: max(8px, env(safe-area-inset-left));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 6px;
  }

  .lp-floating-actions a {
    min-width: 0;
    min-height: 42px;
    padding: 6px 4px;
  }

  .lp-floating-actions span {
    font-size: 0.66rem;
  }

  .lp-floating-actions strong {
    font-size: 0.78rem;
  }

  .lp-stores-modal {
    align-items: end;
    padding: 14px;
  }

  .lp-stores-modal__panel {
    max-height: calc(100svh - 28px);
    overflow: auto;
  }

  .lp-stores-modal__actions {
    grid-template-columns: minmax(0, 1fr);
  }

  .lp-stores-modal__actions .lp-button {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .lp-nav a {
    padding-inline: 9px;
    font-size: 0.86rem;
  }

  .lp-hero__title {
    font-size: clamp(1.48rem, 7.2vw, 1.86rem);
  }

  .lp-button {
    padding-inline: 14px;
  }
}
