/*
 * RushTech POS professional marketing theme
 * Loaded after lp_style.css so the existing content and components remain
 * intact while the public website receives one consistent visual system.
 */
:root {
  --lp-ink: #10231f;
  --lp-ink-2: #183b34;
  --lp-teal: #087f6d;
  --lp-teal-dk: #056657;
  --lp-teal-soft: #eaf8f4;
  --lp-amber: #f3a712;
  --lp-muted: #60736e;
  --lp-line: #dbe7e3;
  --lp-soft: #f4f8f6;
  --lp-paper: #ffffff;
  --lp-success: #159467;
  --lp-danger: #cf3f4f;
  --lp-shadow-sm: 0 10px 30px rgba(16, 35, 31, .06);
  --lp-shadow-md: 0 22px 60px rgba(16, 35, 31, .10);
  --lp-radius-sm: 14px;
  --lp-radius-md: 22px;
  --lp-radius-lg: 30px;
}

html {
  scroll-padding-top: 88px;
}

body {
  overflow-x: hidden;
  color: var(--lp-ink);
  background:
    radial-gradient(circle at 0 0, rgba(8, 127, 109, .045), transparent 26rem),
    #fff;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection {
  color: #fff;
  background: var(--lp-teal);
}

.lp-container,
.lp-section,
.lp-hero-inner,
.lp-page-hero-inner,
.pricing-hero-inner {
  max-width: 1220px;
}

.lp-section {
  padding: 0 28px;
}

.lp-section-wrap {
  position: relative;
  padding: 104px 0;
}

.lp-section-wrap.soft {
  background:
    linear-gradient(180deg, rgba(244, 248, 246, .96), rgba(247, 250, 249, .96));
}

.lp-section-wrap.dark {
  background: var(--lp-ink);
}

/* Navigation */
.lp-nav {
  top: 0;
  border-bottom: 1px solid rgba(219, 231, 227, .86);
  background: rgba(255, 255, 255, .91);
  box-shadow: 0 8px 28px rgba(16, 35, 31, .04);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}

.lp-nav-inner {
  min-height: 76px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.lp-brand {
  gap: 12px;
  color: var(--lp-ink);
  font-size: 17px;
  font-weight: 850;
  letter-spacing: -.02em;
}

.lp-brand img {
  width: 40px;
  height: 40px;
  padding: 3px;
  border-color: rgba(8, 127, 109, .14);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(16, 35, 31, .08);
}

.lp-nav-links {
  gap: 1px;
}

.lp-nav-links .nav-link {
  padding: 10px 13px;
  border-radius: 11px;
  color: #48615b;
  font-size: 13px;
  font-weight: 720;
}

.lp-nav-links .nav-link:hover,
.lp-nav-links .nav-link.active {
  color: var(--lp-teal-dk);
  background: var(--lp-teal-soft);
}

.lp-nav-right .lp-btn {
  min-height: 46px;
  padding-inline: 20px;
}

.lp-hamburger {
  width: 44px;
  height: 44px;
  border-color: var(--lp-line);
  border-radius: 12px;
  background: #fff;
}

.lp-mobile-nav {
  padding: 10px 22px 22px;
  border-color: var(--lp-line);
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 20px 30px rgba(16, 35, 31, .08);
}

.lp-mobile-nav .lp-btn {
  color: #fff;
}

/* Type and actions */
.lp-h1 {
  font-size: clamp(42px, 5.3vw, 76px);
  font-weight: 850;
  line-height: .99;
  letter-spacing: -.055em;
}

.lp-h2 {
  font-size: clamp(31px, 4vw, 50px);
  font-weight: 820;
  line-height: 1.06;
  letter-spacing: -.04em;
}

.lp-h3 {
  letter-spacing: -.02em;
}

.lp-lead {
  max-width: 690px;
  color: var(--lp-muted);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.75;
}

.lp-kicker {
  margin-bottom: 13px;
  color: var(--lp-teal);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .14em;
}

.lp-kicker.light {
  color: var(--lp-teal);
}

.lp-section-head {
  max-width: 720px;
  margin-bottom: 54px;
}

.lp-section-head .lp-h2 {
  margin: 7px 0 16px;
}

.lp-btn {
  min-height: 48px;
  padding: 11px 22px;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 780;
  letter-spacing: -.01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.lp-btn:hover {
  transform: translateY(-2px);
}

.lp-btn-primary {
  background: linear-gradient(135deg, var(--lp-teal), var(--lp-teal-dk));
  box-shadow: 0 12px 26px rgba(8, 127, 109, .22);
}

.lp-btn-primary:hover {
  box-shadow: 0 16px 32px rgba(8, 127, 109, .28);
}

.lp-btn-amber {
  color: #302000;
  background: linear-gradient(135deg, #ffc64d, var(--lp-amber));
  box-shadow: 0 12px 28px rgba(243, 167, 18, .23);
}

.lp-btn-outline {
  border-color: rgba(8, 127, 109, .34);
  color: var(--lp-teal-dk);
  background: rgba(255, 255, 255, .8);
}

.lp-btn-dark {
  background: var(--lp-ink);
  box-shadow: 0 10px 24px rgba(16, 35, 31, .16);
}

.lp-btn-lg {
  min-height: 54px;
  padding: 13px 27px;
  font-size: 15px;
}

/* Home hero */
.lp-hero {
  overflow: hidden;
  color: var(--lp-ink);
  background:
    radial-gradient(circle at 83% 10%, rgba(255, 255, 255, .9), transparent 24rem),
    radial-gradient(circle at 12% 88%, rgba(243, 167, 18, .12), transparent 23rem),
    linear-gradient(135deg, #eef9f5 0%, #f7fbf9 54%, #e8f5f1 100%);
  border-bottom: 1px solid var(--lp-line);
}

.lp-hero::before {
  top: -250px;
  right: -140px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(8, 127, 109, .12), transparent 68%);
}

.lp-hero::after {
  bottom: -170px;
  left: -90px;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(243, 167, 18, .10), transparent 68%);
}

.lp-hero-inner {
  min-height: 680px;
  padding: 80px 28px 92px;
  grid-template-columns: minmax(0, .93fr) minmax(460px, 1.07fr);
  gap: 72px;
}

.lp-hero .lp-h1 {
  max-width: 650px;
  margin-bottom: 22px;
  color: var(--lp-ink);
}

.lp-hero .lp-lead.light {
  color: #536b65;
}

.lp-eyebrow {
  margin-bottom: 25px;
  padding: 8px 13px;
  border-color: rgba(8, 127, 109, .15);
  color: var(--lp-teal-dk);
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 8px 20px rgba(16, 35, 31, .05);
  font-size: 11px;
  letter-spacing: .12em;
}

.lp-hero-actions {
  margin-top: 31px;
}

.lp-hero .lp-btn-ghost,
.pricing-hero .lp-btn-ghost {
  border-color: rgba(16, 35, 31, .16);
  color: var(--lp-ink);
  background: rgba(255, 255, 255, .68);
}

.lp-hero .lp-btn-ghost:hover,
.pricing-hero .lp-btn-ghost:hover {
  border-color: rgba(8, 127, 109, .34);
  background: #fff;
}

.lp-hero-badges {
  gap: 12px 18px;
  margin-top: 34px;
  padding-top: 25px;
  border-color: rgba(8, 127, 109, .12);
}

.lp-hero-badge {
  color: #536b65;
  font-size: 12px;
  font-weight: 720;
}

.lp-hero-badge svg {
  width: 16px;
  height: 16px;
  color: var(--lp-teal);
  fill: var(--lp-teal);
}

.lp-slide-box {
  min-height: 430px;
  padding: 12px;
  border: 1px solid rgba(8, 127, 109, .13);
  border-radius: 28px;
  background: rgba(255, 255, 255, .74);
  box-shadow:
    0 34px 80px rgba(16, 35, 31, .18),
    0 2px 0 rgba(255, 255, 255, .9) inset;
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.lp-slide-box::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 23px;
  width: 34px;
  height: 7px;
  border-radius: 999px;
  background: rgba(16, 35, 31, .18);
}

.lp-slide-item {
  inset: 30px 12px 12px;
}

.lp-slide-item img {
  border-radius: 18px;
  background: #fff;
}

/* Proof strip */
.lp-trust {
  position: relative;
  z-index: 4;
  max-width: 1164px;
  margin: -34px auto 0;
  overflow: hidden;
  border: 1px solid var(--lp-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--lp-shadow-md);
}

.lp-trust-item {
  min-height: 110px;
  padding: 24px 26px;
}

.lp-trust-item strong {
  font-size: 18px;
  letter-spacing: -.02em;
}

.lp-trust-item .lp-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
}

/* Surfaces and cards */
.lp-card,
.lp-feat,
.lp-app-card,
.lp-faq-item,
.lp-form-card {
  border-color: var(--lp-line);
  border-radius: var(--lp-radius-md);
  box-shadow: var(--lp-shadow-sm);
}

.lp-card {
  padding: 30px;
}

.lp-card:hover,
.lp-app-card:hover {
  border-color: rgba(8, 127, 109, .24);
  box-shadow: var(--lp-shadow-md);
  transform: translateY(-5px);
}

.lp-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
}

.lp-icon.teal {
  color: var(--lp-teal);
  background: #e6f6f1;
}

.lp-icon.amber {
  color: #a96200;
  background: #fff4d7;
}

.lp-icon.ink {
  color: #304b45;
  background: #edf3f1;
}

.lp-icon.green {
  color: var(--lp-success);
  background: #e9f8ef;
}

.lp-feat {
  min-height: 150px;
  padding: 26px;
  gap: 19px;
  background: rgba(255, 255, 255, .92);
}

.lp-feat-body h3 {
  color: var(--lp-ink);
  font-size: 17px;
  letter-spacing: -.02em;
}

.lp-feat-body p {
  line-height: 1.65;
}

.lp-steps {
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--lp-line) !important;
  border-radius: 24px !important;
  background: #fff;
  box-shadow: var(--lp-shadow-sm);
}

.lp-step {
  min-height: 220px;
  padding: 30px;
  border: 0;
  border-radius: 17px;
  background: var(--lp-soft);
}

.lp-step::before {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: var(--lp-teal);
  box-shadow: 0 9px 20px rgba(8, 127, 109, .18);
}

.lp-step h3 {
  margin-top: 30px;
  font-size: 19px;
}

.lp-checks {
  gap: 9px;
}

.lp-check {
  padding: 11px 13px;
  border: 1px solid rgba(219, 231, 227, .85);
  border-radius: 12px;
  background: rgba(255, 255, 255, .76);
  color: #29463f;
  font-size: 14px;
}

.lp-tick {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--lp-teal);
  font-size: 11px;
}

/* Inner page hero */
.lp-page-hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  color: var(--lp-ink);
  border-bottom: 1px solid var(--lp-line);
  background:
    radial-gradient(circle at 88% 18%, rgba(243, 167, 18, .11), transparent 21rem),
    linear-gradient(135deg, #edf9f5, #f8fbfa 58%, #e8f5f1);
}

.lp-page-hero::after {
  content: "";
  position: absolute;
  right: 7%;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(8, 127, 109, .11);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(8, 127, 109, .035), 0 0 0 96px rgba(8, 127, 109, .025);
}

.lp-page-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 420px;
  padding: 78px 28px 86px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lp-breadcrumb {
  margin-bottom: 28px;
  color: #80908c;
}

.lp-breadcrumb a {
  color: var(--lp-teal);
}

.lp-page-hero .lp-h1 {
  max-width: 820px;
  color: var(--lp-ink);
  font-size: clamp(40px, 5vw, 66px);
}

.lp-page-hero .lp-lead.light {
  max-width: 720px;
  color: #536b65;
}

.lp-page-features .lp-section-wrap:nth-of-type(even) {
  background: linear-gradient(180deg, #f6f9f8, #f9fbfa);
}

.lp-split {
  gap: 76px;
}

/* Android app ecosystem */
.lp-app-flow {
  margin-top: -10px;
}

.lp-app-flow span {
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 6px 18px rgba(16, 35, 31, .04);
}

.lp-app-grid {
  gap: 22px;
}

.lp-app-card {
  padding: 30px;
  border-radius: 24px;
}

.lp-app-card::before {
  height: 5px;
}

.lp-app-logo {
  border-radius: 19px;
}

.lp-app-description {
  font-size: 14px;
}

.lp-app-features li {
  padding: 7px 10px;
  border: 1px solid #e3ece9;
  border-radius: 9px;
  color: #3b5750;
  background: #f7faf9;
}

.lp-play-btn {
  border-radius: 13px;
  background: var(--lp-ink);
}

/* CTA */
.lp-cta-band {
  position: relative;
  overflow: hidden;
  padding: 54px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 28px;
  background:
    radial-gradient(circle at 84% 20%, rgba(243, 167, 18, .20), transparent 17rem),
    linear-gradient(135deg, #10231f, #0a574b);
  box-shadow: 0 28px 70px rgba(16, 35, 31, .20);
}

.lp-cta-band h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  letter-spacing: -.035em;
}

.lp-cta-band p {
  max-width: 690px;
}

/* Pricing page */
.pricing-hero {
  position: relative;
  padding: 0;
  color: var(--lp-ink);
  border-bottom: 1px solid var(--lp-line);
  background:
    radial-gradient(circle at 16% 10%, rgba(243, 167, 18, .11), transparent 22rem),
    radial-gradient(circle at 88% 28%, rgba(8, 127, 109, .12), transparent 25rem),
    linear-gradient(135deg, #f4fbf8, #edf8f4);
}

.pricing-hero::before,
.pricing-hero::after {
  opacity: .35;
}

.pricing-hero-inner {
  min-height: 570px;
  padding: 82px 28px 88px;
}

.pricing-hero h1 {
  max-width: 850px;
  color: var(--lp-ink);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -.05em;
}

.pricing-hero p {
  color: #536b65;
}

.pricing-hero .lp-kicker.light {
  color: var(--lp-teal);
}

.pricing-proof {
  color: #36544d;
}

.pricing-proof span::before {
  color: #fff;
  background: var(--lp-teal);
}

.pricing-grid {
  gap: 24px;
}

.pricing-card {
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--lp-shadow-sm);
}

.pricing-card.featured {
  border-color: var(--lp-teal);
  background:
    linear-gradient(180deg, rgba(234, 248, 244, .68), #fff 30%);
  box-shadow: 0 26px 66px rgba(8, 127, 109, .16);
}

.plan-badge {
  color: var(--lp-teal-dk);
  background: var(--lp-teal-soft);
}

.pricing-card h2 {
  font-size: 27px;
  letter-spacing: -.03em;
}

.plan-price {
  color: var(--lp-ink);
  letter-spacing: -.055em;
}

.plan-app-fit {
  border: 1px solid rgba(8, 127, 109, .12);
  border-radius: 12px;
  color: var(--lp-teal-dk);
  background: var(--lp-teal-soft);
}

.plan-features {
  border-color: var(--lp-line);
}

.offline-band {
  border-color: rgba(243, 167, 18, .34);
  border-radius: 26px;
  background:
    radial-gradient(circle at 9% 0, rgba(255, 255, 255, .88), transparent 18rem),
    linear-gradient(135deg, #fffaf0, #fff6dc);
  box-shadow: 0 24px 60px rgba(126, 84, 5, .09);
}

.offline-offer {
  border-radius: 20px;
  box-shadow: var(--lp-shadow-sm);
}

.included-item {
  border-radius: 17px;
  box-shadow: 0 8px 24px rgba(16, 35, 31, .045);
}

.pricing-note {
  max-width: 880px;
  line-height: 1.65;
}

/* Contact */
.lp-contact-grid {
  gap: 30px;
}

.lp-contact-panel {
  overflow: hidden;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 25px;
  background:
    radial-gradient(circle at 100% 0, rgba(243, 167, 18, .15), transparent 18rem),
    linear-gradient(155deg, #10231f, #0b5147);
  box-shadow: var(--lp-shadow-md);
}

.lp-cinfo {
  border-color: rgba(255, 255, 255, .10);
}

.lp-cinfo-icon {
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 12px;
}

.lp-form-card {
  padding: 40px;
}

.lp-input,
.lp-select,
.lp-textarea {
  border-color: #d4e2de;
  border-radius: 12px;
  background: #fbfdfc;
}

.lp-input:focus,
.lp-select:focus,
.lp-textarea:focus {
  background: #fff;
}

/* FAQ and footer */
.lp-faq {
  gap: 12px;
}

.lp-faq-item {
  border-radius: 16px;
}

.lp-faq-q {
  padding: 21px 24px;
  font-size: 15px;
}

.lp-faq-a {
  padding: 0 24px 22px;
}

.lp-footer {
  padding-top: 72px;
  background:
    radial-gradient(circle at 8% 0, rgba(8, 127, 109, .18), transparent 25rem),
    #0b1916;
}

.lp-footer-grid {
  max-width: 1220px;
  gap: 48px;
}

.lp-footer-brand img {
  padding: 2px;
  border-radius: 10px;
  background: #fff;
}

.lp-footer-bottom {
  max-width: 1220px;
}

/* Floating WhatsApp action */
.lp-footer + a[aria-label="Chat on WhatsApp"] {
  width: 58px !important;
  height: 58px !important;
  border: 4px solid rgba(255, 255, 255, .92);
  box-shadow: 0 14px 34px rgba(17, 92, 60, .28) !important;
  transition: transform .18s ease, box-shadow .18s ease;
}

.lp-footer + a[aria-label="Chat on WhatsApp"]:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 38px rgba(17, 92, 60, .34) !important;
}

@media (max-width: 1060px) {
  .lp-nav-links .nav-link {
    padding-inline: 9px;
  }

  .lp-hero-inner {
    grid-template-columns: minmax(0, .95fr) minmax(400px, 1.05fr);
    gap: 42px;
  }

  .lp-trust {
    margin-inline: 22px;
  }
}

@media (max-width: 960px) {
  .lp-section-wrap {
    padding: 82px 0;
  }

  .lp-nav-inner {
    min-height: 70px;
  }

  .lp-hero-inner {
    min-height: 0;
    padding: 54px 24px 78px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .lp-hero-inner > *:first-child {
    order: 2;
  }

  .lp-hero-inner > *:last-child {
    order: 1;
  }

  .lp-slide-box {
    min-height: 390px;
    transform: none;
  }

  .lp-trust {
    margin-top: -24px;
  }

  .lp-trust-item {
    flex-basis: 50%;
    border-bottom: 1px solid var(--lp-line);
  }

  .lp-step {
    min-height: 0;
    border-bottom: 0;
  }

  .lp-step h3 {
    margin-top: 18px;
  }

  .lp-split {
    gap: 42px;
  }

  .pricing-hero-inner {
    min-height: 500px;
    padding-inline: 24px;
  }

  .pricing-card.featured {
    transform: none;
  }
}

@media (max-width: 640px) {
  .lp-section,
  .lp-container {
    padding-inline: 18px;
  }

  .lp-section-wrap {
    padding: 66px 0;
  }

  .lp-nav-right > .lp-btn {
    display: none;
  }

  .lp-brand {
    font-size: 16px;
  }

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

  .lp-h1 {
    font-size: clamp(40px, 12.2vw, 56px);
  }

  .lp-h2 {
    font-size: clamp(29px, 9vw, 39px);
  }

  .lp-section-head {
    margin-bottom: 38px;
  }

  .lp-hero-inner {
    padding: 44px 18px 68px;
  }

  .lp-slide-box {
    min-height: 270px;
    border-radius: 22px;
  }

  .lp-slide-item {
    inset: 28px 9px 9px;
  }

  .lp-hero-actions,
  .pricing-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .lp-hero-actions .lp-btn,
  .pricing-hero-actions .lp-btn {
    width: 100%;
  }

  .lp-hero-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .lp-trust {
    margin-inline: 14px;
    border-radius: 18px;
  }

  .lp-trust-item {
    flex-basis: 100%;
    min-height: 88px;
    padding: 18px;
    border-right: 0;
  }

  .lp-page-hero-inner {
    min-height: 390px;
    padding: 58px 18px 66px;
  }

  .lp-page-hero .lp-h1,
  .pricing-hero h1 {
    font-size: clamp(39px, 11vw, 54px);
  }

  .lp-card,
  .lp-feat,
  .lp-app-card {
    border-radius: 18px;
  }

  .lp-feat {
    min-height: 0;
    padding: 22px;
  }

  .lp-app-card {
    padding: 24px;
  }

  .lp-steps {
    padding: 8px;
    border-radius: 20px !important;
  }

  .lp-step {
    padding: 24px;
  }

  .lp-cta-band {
    padding: 34px 25px;
    border-radius: 22px;
  }

  .pricing-hero-inner {
    min-height: 540px;
    padding: 62px 18px 72px;
  }

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

  .pricing-card {
    padding: 25px;
    border-radius: 20px;
  }

  .offline-band {
    padding: 25px;
    border-radius: 21px;
  }

  .lp-contact-panel,
  .lp-form-card {
    padding: 28px 23px;
    border-radius: 20px;
  }

  .lp-footer {
    padding-top: 58px;
  }

  .lp-footer + a[aria-label="Chat on WhatsApp"] {
    right: 16px !important;
    bottom: 16px !important;
    width: 54px !important;
    height: 54px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
