:root {
  --bg-dark: #030D21;
  --bg-mid: #07152c;
  --bg-card: rgba(255, 255, 255, 0.05);
  --bg-card-strong: rgba(255, 255, 255, 0.08);
  --border-soft: rgba(255, 255, 255, 0.12);
  --text-primary: #f5f7ff;
  --text-muted: #a7b2c8;
  --accent: #4ef6d1;
  --accent-strong: #30e5bd;
  --white: #ffffff;
  --shadow-soft: 0 18px 60px rgba(3, 10, 28, 0.6);
  --liquid-glass-bg: rgba(255, 255, 255, 0.65);
  --liquid-glass-border: rgba(255, 255, 255, 0.35);
  --liquid-glass-shadow: 0 20px 45px rgba(3, 10, 28, 0.35);
  --liquid-glass-blur: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.lp-body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  background: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.modal-backdrop {
  background-color: rgba(3, 13, 33, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(16px);
}

.modal-backdrop.show {
  opacity: 1;
}

.lead-modal .modal-dialog {
  width: calc(100% - 2rem);
  max-width: 1180px;
}

.lead-modal .modal-content {
  background: transparent;
  border: none;
  border-radius: 0;
  color: var(--text-primary);
  flex-direction: row;
  align-items: stretch;
  gap: 16px;
}

.lead-modal .simulacao {
  width: 340px;
  min-height: 630px;
  border-radius: 24px;
  border: 1px solid var(--border-soft);
  background: linear-gradient(160deg, #111f33 0%, #091426 100%);
  padding: 34px 28px;
}

.lead-modal .simulacao-resume p {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.lead-modal .simulacao-list {
  margin-top: 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.lead-modal .simulacao-list li {
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 14px;
}

.lead-modal .simulacao-list li.is-empty {
  display: none;
}

.lead-modal .simulacao-list .label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.lead-modal .simulacao-list .value {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.lead-modal .simulacao-list .emoji-value {
  display: flex;
  align-items: center;
}

.lead-modal .form__wrapper {
  flex: 1;
  min-height: 630px;
  position: relative;
  border-radius: 24px;
  border: 1px solid var(--border-soft);
  background: #0b1625;
  padding: 30px 34px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lead-modal .btn-close {
  width: 30px;
  height: 30px;
  padding: 0;
  border: none;
  border-radius: 50%;
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 1;
  z-index: 2;
}

.lead-modal .form-body {
  padding-right: 20px;
}

.lead-modal .form-step {
  display: none;
}

.lead-modal .form-step.active {
  display: block;
}

.lead-modal .question {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  text-wrap: balance;
}

.lead-modal .answers {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.lead-modal .radio-button input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.lead-modal .radio-button .radio-label {
  width: 100%;
  min-height: 56px;
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lead-modal .radio-button .radio-label:hover,
.lead-modal .radio-button input[type="radio"]:checked+.radio-label {
  border-color: var(--accent);
  background: rgba(78, 246, 209, 0.15);
  box-shadow: 0 8px 20px rgba(78, 246, 209, 0.16);
}

.lead-modal .radio-button input[type="radio"]:checked+.radio-label .icon-arrow-black {
  transform: translateX(3px);
}

.lead-modal .icon-arrow-black {
  width: 16px;
  height: 16px;
}

.lead-modal .form-input input,
.lead-modal .form-input select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  background: #0f1b2d;
  color: var(--white);
  padding: 14px 16px;
  font-size: 16px;
}

.lead-modal .form-input select {
  appearance: none;
  -webkit-appearance: none;
}

.lead-modal .form-select-wrap {
  position: relative;
}

.lead-modal .form-select-wrap::after {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  background: url("/img/icons/arrow-right.svg") center / contain no-repeat;
  filter: brightness(0);
  pointer-events: none;
}

.lead-modal .form-select-wrap select {
  padding-right: 38px;
}

.lead-modal .form-input input::placeholder {
  color: var(--text-muted);
}

.lead-modal .form-input input:focus,
.lead-modal .form-input select:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(78, 246, 209, 0.2);
}

.lead-modal .form-input input.is-valid,
.lead-modal .form-input select.is-valid {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(78, 246, 209, 0.2);
}

.lead-modal .form-input input.is-invalid,
.lead-modal .form-input select.is-invalid {
  border-color: #ff8e8e;
}

.lead-modal .city-selector {
  position: relative;
}

.lead-modal .city-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  background: #0f1b2d;
  max-height: 180px;
  overflow-y: auto;
  z-index: 4;
  display: none;
}

.lead-modal .city-option {
  padding: 10px 12px;
  cursor: pointer;
  color: var(--text-primary);
}

.lead-modal .city-option:hover {
  background: rgba(78, 246, 209, 0.15);
}

.lead-modal .terms-check {
  color: var(--white);
  font-weight: 500;
  line-height: 1.4;
}

.lead-modal .terms-check a {
  color: var(--accent);
  text-decoration: underline;
}

.lead-modal label.error {
  display: none;
  color: #ff8e8e;
  font-size: 12px;
  margin-top: 6px;
  margin-bottom: 0;
}

.lead-modal .form-footer {
  display: grid;
  grid-template-columns: 150px 1fr 150px;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}

.lead-modal .cta {
  border: none;
  border-radius: 999px;
  min-height: 46px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.lead-modal .cta.prev {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.lead-modal .cta.prev .icon-arrow {
  transform: rotate(180deg);
}

.lead-modal .cta.prev.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.lead-modal .cta.next {
  background: var(--accent);
  color: #030d21;
}

.lead-modal .cta.next:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.lead-modal .cta .icon-arrow {
  width: 16px;
  height: 16px;
  filter: brightness(0);
}

.lead-modal .form-progress {
  --progress: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.lead-modal .form-progress .track {
  flex: 1;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.lead-modal .form-progress .bar {
  height: 100%;
  width: calc(100% * var(--progress));
  background: linear-gradient(90deg, var(--accent-strong), var(--accent));
  transition: width 0.25s ease;
}

.lead-modal .form-progress .label {
  font-size: 14px;
  white-space: nowrap;
}

.lead-modal .form-steps {
  position: absolute;
  left: -26px;
  top: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.lead-modal .step-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: #0f1b2d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lead-modal .step-circle span {
  color: var(--text-muted);
  font-size: 20px;
  font-weight: 700;
}

.lead-modal .step-circle.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(78, 246, 209, 0.1);
}

.lead-modal .step-circle.active span {
  color: var(--accent);
}

@media (max-width: 991.98px) {
  .lead-modal .modal-dialog {
    width: calc(100% - 1rem);
  }

  .lead-modal .modal-content {
    display: block;
  }

  .lead-modal .simulacao {
    display: none;
  }

  .lead-modal .form__wrapper {
    min-height: auto;
    padding: 24px 20px 20px;
  }

  .lead-modal .form-body {
    padding-right: 0;
  }

  .lead-modal .question {
    font-size: 22px;
  }

  .lead-modal .radio-button .radio-label {
    font-size: 16px;
    min-height: 48px;
  }

  .lead-modal .form-footer {
    grid-template-columns: 1fr;
  }

  .lead-modal .form-steps {
    display: none;
  }
}

.morphing-checkbox {
  --checkbox-size: 2.2em;
  --checkbox-color: var(--accent);
  --checkbox-color-hover: var(--accent-strong);
  --checkbox-shadow: rgba(78, 246, 209, 0.35);
  --checkmark-color: #0b1625;
  --cubic-bezier: cubic-bezier(0.16, 1, 0.3, 1);

  position: relative;
  display: inline-block;
  cursor: pointer;
  user-select: none;
  flex: 0 0 auto;
}

.morphing-checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.morphing-checkbox .checkbox-body {
  position: relative;
  width: var(--checkbox-size);
  height: var(--checkbox-size);
  perspective: 25em;
  display: block;
}

.morphing-checkbox .cube {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s var(--cubic-bezier);
}

.morphing-checkbox .cube div {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--checkbox-color);
  backface-visibility: hidden;
  border-radius: 0.3em;
  box-shadow: 0 0.2em 0.6em var(--checkbox-shadow);
  transform-style: preserve-3d;
}

.morphing-checkbox .cube .front {
  transform: translateZ(calc(var(--checkbox-size) / 2));
}

.morphing-checkbox .cube .back {
  transform: rotateY(180deg) translateZ(calc(var(--checkbox-size) / 2));
}

.morphing-checkbox .cube .top {
  transform: rotateX(90deg) translateZ(calc(var(--checkbox-size) / 2));
}

.morphing-checkbox .cube .bottom {
  transform: rotateX(-90deg) translateZ(calc(var(--checkbox-size) / 2));
}

.morphing-checkbox .cube .left {
  transform: rotateY(-90deg) translateZ(calc(var(--checkbox-size) / 2));
}

.morphing-checkbox .cube .right {
  transform: rotateY(90deg) translateZ(calc(var(--checkbox-size) / 2));
}

.morphing-checkbox:hover .cube div {
  background-color: var(--checkbox-color-hover);
}

.morphing-checkbox input:checked+.checkbox-body .cube {
  transform: rotateY(180deg) rotateZ(180deg);
}

.morphing-checkbox .checkmark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 60%;
  height: 60%;
  fill: none;
  stroke: var(--checkmark-color);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  z-index: 2;
  pointer-events: none;
}

.morphing-checkbox input:checked+.checkbox-body .checkmark {
  animation: check-animation 0.5s var(--cubic-bezier) forwards 0.3s;
}

@keyframes check-animation {
  0% {
    transform: translate(-50%, -50%) scale(0);
    stroke-dashoffset: 24;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    stroke-dashoffset: 0;
  }
}

.morphing-checkbox .ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: rgba(78, 246, 209, 0.45);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.morphing-checkbox input:checked+.checkbox-body .ripple {
  animation: ripple 0.6s var(--cubic-bezier);
}

@keyframes ripple {
  0% {
    width: 0;
    height: 0;
    opacity: 0.5;
  }

  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

.morphing-checkbox input:focus+.checkbox-body::after {
  content: "";
  position: absolute;
  top: -0.3em;
  left: -0.3em;
  right: -0.3em;
  bottom: -0.3em;
  border-radius: 0.6em;
  border: 0.15em solid rgba(78, 246, 209, 0.45);
  pointer-events: none;
  opacity: 0;
  animation: focus-animation 0.3s var(--cubic-bezier) forwards;
}

@keyframes focus-animation {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.morphing-checkbox:active .cube {
  transform: scale(0.9);
}

.morphing-checkbox input:checked:active+.checkbox-body .cube {
  transform: scale(0.9) rotateY(180deg) rotateZ(180deg);
}

@media (max-width: 992px) {
  body.modal-open .hero-bubble {
    display: none !important;
  }
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.lp-container {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.btn-primary {
  appearance: none;
  border: none;
  border-radius: 20px;
  background: var(--accent);
  color: #041018;
  font-size: 20px;
  font-weight: 700;
  font-family: inherit;
  padding: 14px 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  color: var(--accent-strong);
  box-shadow: 0 16px 30px rgba(62, 240, 199, 0.3);
  background-color: white;
}

.btn-primary:hover .btn-icon {
  filter: brightness(0) saturate(100%) invert(78%) sepia(67%) saturate(405%) hue-rotate(103deg) brightness(101%) contrast(93%);
}

.btn-primary .btn-icon {
  width: 20px;
  height: 19px;
  display: inline-block;
}

.anchor-section {
  scroll-margin-top: 105px;
}

.scroll-navbar {
  position: fixed;
  top: 14px;
  left: 0;
  width: 100%;
  z-index: 5000;
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.scroll-navbar.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-navbar-inner {
  background: rgba(3, 13, 33, 0.88);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  min-height: 74px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.scroll-navbar-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.scroll-navbar-brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.scroll-navbar-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15%;
  flex: 1;
}

.scroll-navbar-links a {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
}

.scroll-navbar-links a:hover {
  color: var(--accent);
}

.scroll-navbar-cta {
  min-height: 48px;
  font-size: 18px;
  padding: 10px 22px;
}

.hero {
  padding: 150px 0 0;
  overflow: hidden;
  z-index: 0;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  left: 80%;
  bottom: 0;
  width: 300px;
  height: 300px;
  aspect-ratio: 1 / 1;
  border-radius: 300px;
  background: var(--accent);
  filter: blur(200px);
  pointer-events: none;
  z-index: -1;
}

.section-glow {
  z-index: 0;
  isolation: isolate;
}

.section-glow::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  aspect-ratio: 1 / 1;
  border-radius: 340px;
  background: var(--accent);
  filter: blur(220px);
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
  top: 10%;
  right: -8%;
}

.logo-strip.section-glow::after {
  top: 50%;
  left: -6%;
  right: auto;
}

.testimonial.section-glow::after {
  top: 35%;
  width: 260px;
  height: 260px;
  filter: blur(120px);
  left: 5%;
}

.pos-features.section-glow::after {
  top: 5%;
  left: 10%;
  right: auto;
}

.pos_demo.section-glow::after {
  top: 0;
  right: 0;
  width: 300px;
  z-index: -5;
  filter: blur(120px);
}

.cta-split.section-glow::after {
  top: 25%;
  left: 8%;
  right: auto;
}

.feature-carousel.section-glow::after {
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  filter: blur(170px);
  width: 500px;
  height: 500px;
}


.hero-logo {
  height: 28px;
  margin-bottom: 70px;
}

.hero-grid {
  row-gap: 32px;
}

.hero-content {
  padding-bottom: 50px;
}

.hero-content h1 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 50px;
}

.hero-content h1 span {
  color: var(--accent);
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 20px;
  line-height: 1.6;
  max-width: 710px;
  margin-bottom: 80px;
}

.cta-form {
  margin-top: 8px;
}

.hero-media {
  display: flex;
  justify-content: flex-end;
}

.hero-media__frame {
  position: relative;
  background: var(--accent);
  border-radius: 18px;
  padding: 16px;
  width: min(380px, 90%);
  margin-left: auto;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
}

.hero-media__surface {
  background: #edeef4;
  border-radius: 14px;
  padding: 0;
  width: 100%;
  max-height: 440px;
  overflow: hidden;
  display: grid;
  place-items: center;
  clip-path: polygon(0 0, 78% 0, 100% 18%, 100% 100%, 22% 100%, 0 82%);
  align-items: center;
  justify-content: center;
  align-content: center;
}

.hero-art {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  max-width: none;
  min-width: 0;
}

.hero-bubble {
  --bubble-x: 0;
  position: absolute;
  bottom: 18%;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 490px;
  height: auto;
  background: rgba(140, 152, 161, 0.85);
  padding: 16px 18px;
  border-radius: 18px;
  color: #0b1625;
  box-shadow: var(--shadow-soft);
  max-width: none;
  backdrop-filter: blur(6px);
  cursor: pointer;
  transform: translate(var(--bubble-x), 0);

  will-change: transform;
}

.bubble-avatar {
  width: 56px;
  height: 64px;
  aspect-ratio: 7 / 8;
  border-radius: 10px;
  background-color: var(--accent);
  background-image: url("/img/hero/header_avatar.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bubble-text {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  margin: 0 15px 0 20px;
}

.bubble-icon {
  width: 30px;
  height: 30px;
  display: block;
}

.quote-icon,
.section-icon.pos-icon,
.section-icon.cta-icon,
.section-icon.carousel-icon,
.section-icon.faq-icon {
  display: inline-block;
  animation: icon-tilt 4s ease-in-out infinite;
  will-change: transform;
}

@keyframes assistant-float {

  0%,
  100% {
    transform: translate(var(--bubble-x), 0);
  }

  50% {
    transform: translate(var(--bubble-x), -6px);
  }
}

@keyframes icon-tilt {

  0%,
  100% {
    transform: translateX(-10px) rotate(-2deg);
  }

  50% {
    transform: translateX(10px) rotate(2deg);
  }
}

.logo-strip {
  padding: 32px 0;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}

.logo-row {
  margin: 0;
}

.logo-row .logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
}

.logo-row .logo-item img {
  max-height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
}

.logo-row.slick-slider {
  margin: 0;
}

.logo-row .slick-slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.testimonial {
  padding: 80px 0;
  text-align: center;
}

.quote-icon {
  height: 70px;
  display: block;
  margin: 0 auto 60px;
}

.testimonial blockquote {
  margin: 0 auto 20px;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.7;
  max-width: 810px;
  color: var(--text-primary);
}

.testimonial blockquote span {
  color: var(--accent);
  font-weight: 700;
}

.quote-byline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 50px;
}

.byline-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.stat-card {
  padding: 22px 24px;
  border-radius: 16px;
  background: rgba(40, 47, 65, 0.20);
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 150px;
  max-width: 350px;
  width: 100%;
  height: 100%;
  margin: auto;
  gap: 15px;
  box-shadow: var(--shadow-soft);
}

.stat-number {
  font-weight: 800;
  margin-bottom: 0;
  text-align: center;
  font-size: 48px;
  line-height: 1;
  color: var(--white);
}

.stat-description {
  font-weight: 500;
  margin-bottom: 0;
  text-align: center;
  font-size: 18px;
  line-height: 1.35;
  color: var(--text-muted);
}

.stat-icon {
  width: 44px;
  height: 40px;
  display: block;
}

.pos-features {
  padding: 80px 0;
}

.section-head {
  text-align: center;
  max-width: 810px;
  margin: 0 auto 40px;
}

.section-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(78, 246, 209, 0.15);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.section-icon.pos-icon {
  width: 40px;
  height: 40px;
  border-radius: 0;
  background: none;
  padding: 0;
  margin-bottom: 40px;
}

.section-icon.cta-icon,
.section-icon.carousel-icon,
.section-icon.faq-icon {
  width: 40px;
  height: 40px;
  border-radius: 0;
  background: none;
  padding: 0;
  margin-bottom: 40px;
  display: block;
}

.section-icon.cta-icon {
  width: 30px;
  height: 42px;
}

.section-head h2 {
  font-size: 25px;
  font-weight: 700;
  margin: 0 0 30px;
}

.section-head h2 .accent {
  color: var(--accent);
}

.section-head p {
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 60px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-card {
  background: var(--bg-card);
  border: none;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.feature-media {
  height: 180px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(78, 246, 209, 0.15));
  background-size: cover;
  background-position: center;
}

.feature-media.media-1 {
  background-image: url("/img/features/card1.png");
}

.feature-media.media-2 {
  background-image: url("/img/hero/LS1.jpg");
}

.feature-media.media-3 {
  background-image: url("/img/features/card3.png");
}

.feature-body {
  padding: 22px;
  padding-bottom: 35px;
}

.feature-body h3 {
  margin: 15px 0 25px;
  font-size: 1.1rem;
  text-align: center;
  color: #ffffff;
  font-weight: 700;
}

.feature-body p {
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

.pos_demo {
  padding: 80px 0;
}

.device-card {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-soft);
  padding: 0;
  box-shadow: var(--shadow-soft);
  overflow: visible;
  transition: background 0.7s ease, border-color 0.7s ease, box-shadow 0.7s ease;
}

.device-card.is-expanded {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.device-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: border-radius 5s ease;
}

.device-visual {
  background: #282F41;
  border-radius: 18px;
  aspect-ratio: 115 / 64;
  width: 100%;
  max-width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  transition: width 2s ease, max-width 2s ease, margin-left 2s ease, border-radius 2s ease;
}

.device-visual.is-expanded {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  border-radius: 0;
  background: #030d21;
}

.device-visual.is-expanded img {
  border-radius: 0;
}

.device-bubble {
  position: absolute;
  z-index: 8;
  left: 50%;
  top: 50%;
  right: auto;
  width: min(460px, calc(100% - 28px));
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.95);
  color: #0b1625;
  padding: 12px 14px;
  border-radius: 18px;
  box-shadow: 0 16px 35px rgba(3, 10, 28, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.78);
  transition: opacity 0.38s ease, transform 0.42s ease;
}

.device-card.is-notification-visible .device-bubble {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.device-icon {
  width: 28px;
  height: 28px;
  display: block;
  flex: 0 0 auto;
  border-radius: 8px;
}

.device-bubble-text {
  color: #030D21;
  font-family: "Poppins", "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
}

.device-notification-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.device-brand {
  color: #09192f;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.device-now {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  color: #5f6f84;
  background: #edf2f8;
  border-radius: 999px;
  padding: 4px 8px;
}

.cta-split {
  padding: 80px 0;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: center;
}

.cta-media {
  border-radius: 20px;
  background: none;
  border: none;
  padding: 0;
  display: flex;
  justify-content: center;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.cta-media img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

/* Hide vendor logo embedded in LS4.jpg for CTA usage */
.cta-media::after {
  content: "";
  position: absolute;
  left: 66.5%;
  top: 57.8%;
  width: 64px;
  height: 18px;
  transform: translate(-50%, -50%);
  background: #1f2430;
  border-radius: 999px;
  box-shadow: 0 0 12px #1f2430;
  pointer-events: none;
}

.cta-content h2 {
  color: var(--white);
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
}

.cta-content h2 .accent {
  color: var(--accent);
}

.cta-content p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 60px;
}

.feature-carousel {
  padding: 80px 0;
}

.carousel-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
}

.carousel-head h2 {
  font-size: 42px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.carousel-head h2 span {
  color: var(--accent);
}

.carousel-arrows {
  display: flex;
  gap: 70px;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 45px;
}

.carousel-arrows .arrow {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.carousel-arrows .arrow img {
  width: 50px;
  height: auto;
  display: block;
}

.carousel-arrows .arrow-prev img {
  transform: rotate(180deg);
}

.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
}

.carousel-track.slick-initialized {
  display: block;
  overflow: visible;
  padding-bottom: 0;
  scroll-snap-type: none;
}


.carousel-card {
  max-width: 320px;
  margin: auto;
  background: transparent;
  border: none;
  border-radius: 18px;
  overflow: hidden;
  scroll-snap-align: start;
}

.carousel-media {
  height: 221px;
  margin: auto;
  width: 260px;
  border-radius: 20px 20px 0 0;
  border: 1px solid #ffffff73;
  border-bottom: none;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel-media.media-2 {
  position: relative;
  background-image: url("/img/hero/LS4.jpg");
}

/* Hide vendor logo embedded in LS4.jpg for carousel middle card */
.carousel-media.media-2::after {
  content: "";
  position: absolute;
  left: 73.5%;
  top: 57.5%;
  width: 50px;
  height: 14px;
  transform: translate(-50%, -50%);
  background: #1f2430;
  border-radius: 999px;
  box-shadow: 0 0 10px #1f2430;
  pointer-events: none;
}

.carousel-media.media-3 {
  background-image: url("/img/carousel/slider_3.png");
}

.carousel-media.media-4 {
  background-image: url("/img/carousel/slider_4.png");
}

.carousel-media.media-1 {
  background-image: url("/img/carousel/slider_1.png");
}

.carousel-body {
  padding: 20px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 20px;
}

.carousel-body h3 {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.carousel-body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}

.faq {
  padding: 80px 0 100px;
}

.faq-head {
  text-align: center;
  margin-bottom: 32px;
}

.faq-head .section-icon {
  margin-inline: auto;
  margin-bottom: 40px;
}

.faq-head h2 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 60px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-list.accordion {
  gap: 14px;
}

.faq-list .accordion-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  overflow: hidden;
}

.faq-list .accordion-button {
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  padding: 18px 22px;
  border: none;
}

.faq-list .accordion-button:focus {
  box-shadow: none;
}

.faq-list .accordion-button:not(.collapsed) {
  color: var(--text-primary);
  background: transparent;
}

.faq-list .accordion-button::after {
  background-image: url("/img/icons/faq-plus.svg");
  background-size: 18px 18px;
  width: 18px;
  height: 18px;
  transform: none;
  background-repeat: no-repeat;
  background-position: center;
}

.faq-list .accordion-button:not(.collapsed)::after {
  background-image: url("/img/icons/faq-minus.svg");
}

.faq-list .accordion-body {
  padding: 0 22px 18px;
}

.faq-list .accordion-body p {
  margin: 12px 0 0;
  color: #ffffff;
  font-family: "Poppins", "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.lp-footer {
  padding: 70px 0 70px;
  border-top: 1px solid #ffffff;
  overflow: hidden;
  z-index: 0;
  isolation: isolate;
}

.lp-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 400px;
  height: 400px;
  aspect-ratio: 1 / 1;
  border-radius: 400px;
  background: #02F3C7;
  filter: blur(250px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
}

.footer-grid {
  row-gap: 32px;
  align-items: center;
  padding-bottom: 40px;
}

.footer-content h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 60px;
}

.footer-content h2 span {
  color: var(--accent);
}

.footer-media img {
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  border-radius: 20px;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.45));
}

.footer-media-desktop {
  position: relative;   
  z-index: 1;
  max-width: 520px;
}

.footer-bottom {
  padding: 16px 0 32px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  font-size: 0.75rem;
}

.footer-bottom small {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  margin-top: 6px;
}

.footer-legal-links-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin-bottom: 28px;
}

.footer-legal-link {
  color: rgba(255, 255, 255, 0.9);
  width: auto;
  text-decoration: none;
  font-family: "Poppins", "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.footer-legal-link:hover,
.footer-legal-link:focus {
  color: var(--accent);
  text-decoration: underline;
}

.modal-header .btn-close {
  width: 30px;
  height: 30px;
  padding: 0;
  margin-top: 5px;
  margin-right: 15px;
}

.modal-body {
  padding-bottom: 40px;
}

@media(max-width: 1200px) {
  .scroll-navbar-inner {
    border-radius: 24px;
    min-height: 66px;
  }

  .pos_demo {
    padding-bottom: 0;
  }

  .cta-split {
    padding-top: 20px;
  }
}

@media (max-width: 1024px) {
  .scroll-navbar-links {
    gap: 16px;
  }

  .cta-grid,
  .footer-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    justify-content: center;
  }

  .hero-bubble {
    position: static;
    margin-top: 20px;
  }

  .logo-row {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .hero {
    isolation: auto;
    z-index: auto;
  }

  .hero-media {
    display: none;
  }

  .hero-content {
    padding-bottom: 70px;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .cta-grid {
    text-align: center;
  }

  .cta-content h2,
  .carousel-head h2 {
    font-size: 34px;
  }

  .footer-media img {
    max-width: 220px;
  }

  .cta-grid .cta-content {
    text-align: center;
  }

  .section-icon.cta-icon {
    margin-inline: auto;
  }

  .cta-grid .cta-content .btn-primary {
    justify-content: center;
  }

  .hero-bubble {
    position: fixed;
    left: 60%;
    bottom: 24px;
    background: white;
    opacity: 1;
    --bubble-x: -50%;
    margin-top: 0;
    z-index: 2000;
  }

}

@media(max-width: 768px) {
  .scroll-navbar {
    top: 8px;
  }

  .scroll-navbar-inner {
    border-radius: 18px;
    min-height: 62px;
    padding: 10px 12px;
  }

  .scroll-navbar-links {
    display: none;
  }

  .scroll-navbar-cta {
    font-size: 15px;
    min-height: 42px;
    padding: 8px 14px;
  }

  .footer-media {
    display: none;
  }

  .footer-content h2 {
    text-align: center;
  }

  .footer-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .stat-grid {
    gap: 30px;
  }

  .feature-grid {
    gap: 40px;
  }

  .footer-legal-links-row {
    gap: 18px;
    margin-bottom: 20px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 40px 0 64px;
  }

  .device-card.is-notification-visible .device-bubble {
    transform: translate(0%, -50%) scale(1);
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .scroll-navbar .btn-primary {
    width: auto;
  }

  .carousel-track {
    padding-bottom: 20px;
  }

  .footer-content h2 {
    font-size: 28px;
  }

  .hero-content {
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-content h1 {
    font-size: 35px;
    text-align: center;
    text-wrap: balance;
  }

  .hero-subtitle {
    font-size: 20px;
    line-height: 1.2;
    text-align: center;
    text-wrap: balance;
  }

  .bubble-text {
    font-size: 18px;
  }

  .device-bubble {
    position: static;
    margin-top: 16px;
    width: 100%;
  }
}

@media(max-width: 475px) {
  .bubble-text {
    font-size: 13px;
  }

  .bubble-icon {
    position: absolute;
    right: 0;
    top: -10px;
  }

  .quote-byline {
    text-align: left;
  }

  .hero-bubble {
    width: 80%;
    height: auto;

  }

  .testimonial blockquote {
    font-size: 18px;
  }

  .footer-content h2 {
    font-size: 20px;
  }

  .cta-content h2 {
    font-size: 20px;
  }

  .carousel-head h2 {
    font-size: 30px;
  }

  .pos_demo {
    padding-bottom: 10px;
  }

  .cta-split {
    padding-top: 0;
  }

  .feature-carousel.section-glow::after {
    width: 100%;
  }

  .carousel-head h2 {
    text-align: center;
  }

  .feature-grid.accordion-mobile {
    gap: 20px;
  }

  .feature-grid.accordion-mobile .feature-card {
    min-height: auto;
  }

  .feature-grid.accordion-mobile .feature-body {
    padding: 16px 18px 18px;
  }

  .feature-grid.accordion-mobile .feature-body h3 {
    margin: 0;
    width: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-size: 1rem;
  }

  .feature-grid.accordion-mobile .feature-body h3::after {
    content: "+";
    color: var(--accent);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    margin-left: 12px;
    flex: 0 0 auto;
  }

  .feature-grid.accordion-mobile .feature-body.is-open h3::after {
    content: "−";
  }

  .feature-grid.accordion-mobile .feature-body p {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
    text-align: left;
  }

  .feature-grid.accordion-mobile .feature-body.is-open p {
    max-height: 260px;
    opacity: 1;
    margin-top: 12px;
  }
}

@media(max-width: 400px) {
  .btn-primary {
    font-size: 18px;
  }
}
