:root {
  --navy: #071a33;
  --navy-2: #0a2540;
  --teal: #0fd3c7;
  --teal-dark: #10a8a0;
  --ink: #142033;
  --muted: #667085;
  --line: #e7edf4;
  --soft: #f4f8fb;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 26, 51, 0.12);
  --radius: 24px;
  --sidebar: 292px;
  --topbar: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 4%, rgba(15, 211, 199, .16), transparent 28rem),
    radial-gradient(circle at 92% 12%, rgba(10, 37, 64, .11), transparent 34rem),
    linear-gradient(180deg, #f8fbfd 0%, #eef5f9 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; -webkit-user-drag: none; user-select: none; -webkit-user-select: none; }

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--topbar);
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 28px;
  background: rgba(255, 255, 255, .86);
  border-bottom: 1px solid rgba(231, 237, 244, .88);
  backdrop-filter: blur(18px);
}

.brand { display: inline-flex; align-items: center; min-width: 0; }
.brand img { width: 240px; height: auto; object-fit: contain; }

.top-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 750;
}
.top-actions a {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--navy-2);
  box-shadow: 0 8px 18px rgba(7, 26, 51, .05);
}
.top-actions .whatsapp {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--teal), var(--navy-2));
}

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 15px;
  background: var(--navy-2);
  padding: 12px;
  cursor: pointer;
}
.menu-btn span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  border-radius: 999px;
  transition: transform .22s ease, opacity .22s ease;
}
.nav-open .menu-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .menu-btn span:nth-child(2) { opacity: 0; }
.nav-open .menu-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.sidebar {
  position: fixed;
  z-index: 70;
  top: var(--topbar);
  left: 0;
  bottom: 0;
  width: var(--sidebar);
  padding: 22px 18px;
  overflow-y: auto;
  border-right: 1px solid rgba(231, 237, 244, .92);
  background: rgba(255, 255, 255, .93);
  backdrop-filter: blur(16px);
}
.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, #fff, #f8fbfd);
}
.sidebar-brand img { width: 46px; height: 46px; object-fit: contain; }
.sidebar-brand strong { display: block; font-size: 15px; color: var(--navy); letter-spacing: .04em; }
.sidebar-brand span { display: block; font-size: 12px; color: var(--muted); }

.side-nav { display: grid; gap: 6px; }
.side-nav a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 13px;
  border-radius: 14px;
  color: #344054;
  font-size: 14px;
  font-weight: 750;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.side-nav a:hover,
.side-nav a.active {
  color: var(--navy);
  background: rgba(15, 211, 199, .12);
  transform: translateX(3px);
}
.side-nav a.active { box-shadow: inset 3px 0 0 var(--teal); }

.sidebar-contact {
  margin-top: 18px;
  padding: 16px;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(145deg, var(--navy), #092c4f 58%, var(--teal-dark));
  box-shadow: 0 18px 36px rgba(7, 26, 51, .16);
}
.sidebar-contact span { display: block; font-size: 12px; opacity: .78; }
.sidebar-contact strong { display: block; margin: 4px 0 12px; font-size: 16px; }
.sidebar-contact a {
  display: inline-flex;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
}

.main {
  margin-left: var(--sidebar);
  padding: calc(var(--topbar) + 28px) clamp(22px, 4vw, 56px) 46px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: center;
  min-height: calc(100vh - var(--topbar) - 78px);
  padding: clamp(30px, 5vw, 74px);
  border: 1px solid rgba(231, 237, 244, .92);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .8)),
    radial-gradient(circle at 92% 8%, rgba(15, 211, 199, .25), transparent 32rem);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border: 60px solid rgba(15, 211, 199, .11);
  border-radius: 50%;
  right: -150px;
  top: -150px;
}
.hero-copy { position: relative; z-index: 1; }
.badge, .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 13px;
  border: 1px solid rgba(15, 211, 199, .33);
  border-radius: 999px;
  background: rgba(15, 211, 199, .1);
  color: var(--navy-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 20px 0 18px;
  color: var(--navy);
  font-size: clamp(36px, 5vw, 74px);
  line-height: .98;
  letter-spacing: -0.06em;
}
.hero p {
  max-width: 760px;
  margin: 0;
  color: #475467;
  font-size: clamp(16px, 1.6vw, 20px);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  box-shadow: 0 16px 34px rgba(7, 26, 51, .18);
}
.hero-actions a + a {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(7, 26, 51, .07);
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}
.metrics div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
}
.metrics strong { display: block; color: var(--navy); font-size: 19px; line-height: 1; }
.metrics span { display: block; margin-top: 5px; color: var(--muted); font-size: 12px; font-weight: 700; }

.hero-visual { position: relative; z-index: 1; min-height: 440px; }
.visual-card {
  overflow: hidden;
  border: 11px solid #fff;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(7, 26, 51, .2);
  transform: rotate(1.2deg);
}
.visual-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: top left; }
.floating-card {
  position: absolute;
  padding: 16px 18px;
  min-width: 174px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 20px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 44px rgba(7, 26, 51, .16);
  backdrop-filter: blur(12px);
}
.floating-card strong { display: block; color: var(--navy); }
.floating-card span { display: block; color: var(--muted); font-size: 13px; font-weight: 700; }
.card-one { left: -20px; bottom: 66px; }
.card-two { right: -16px; top: 44px; }

.quick-info {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
}
.quick-info div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 12px 28px rgba(7, 26, 51, .06);
}
.quick-info span { display: block; margin-bottom: 6px; color: var(--muted); font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
.quick-info strong { color: var(--navy); overflow-wrap: anywhere; }

.doc-section {
  scroll-margin-top: calc(var(--topbar) + 22px);
  margin-top: 24px;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 46px rgba(7, 26, 51, .07);
}
.section-head h2 {
  margin: 16px 0 10px;
  color: var(--navy);
  font-size: clamp(26px, 3.1vw, 42px);
  line-height: 1.1;
  letter-spacing: -.04em;
}
.section-head p {
  max-width: 980px;
  margin: 0;
  color: #475467;
  font-size: 16px;
}
.feature-card {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid rgba(15, 211, 199, .2);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(15, 211, 199, .08), rgba(255, 255, 255, .9));
}
.feature-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.feature-card li {
  position: relative;
  padding-left: 28px;
  color: #344054;
  font-weight: 700;
}
.feature-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal-dark);
  font-size: 12px;
  font-weight: 950;
}
.shot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}
.shot-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(7, 26, 51, .07);
}
.shot-card img {
  width: 100%;
  aspect-ratio: 16 / 9.2;
  object-fit: cover;
  object-position: top left;
  background: #edf2f7;
  border-bottom: 1px solid var(--line);
}
.shot-card figcaption {
  padding: 13px 16px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 850;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.contact-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(7, 26, 51, .06);
}
.contact-card span { display: block; color: var(--muted); font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.contact-card strong { display: block; margin-top: 7px; color: var(--navy); overflow-wrap: anywhere; }
.cta-panel {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 22px;
  padding: 24px;
  border-radius: 28px;
  color: #fff;
  background: radial-gradient(circle at 12% 30%, rgba(15, 211, 199, .35), transparent 20rem), linear-gradient(145deg, var(--navy), #09213d 58%, #064a5b);
}
.cta-panel img { width: 100%; border-radius: 20px; background: #fff; padding: 14px; }
.cta-panel h3 { margin: 0 0 8px; font-size: clamp(22px, 3vw, 34px); line-height: 1.1; }
.cta-panel p { margin: 0; color: rgba(255, 255, 255, .78); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.cta-actions a {
  display: inline-flex;
  padding: 11px 16px;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-weight: 900;
}
.cta-actions a + a { background: rgba(255, 255, 255, .12); color: #fff; border: 1px solid rgba(255, 255, 255, .2); }

.footer {
  margin-left: var(--sidebar);
  padding: 30px clamp(22px, 4vw, 56px) 46px;
  color: #667085;
  text-align: center;
}
.footer img { width: 240px; margin: 0 auto 12px; }
.footer p { max-width: 820px; margin: 0 auto; font-size: 14px; }
.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  z-index: 60;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  box-shadow: 0 16px 32px rgba(7, 26, 51, .2);
  font-size: 22px;
  font-weight: 900;
}
.mobile-backdrop { display: none; }

@media (max-width: 1180px) {
  :root { --sidebar: 260px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { min-height: 380px; }
  .quick-info { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 920px) {
  :root { --topbar: 72px; }
  body.nav-open { overflow: hidden; }
  .topbar { padding: 10px 16px; }
  .brand img { width: 178px; }
  .top-actions { display: none; }
  .menu-btn { display: block; margin-left: auto; }
  .sidebar {
    top: var(--topbar);
    width: min(86vw, 330px);
    transform: translateX(-104%);
    transition: transform .24s ease;
    box-shadow: 24px 0 80px rgba(7, 26, 51, .2);
  }
  .nav-open .sidebar { transform: translateX(0); }
  .mobile-backdrop {
    position: fixed;
    inset: var(--topbar) 0 0 0;
    z-index: 65;
    background: rgba(7, 26, 51, .44);
    backdrop-filter: blur(2px);
  }
  .nav-open .mobile-backdrop { display: block; }
  .main, .footer { margin-left: 0; }
  .main { padding: calc(var(--topbar) + 18px) 16px 34px; }
  .hero { padding: 28px; border-radius: 28px; }
  .hero h1 { letter-spacing: -.045em; }
  .metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shot-grid { grid-template-columns: 1fr; }
  .feature-card ul { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-panel { grid-template-columns: 1fr; }
  .cta-panel img { max-width: 270px; }
}

@media (max-width: 560px) {
  .brand img { width: 150px; }
  .hero { padding: 22px; border-radius: 24px; }
  .hero-actions a { width: 100%; }
  .metrics, .quick-info { grid-template-columns: 1fr; }
  .hero-visual { min-height: auto; }
  .visual-card { border-width: 7px; border-radius: 20px; transform: none; }
  .floating-card { display: none; }
  .doc-section { padding: 20px; border-radius: 24px; }
  .shot-card { border-radius: 18px; }
  .shot-card img { aspect-ratio: 4 / 3; }
  .footer { padding-bottom: 72px; }
}


/* Basic client-side asset protection for previews */
body { -webkit-touch-callout: none; }
.shot-card img, .visual-card img { pointer-events: none; }
::selection { background: rgba(15, 211, 199, .22); }


.banner-grid .banner-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center top;
}
.banner-grid .banner-card figcaption {
  min-height: 72px;
}

/* Customer-facing POS promo section */
.pos-solution-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 0%, rgba(15, 211, 199, .12), transparent 28rem),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.9));
}
.pos-client-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  margin-bottom: 24px;
}
.pos-client-copy {
  padding: clamp(22px, 4vw, 34px);
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 8%, rgba(15, 211, 199, .34), transparent 17rem),
    linear-gradient(135deg, var(--navy), #0a2f55 58%, #064c5c);
  box-shadow: 0 24px 60px rgba(7, 26, 51, .14);
}
.pos-client-copy .eyebrow {
  color: #fff;
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.12);
}
.pos-client-copy h2 {
  margin: 18px 0 12px;
  font-size: clamp(30px, 4.2vw, 58px);
  line-height: 1.05;
  letter-spacing: -.055em;
}
.pos-client-copy p {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.8);
  font-size: clamp(15px, 1.4vw, 18px);
}
.pos-client-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.pos-client-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--navy);
  background: #fff;
  font-weight: 950;
}
.pos-client-actions a + a {
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.12);
}
.pos-client-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.pos-client-points div {
  min-height: 132px;
  padding: 20px;
  border: 1px solid rgba(15, 211, 199, .22);
  border-radius: 22px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 12px 30px rgba(7, 26, 51, .06);
}
.pos-client-points strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.15;
}
.pos-client-points span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
}
.promo-slider {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(231, 237, 244, .98);
  background: #fff;
  box-shadow: 0 24px 70px rgba(7, 26, 51, .13);
}
.promo-slide {
  display: none;
  margin: 0;
  background: #fff;
}
.promo-slide.is-active { display: block; }
.promo-slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center top;
  border: 0;
}
.promo-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(7, 26, 51, .82);
  box-shadow: 0 14px 28px rgba(7, 26, 51, .22);
  cursor: pointer;
  font-size: 36px;
  line-height: 1;
}
.promo-prev { left: 16px; }
.promo-next { right: 16px; }
.promo-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
}
.promo-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(10,37,64,.28);
  cursor: pointer;
}
.promo-dots button.is-active { background: var(--teal-dark); }
.promo-caption-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.promo-caption-row div {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(7,26,51,.05);
}
.promo-caption-row strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
}
.promo-caption-row span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 920px) {
  .pos-client-hero { grid-template-columns: 1fr; }
  .promo-arrow { width: 42px; height: 42px; font-size: 30px; }
  .promo-caption-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .pos-client-copy { padding: 22px; border-radius: 24px; }
  .pos-client-actions a { width: 100%; }
  .pos-client-points { grid-template-columns: 1fr; }
  .promo-slider { border-radius: 22px; }
  .promo-slide img { aspect-ratio: 16 / 10.5; }
  .promo-arrow { display: none; }
}
