/* Laravel landing — brand alignment & UX enhancements */
/* Match header --gutter-padding horizontal values (main-style.css) */
:root {
  --header-h: 110px;
  --lp-gutter-x: 5rem;
  --lp-font: 'Inter', Lato, system-ui, sans-serif;
  --lp-font-display: 'Playfair Display', Georgia, serif;
  --btn-radius: 9999px;
}
@media only screen and (min-width: 1092px) {
  :root { --lp-gutter-x: 10rem; }
}
@media only screen and (max-width: 992px) {
  :root { --lp-gutter-x: 2.5rem; }
}
@media only screen and (max-width: 576px) {
  :root { --lp-gutter-x: 1.5rem; }
}

.lp-v2 .wrap {
  max-width: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--lp-gutter-x);
  padding-right: var(--lp-gutter-x);
  box-sizing: border-box;
}

.lp-v2 .btn {
  border-radius: var(--btn-radius);
  padding: 12px 28px;
  font-size: 16px;
  gap: 8px;
}
.lp-v2 .btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  box-shadow: 0 4px 16px rgba(6, 174, 212, 0.35);
}
.lp-v2 .btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-dark) 0%, #047a96 100%);
}
.lp-v2 .hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.35) !important;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--btn-radius);
}
.lp-v2 .hero .btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.6) !important;
  background: rgba(255, 255, 255, 0.12);
}

.lp-v2 .hero-search-box,
.lp-v2 .search-band .search-box {
  border-radius: var(--btn-radius);
  padding: 5px;
  border: 2px solid var(--accent);
  box-shadow: 0 4px 20px rgba(6, 174, 212, 0.12);
}
.lp-v2 .hero-search-box input,
.lp-v2 .search-band .search-box input {
  border-radius: var(--btn-radius);
  font-size: 16px;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
}
.lp-v2 .hero-search-box button,
.lp-v2 .search-band .search-box button {
  border-radius: var(--btn-radius);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  padding: 10px 22px;
  width: auto;
  flex-shrink: 0;
}

.lp-v2 .section-head.center {
  max-width: 820px;
  width: 100%;
  min-width: 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  box-sizing: border-box;
}
.lp-v2 .section-head.center h2 {
  overflow-wrap: break-word;
  word-wrap: break-word;
  line-height: 1.2;
}
.lp-v2 .hl {
  white-space: normal;
  overflow-wrap: break-word;
}
.lp-v2 .section-head.center p {
  margin-left: auto;
  margin-right: auto;
  max-width: 62ch;
}

/* Trust logo bar — larger + mobile scroll */
.lp-v2 .logobar { padding: 36px 0; }
.lp-v2 .logobar-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.lp-v2 .logobar-scroll::-webkit-scrollbar { display: none; }
.lp-v2 .logobar-track {
  display: flex;
  align-items: center;
  gap: 52px;
  flex-wrap: nowrap;
  width: max-content;
  min-width: 100%;
  padding: 0 var(--lp-gutter-x);
  box-sizing: border-box;
}
.lp-v2 .logobar img {
  height: 36px;
  width: auto;
  max-width: none;
  opacity: 0.8;
  flex-shrink: 0;
  object-fit: contain;
}
@media (min-width: 993px) {
  .lp-v2 .logobar-scroll { overflow: visible; }
  .lp-v2 .logobar-track { justify-content: center; width: 100%; }
  .lp-v2 .logobar img { height: 40px; }
}
@media (max-width: 992px) {
  .lp-v2 .logobar-track { justify-content: flex-start; gap: 40px; padding-right: calc(var(--lp-gutter-x) + 12px); }
  .lp-v2 .logobar img { height: 32px; }
}

/* How it works timeline */
.lp-v2 .steps-line {
  top: 18px;
  left: 18px;
  width: calc((200% - 112px) / 3 + 56px);
  right: auto;
}

/* Pricing card — centered text, tight list */
.lp-v2 .price-card {
  align-items: center;
  text-align: center;
  border-radius: 16px;
  gap: 12px;
}
.lp-v2 .price-card ul {
  margin: 0;
  padding: 0;
  gap: 2px;
  align-items: center;
  width: 100%;
}
.lp-v2 .price-card li {
  justify-content: center;
  text-align: center;
  padding: 0;
  margin: 0;
  line-height: 1.35;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-v2 .price-card li::before {
  position: static;
  flex-shrink: 0;
}
.lp-v2 .price-card .btn { max-width: 220px; width: 100%; }

/* Modal */
.lp-v2-modal.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lp-v2-modal .modal-content {
  background: #fff;
  border-radius: 8px;
  position: relative;
  max-width: 700px;
  width: 100%;
  overflow: hidden;
}
.lp-v2-modal .close-button {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--text-soft);
  z-index: 10;
  line-height: 1;
}
.lp-v2-modal .calendly-iframe-wrapper {
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
}

.lp-v2 [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.lp-v2 [data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .lp-v2 [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Hero — same horizontal edges as header logo */
.lp-v2 .hero-centered .wrap {
  width: 100%;
  max-width: 100%;
}
.lp-v2 .hero-search-center {
  width: 100%;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lp-v2 .hero-search-box {
  width: 100%;
  max-width: 100%;
}
.lp-v2 .hero-cta-row.hero-cta-center {
  display: flex;
  justify-content: center;
  width: 100%;
}
.lp-v2 .hero-centered p[data-reveal],
.lp-v2 .hero-centered > .wrap > p {
  max-width: 820px !important;
}

/* Support / Sell pillar cards */
.lp-v2 .pillar-grid {
  align-items: stretch;
  gap: 28px;
}
.lp-v2 .pillar-card {
  border-radius: 12px;
  padding: 36px 40px;
  border: 1px solid #e5eaee;
  background: #fff;
  box-shadow: 0 8px 32px rgba(11, 74, 111, 0.07);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
}
.lp-v2 .pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(11, 74, 111, 0.12);
}
.lp-v2 .pillar-card h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
  text-align: left;
  width: 100%;
}
.lp-v2 .pillar-card .pillar-lead {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-soft);
  margin: 0;
  text-align: left;
  width: 100%;
  max-width: none;
}
.lp-v2 .pillar-card .pillar-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: stretch;
}
.lp-v2 .pillar-card .pillar-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-soft);
  text-align: left;
  transform: none;
}
.lp-v2 .pillar-card .pillar-list li:hover {
  transform: none;
}
.lp-v2 .pillar-card .pillar-check {
  flex: 0 0 16px;
  width: 16px;
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
}
.lp-v2 .pillar-card .pillar-list li > span:last-child {
  flex: 1 1 auto;
  min-width: 0;
}
@media (max-width: 576px) {
  .lp-v2 .pillar-card {
    padding: 28px 24px;
  }
}

/* Product section — QR story phone box */
.lp-v2 #product .section-head.center {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.lp-v2 .qr-power-phone-body {
  padding: 20px 18px;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-v2 .qr-power-phone-body .story-item {
  padding: 9px 12px;
}

/* Why vendors switch — mobile overflow fix */
.lp-v2 .replace-grid {
  min-width: 0;
}
.lp-v2 .replace-grid > * {
  min-width: 0;
  max-width: 100%;
}
.lp-v2 .replace-grid h2 {
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.lp-v2 .replace-grid .stat-chip {
  display: inline-flex;
  flex-wrap: wrap;
  max-width: 100%;
  white-space: normal;
  line-height: 1.45;
}
.lp-v2 .tool-chip-row {
  max-width: 100%;
  gap: 8px;
}
.lp-v2 .tool-chip {
  max-width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.35;
}
.lp-v2 .converge-graphic {
  overflow: visible;
  max-width: 100%;
  width: 100%;
  min-height: 360px;
  padding: 20px 0;
  box-sizing: border-box;
}
.lp-v2 .one-tool {
  max-width: 100%;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .lp-v2 .replace-grid {
    gap: 28px;
  }
  .lp-v2 .converge-orbit {
    display: none;
  }
  .lp-v2 .converge-graphic {
    min-height: 0;
    padding: 8px 0 0;
  }
  .lp-v2 .one-tool {
    padding: 24px 20px;
  }
}
@media (max-width: 480px) {
  .lp-v2 .replace-grid h2 {
    font-size: 22px !important;
  }
  .lp-v2 .tool-chip {
    font-size: 12.5px;
    padding: 6px 11px;
  }
}

@media (max-width: 768px) {
  .lp-v2 .section-head h2 { font-size: 26px; }
  .lp-v2 .journey-section .section-head.center h2 { font-size: 24px; line-height: 1.25; }
  .lp-v2 .hero-centered h1 { font-size: 34px; }
}
