.lp-landing-page {
  --lp-theme: #1a56db;
  --lp-theme-dark: #1035a0;
  --lp-theme-soft: #eef3ff;
  --lp-theme-rgb: 26, 86, 219;
  --lp-hero-from: #07183f;
  --lp-hero-to: #0b2163;
  --lp-badge-color: #bfdbfe;
  background: linear-gradient(180deg, #f8fafc 0, #fff 420px);
  color: #334155;
  padding: 26px 0 80px;
}

.lp-landing-page.theme-camera {
  --lp-theme: #059669;
  --lp-theme-dark: #047857;
  --lp-theme-soft: #ecfdf5;
  --lp-theme-rgb: 5, 150, 105;
  --lp-hero-from: #033b31;
  --lp-hero-to: #064e3b;
  --lp-badge-color: #a7f3d0;
}

.lp-landing-page.theme-pc {
  --lp-theme: #d97706;
  --lp-theme-dark: #b45309;
  --lp-theme-soft: #fff7ed;
  --lp-theme-rgb: 217, 119, 6;
  --lp-hero-from: #431407;
  --lp-hero-to: #7c2d12;
  --lp-badge-color: #fde68a;
}

.lp-shell,
.lp-landing-page.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-right: 24px;
  padding-left: 24px;
}

.lp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 22px;
  color: #94a3b8;
  font-size: 0.8rem;
}

.lp-breadcrumb a {
  color: #64748b;
  font-weight: 650;
  text-decoration: none;
}

.lp-breadcrumb a:hover,
.lp-breadcrumb a:focus-visible {
  color: var(--lp-theme);
}

.lp-breadcrumb > i {
  font-size: 0.55rem;
}

.lp-breadcrumb span {
  color: #0f172a;
  font-weight: 750;
}

.lp-service-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(30px, 3.5vw, 44px);
  align-items: center;
  overflow: hidden;
  margin-bottom: 22px;
  padding: clamp(36px, 5vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 88% 15%,
      rgba(var(--lp-theme-rgb), 0.34),
      transparent 27%
    ),
    linear-gradient(135deg, var(--lp-hero-from), var(--lp-hero-to));
  color: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}

.lp-landing-page .lp-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 48px;
  padding: 64px 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 88% 15%,
      rgba(var(--lp-theme-rgb), 0.34),
      transparent 27%
    ),
    linear-gradient(135deg, var(--lp-hero-from), var(--lp-hero-to));
  color: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}

.lp-landing-page .lp-hero h1 {
  margin: 0 0 18px;
  color: #fff;
  font:
    850 clamp(2.15rem, 4vw, 3.5rem)/1.1 "Barlow",
    sans-serif;
}

.lp-service-hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.11) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
  content: "";
  opacity: 0.4;
  pointer-events: none;
}

.lp-service-copy,
.lp-service-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.lp-badge,
.lp-landing-page .lp-badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--lp-badge-color);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.lp-service-copy h1 {
  max-width: none;
  margin: 0 0 18px;
  color: #fff;
  font:
    850 clamp(1.85rem, 2.75vw, 2.5rem)/1.14 "Barlow",
    sans-serif;
  letter-spacing: -0.4px;
  white-space: nowrap;
}

.lp-service-copy h1 em {
  display: block;
  margin-top: 5px;
  color: var(--lp-badge-color);
  font-style: normal;
  white-space: nowrap;
}

.lp-service-copy > p {
  max-width: 650px;
  margin: 0 0 22px;
  color: #dbe4f0;
  font-size: 0.98rem;
  line-height: 1.75;
}

.lp-hero-checks {
  display: grid;
  gap: 9px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  color: #e2e8f0;
  font-size: 0.84rem;
  font-weight: 650;
}

.lp-hero-checks li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.lp-hero-checks i {
  margin-top: 2px;
  color: var(--lp-badge-color);
}

.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lp-btn,
.lp-landing-page .btn-cta {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.lp-btn:hover,
.lp-landing-page .btn-cta:hover {
  transform: translateY(-2px);
}

.lp-btn-primary,
.lp-landing-page .btn-cta {
  background: var(--lp-theme);
  color: #fff;
  box-shadow: 0 10px 24px rgba(var(--lp-theme-rgb), 0.32);
}

.lp-btn-primary:hover,
.lp-btn-primary:focus-visible,
.lp-landing-page .btn-cta:hover {
  background: var(--lp-theme-dark);
  color: #fff;
}

.lp-btn-secondary {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.lp-btn-secondary:hover,
.lp-btn-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.lp-btn-light {
  background: #fff;
  color: var(--lp-theme-dark);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.14);
}

.lp-btn-light:hover,
.lp-btn-light:focus-visible {
  background: var(--lp-theme-soft);
  color: var(--lp-theme-dark);
}

.lp-service-visual {
  justify-self: end;
  width: 100%;
  max-width: 470px;
}

.lp-service-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.38);
}

.lp-service-visual.lp-visual-portrait img {
  object-position: center 48%;
}

@media (min-width: 992px) {
  .theme-pc .lp-service-hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
    gap: 36px;
  }

  .theme-pc .lp-service-visual {
    max-width: 390px;
  }
}

.lp-visual-card {
  position: relative;
  width: calc(100% - 36px);
  margin: -36px auto 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  background: rgba(3, 16, 39, 0.86);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
}

.lp-visual-card span,
.lp-visual-card strong {
  display: block;
}

.lp-visual-card span {
  margin-bottom: 4px;
  color: var(--lp-badge-color);
  font-size: 0.7rem;
  font-weight: 750;
  text-transform: uppercase;
}

.lp-visual-card strong {
  color: #fff;
  font-size: 0.83rem;
}

.lp-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.lp-trust-grid article {
  display: flex;
  gap: 13px;
  align-items: center;
  min-width: 0;
  padding: 17px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.lp-trust-grid article > i {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  place-items: center;
  border-radius: 12px;
  background: var(--lp-theme-soft);
  color: var(--lp-theme);
}

.lp-trust-grid strong,
.lp-trust-grid span {
  display: block;
}

.lp-trust-grid strong {
  margin-bottom: 3px;
  color: #0f172a;
  font-size: 0.86rem;
}

.lp-trust-grid span {
  color: #64748b;
  font-size: 0.73rem;
  line-height: 1.45;
}

.lp-quick-nav {
  position: sticky;
  z-index: 10;
  top: 78px;
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  margin-bottom: 52px;
  padding: 7px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
}

.lp-quick-nav a {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: #475569;
  font-size: 0.76rem;
  font-weight: 750;
  text-decoration: none;
}

.lp-quick-nav a:hover,
.lp-quick-nav a:focus-visible {
  background: var(--lp-theme-soft);
  color: var(--lp-theme-dark);
}

.lp-section {
  scroll-margin-top: 145px;
  margin-bottom: 72px;
}

.lp-section-heading {
  max-width: 680px;
  margin: 0 auto 34px;
  text-align: center;
}

.lp-section-heading > span,
.lp-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--lp-theme);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.lp-section-heading h2,
.lp-commitment-copy h2,
.lp-final-cta h2 {
  margin: 0 0 12px;
  color: #0f172a;
  font:
    850 clamp(1.4rem, 2.2vw, 1.9rem)/1.2 "Barlow",
    sans-serif;
}

.lp-section-heading p {
  margin: 0;
  color: #64748b;
  font-size: 0.91rem;
  line-height: 1.7;
}

.lp-package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.lp-package-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 400px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.lp-package-card:hover {
  border-color: rgba(var(--lp-theme-rgb), 0.45);
  box-shadow: 0 18px 44px rgba(var(--lp-theme-rgb), 0.14);
  transform: translateY(-5px);
}

.lp-package-featured {
  border-color: rgba(var(--lp-theme-rgb), 0.45);
  background: linear-gradient(180deg, var(--lp-theme-soft), #fff 45%);
}

.lp-package-label {
  width: fit-content;
  margin-bottom: 24px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--lp-theme-soft);
  color: var(--lp-theme-dark);
  font-size: 0.65rem;
  font-weight: 850;
  text-transform: uppercase;
}

.lp-package-card > i {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 14px;
  background: var(--lp-theme-soft);
  color: var(--lp-theme);
  font-size: 1.25rem;
}

.lp-package-card h3 {
  margin: 0 0 9px;
  color: #0f172a;
  font-size: 1.08rem;
}

.lp-package-card p {
  margin: 0 0 18px;
  color: #64748b;
  font-size: 0.8rem;
  line-height: 1.65;
}

.lp-package-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  color: #475569;
  font-size: 0.76rem;
  list-style: none;
}

.lp-package-card li {
  position: relative;
  padding-left: 19px;
}

.lp-package-card li::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lp-theme);
  content: "";
}

.lp-package-price {
  margin-top: auto;
  color: var(--lp-theme-dark);
  font:
    850 1.12rem "Barlow",
    sans-serif;
}

.lp-process-section {
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  background:
    radial-gradient(
      circle at top right,
      rgba(var(--lp-theme-rgb), 0.1),
      transparent 30%
    ),
    #f8fafc;
}

.lp-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.lp-process-grid article {
  position: relative;
  min-width: 0;
  padding: 22px;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #fff;
}

.lp-process-grid b {
  position: absolute;
  top: 14px;
  right: 16px;
  color: rgba(var(--lp-theme-rgb), 0.14);
  font:
    900 2.3rem "Barlow",
    sans-serif;
}

.lp-process-grid i {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 12px;
  background: var(--lp-theme-soft);
  color: var(--lp-theme);
}

.lp-process-grid h3 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 0.91rem;
}

.lp-process-grid p {
  margin: 0;
  color: #64748b;
  font-size: 0.74rem;
  line-height: 1.65;
}

.lp-commitment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

.lp-commitment-copy {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  background: #fff;
}

.lp-commitment-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.lp-commitment-list article {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 15px;
  border-radius: 15px;
  background: #f8fafc;
}

.lp-commitment-list article > i {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border-radius: 11px;
  background: var(--lp-theme-soft);
  color: var(--lp-theme);
}

.lp-commitment-list strong,
.lp-commitment-list span {
  display: block;
}

.lp-commitment-list strong {
  margin-bottom: 4px;
  color: #0f172a;
  font-size: 0.84rem;
}

.lp-commitment-list span {
  color: #64748b;
  font-size: 0.73rem;
  line-height: 1.55;
}

.lp-final-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 24px;
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 255, 255, 0.18),
      transparent 30%
    ),
    linear-gradient(145deg, var(--lp-theme), var(--lp-theme-dark));
  color: #fff;
  box-shadow: 0 20px 46px rgba(var(--lp-theme-rgb), 0.2);
}

.lp-final-cta > i {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.3rem;
}

.lp-final-cta h2 {
  color: #fff;
}

.lp-final-cta p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  line-height: 1.7;
}

.lp-mobile-cta {
  display: none;
}

/* Compatibility for the existing Laptop landing page. */
.lp-landing-page .row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.lp-landing-page .col-lg-8 {
  min-width: 0;
  flex: 1 1 62%;
}

.lp-landing-page .col-lg-4 {
  min-width: 260px;
  flex: 1 1 30%;
}

.lp-landing-page .col-md-6 {
  min-width: 280px;
  flex: 1 1 44%;
}

.lp-landing-page .col-md-3 {
  min-width: 210px;
  flex: 1 1 20%;
}

.lp-landing-page .d-flex {
  display: flex;
}

.lp-landing-page .flex-wrap {
  flex-wrap: wrap;
}

.lp-landing-page .gap-2 {
  gap: 8px;
}

.lp-landing-page .text-center {
  text-align: center;
}

.lp-landing-page .price-box {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.lp-landing-page .table-responsive {
  overflow-x: auto;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #fff;
}

.lp-landing-page .table-price {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.lp-landing-page .table-price th,
.lp-landing-page .table-price td {
  padding: 16px;
  border-bottom: 1px solid #e2e8f0;
  color: #475569;
  font-size: 0.82rem;
  line-height: 1.55;
  text-align: left;
}

.lp-landing-page .table-price th {
  background: #f8fafc;
  color: #0f172a;
  font-size: 0.74rem;
  text-transform: uppercase;
}

.lp-landing-page .table-price tr:hover td {
  background: var(--lp-theme-soft);
}

.lp-landing-page .step-card {
  height: 100%;
  padding: 22px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
}

.lp-landing-page .step-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 12px;
  background: var(--lp-theme-soft);
  color: var(--lp-theme);
  font-weight: 850;
}

.lp-landing-page :focus-visible {
  outline: 3px solid rgba(var(--lp-theme-rgb), 0.35);
  outline-offset: 3px;
}

@media (max-width: 991px) {
  .lp-service-hero {
    grid-template-columns: 1fr;
  }

  .lp-service-copy h1,
  .lp-service-copy h1 em {
    white-space: normal;
  }

  .lp-service-visual {
    justify-self: start;
    max-width: 620px;
  }

  .lp-package-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-package-featured {
    order: -1;
  }

  .lp-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-commitment-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .lp-landing-page {
    padding-top: 18px;
    padding-bottom: 104px;
  }

  .lp-shell,
  .lp-landing-page.container {
    padding-right: 16px;
    padding-left: 16px;
  }

  .lp-service-hero {
    gap: 28px;
    padding: 28px 20px;
    border-radius: 20px;
  }

  .lp-landing-page .lp-hero {
    padding: 36px 20px;
    border-radius: 20px;
  }

  .lp-service-copy h1 {
    font-size: clamp(1.65rem, 7vw, 2.05rem);
  }

  .lp-hero-actions {
    display: grid;
  }

  .lp-btn,
  .lp-landing-page .btn-cta {
    width: 100%;
  }

  .lp-service-visual {
    max-width: none;
  }

  .lp-service-visual img {
    border-radius: 16px;
  }

  .lp-trust-grid,
  .lp-package-grid,
  .lp-process-grid {
    grid-template-columns: 1fr;
  }

  .lp-trust-grid {
    gap: 9px;
  }

  .lp-quick-nav {
    top: 74px;
    justify-content: flex-start;
    overflow-x: auto;
    margin-right: -16px;
    margin-bottom: 42px;
    margin-left: -16px;
    padding-right: 16px;
    padding-left: 16px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    scrollbar-width: none;
  }

  .lp-quick-nav::-webkit-scrollbar {
    display: none;
  }

  .lp-quick-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .lp-section {
    margin-bottom: 52px;
  }

  .lp-package-card {
    min-height: 0;
    padding: 23px;
  }

  .lp-process-section,
  .lp-commitment-copy,
  .lp-final-cta {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .lp-mobile-cta {
    position: fixed;
    z-index: 850;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: block;
    padding: 7px;
    border: 1px solid rgba(var(--lp-theme-rgb), 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(12px);
  }

  .lp-mobile-cta a {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 999px;
    background: var(--lp-theme);
    color: #fff;
    font-size: 0.84rem;
    font-weight: 850;
    text-decoration: none;
  }

  .lp-landing-page .col-lg-8,
  .lp-landing-page .col-lg-4,
  .lp-landing-page .col-md-6,
  .lp-landing-page .col-md-3 {
    min-width: 0;
    flex-basis: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-package-card,
  .lp-btn,
  .lp-landing-page .btn-cta {
    transition: none;
  }
}
