:root {
  --navy-950: #041426;
  --navy-900: #061a32;
  --navy-800: #0a2848;
  --navy-700: #123b62;
  --teal-500: #00c2cb;
  --teal-400: #31d8df;
  --teal-100: #dff9fa;
  --ink: #102a43;
  --muted: #5f7489;
  --line: #dce6ed;
  --mist: #f1f7f9;
  --paper: #ffffff;
  --amber: #ffbf69;
  --display: 'Manrope', 'Segoe UI', sans-serif;
  --body: 'Source Sans 3', 'Segoe UI', sans-serif;
  --shadow-sm: 0 8px 24px rgba(5, 29, 52, 0.08);
  --shadow-lg: 0 24px 70px rgba(5, 29, 52, 0.14);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body.sales-page {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #fff;
  font-family: var(--body);
  font-size: 1.08rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.sales-page h1,
.sales-page h2,
.sales-page h3,
.sales-page strong,
.sales-page .btn {
  font-family: var(--display);
}

.sales-page a {
  text-underline-offset: 0.18em;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2000;
  padding: 0.6rem 0.85rem;
  transform: translateY(-150%);
  border-radius: 0.5rem;
  background: #fff;
  color: var(--navy-900);
  font-weight: 700;
  transition: transform 0.2s ease;
}

.skip-link:focus { transform: translateY(0); }

.section-space { padding: clamp(5rem, 9vw, 8rem) 0; }

.sales-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1rem;
  color: var(--navy-700);
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.sales-kicker span {
  display: inline-grid;
  width: 1.85rem;
  height: 1.85rem;
  place-items: center;
  border: 1px solid rgba(0, 194, 203, 0.32);
  border-radius: 50%;
  color: var(--teal-500);
  font-size: 0.68rem;
}

.sales-kicker-light { color: rgba(255, 255, 255, 0.68); }

.sales-kicker-light span {
  border-color: rgba(49, 216, 223, 0.35);
  color: var(--teal-400);
}

.sales-title {
  max-width: 18ch;
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(1.8rem, 2.6vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.12;
}

.sales-section-lede {
  max-width: 41rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.25rem);
  line-height: 1.72;
}

.section-heading {
  max-width: 47rem;
  margin: 0 auto clamp(2.8rem, 6vw, 4.7rem);
  text-align: center;
}

.section-heading .sales-title,
.section-heading .sales-section-lede {
  max-width: none;
  margin-right: auto;
  margin-left: auto;
}

.section-heading-wide { max-width: 56rem; }

.btn {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.65rem;
  font-size: 0.92rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-teal {
  --bs-btn-color: #032f35;
  --bs-btn-bg: var(--teal-500);
  --bs-btn-border-color: var(--teal-500);
  --bs-btn-hover-color: #032f35;
  --bs-btn-hover-bg: var(--teal-400);
  --bs-btn-hover-border-color: var(--teal-400);
  --bs-btn-active-color: #032f35;
  --bs-btn-active-bg: #00adb5;
  --bs-btn-active-border-color: #00adb5;
  box-shadow: 0 12px 30px rgba(0, 194, 203, 0.22);
}

.btn-outline-navy {
  --bs-btn-color: var(--navy-900);
  --bs-btn-border-color: rgba(6, 26, 50, 0.24);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--navy-900);
  --bs-btn-hover-border-color: var(--navy-900);
}

.btn-hero-ghost,
.btn-nav-ghost {
  --bs-btn-color: #fff;
  --bs-btn-bg: rgba(255, 255, 255, 0.05);
  --bs-btn-border-color: rgba(255, 255, 255, 0.28);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgba(255, 255, 255, 0.12);
  --bs-btn-hover-border-color: rgba(255, 255, 255, 0.48);
}

/* Navigation */
.sales-navbar {
  padding: 0.9rem 0;
  transition: padding 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.sales-navbar .container { max-width: 1320px; }

.brand-shell {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.brand-shell img {
  display: block;
  width: auto;
  height: 30px;
}

.sales-navbar .nav-link {
  position: relative;
  padding: 0.48rem 0.7rem !important;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--display);
  font-size: 0.84rem;
  font-weight: 700;
}

.sales-navbar .nav-link::after {
  position: absolute;
  right: 0.7rem;
  bottom: 0.25rem;
  left: 0.7rem;
  height: 1px;
  content: '';
  transform: scaleX(0);
  transform-origin: left;
  background: var(--teal-400);
  transition: transform 0.2s ease;
}

.sales-navbar .nav-link:hover,
.sales-navbar .nav-link:focus { color: #fff; }

.sales-navbar .nav-link:hover::after,
.sales-navbar .nav-link:focus::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  gap: 0.55rem;
  align-items: center;
}

.nav-actions .btn { padding: 0.58rem 0.85rem; }

.sales-navbar .navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(6, 26, 50, 0.55);
  box-shadow: none;
}

.sales-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.92)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.sales-navbar.is-scrolled {
  padding: 0.62rem 0;
  border-bottom: 1px solid rgba(6, 26, 50, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 35px rgba(6, 26, 50, 0.07);
  backdrop-filter: blur(18px);
}

.sales-navbar.is-scrolled .brand-shell {
  padding-left: 0;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.sales-navbar.is-scrolled .nav-link { color: var(--muted); }
.sales-navbar.is-scrolled .nav-link:hover,
.sales-navbar.is-scrolled .nav-link:focus { color: var(--navy-900); }

.sales-navbar.is-scrolled .btn-nav-ghost {
  --bs-btn-color: var(--navy-900);
  --bs-btn-border-color: rgba(6, 26, 50, 0.18);
  --bs-btn-hover-color: var(--navy-900);
  --bs-btn-hover-bg: var(--mist);
  --bs-btn-hover-border-color: rgba(6, 26, 50, 0.3);
}

.sales-navbar.is-scrolled .navbar-toggler {
  border-color: rgba(6, 26, 50, 0.18);
  background: #fff;
}

.sales-navbar.is-scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(6,26,50,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero */
.sales-hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  background: var(--navy-950);
}

.sales-hero-media,
.sales-hero-shade {
  position: absolute;
  inset: 0;
}

.sales-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.035);
  animation: hero-zoom 12s ease-out forwards;
}

@keyframes hero-zoom {
  to { transform: scale(1); }
}

.sales-hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 20, 38, 0.99) 0%, rgba(4, 20, 38, 0.91) 35%, rgba(4, 20, 38, 0.36) 65%, rgba(4, 20, 38, 0.12) 100%),
    linear-gradient(180deg, rgba(4, 20, 38, 0.2) 55%, rgba(4, 20, 38, 0.94) 100%);
}

.sales-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 860px;
  align-items: center;
  padding-top: 8.5rem;
  padding-bottom: 9.5rem;
}

.sales-hero-copy {
  max-width: 670px;
  animation: hero-copy-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-kicker {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 1.35rem;
  padding: 0.48rem 0.78rem;
  border: 1px solid rgba(49, 216, 223, 0.24);
  border-radius: 999px;
  background: rgba(0, 194, 203, 0.09);
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--display);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.status-dot {
  display: inline-block;
  width: 0.48rem;
  height: 0.48rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--teal-400);
  box-shadow: 0 0 0 5px rgba(49, 216, 223, 0.11);
}

.sales-hero h1 {
  max-width: 13ch;
  margin: 0;
  color: #fff;
  font-size: clamp(2.65rem, 4.3vw, 4.15rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.01;
}

.sales-hero h1 span {
  color: var(--teal-400);
  text-shadow: 0 0 42px rgba(0, 194, 203, 0.22);
}

.sales-lede {
  max-width: 38rem;
  margin: 1.75rem 0 0;
  color: rgba(237, 246, 250, 0.82);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-actions .btn-lg {
  min-height: 3.45rem;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.25rem;
  margin-top: 2.25rem;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-proof span {
  display: inline-flex;
  gap: 0.38rem;
  align-items: center;
}

.hero-proof i { color: var(--teal-400); }

.hero-live-card {
  position: absolute;
  right: 1rem;
  bottom: 7.8rem;
  width: min(31rem, 42vw);
  padding: 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1rem;
  background: rgba(6, 26, 50, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
  color: #fff;
  backdrop-filter: blur(16px);
  animation: hero-copy-in 0.8s 0.25s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-live-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--display);
  font-size: 0.76rem;
}

.hero-live-top span {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}

.hero-live-top strong {
  color: var(--teal-400);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-live-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}

.hero-live-grid div {
  padding: 0.72rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.6rem;
  background: rgba(255, 255, 255, 0.06);
}

.hero-live-grid small,
.hero-live-grid strong { display: block; }
.hero-live-grid small { color: rgba(255, 255, 255, 0.52); font-size: 0.68rem; }
.hero-live-grid strong { margin-top: 0.15rem; color: #fff; font-size: 0.76rem; }

/* Signal strip */
.signal-strip {
  position: relative;
  z-index: 3;
  margin-top: -4.75rem;
}

.signal-grid {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(6, 26, 50, 0.08);
  border-radius: 1rem;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.signal-item {
  position: relative;
  min-height: 9.5rem;
  padding: 1.55rem 1.65rem;
}

.signal-item:not(:last-child)::after {
  position: absolute;
  top: 1.5rem;
  right: 0;
  bottom: 1.5rem;
  width: 1px;
  content: '';
  background: var(--line);
}

.signal-item strong {
  display: block;
  color: var(--navy-900);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.signal-item span {
  display: block;
  max-width: 12rem;
  margin-top: 0.62rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

/* Intro */
.intro-section {
  position: relative;
  overflow: hidden;
  padding-top: clamp(7rem, 12vw, 11rem);
  background:
    radial-gradient(circle at 95% 10%, rgba(0, 194, 203, 0.09), transparent 24rem),
    #fff;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.outcome-card {
  position: relative;
  min-height: 20rem;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: linear-gradient(160deg, #fff 25%, #f3f9fa 100%);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.outcome-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 194, 203, 0.35);
  box-shadow: var(--shadow-sm);
}

.outcome-card::after {
  position: absolute;
  right: -2.5rem;
  bottom: -3.5rem;
  width: 10rem;
  height: 10rem;
  border: 1px solid rgba(0, 194, 203, 0.18);
  border-radius: 50%;
  content: '';
}

.outcome-index {
  position: absolute;
  top: 1.25rem;
  right: 1.4rem;
  color: #a8bac8;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 800;
}

.outcome-card > i {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  border-radius: 0.75rem;
  background: var(--navy-900);
  box-shadow: 0 12px 30px rgba(6, 26, 50, 0.18);
  color: var(--teal-400);
  font-size: 1.35rem;
}

.outcome-card h3 {
  margin: 4.5rem 0 0.65rem;
  color: var(--navy-900);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.outcome-card p {
  max-width: 22rem;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* Product gallery */
.product-gallery-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 5%, rgba(0, 194, 203, 0.14), transparent 28rem),
    var(--navy-950);
}

.product-gallery-section::before {
  position: absolute;
  top: -18rem;
  left: -12rem;
  width: 32rem;
  height: 32rem;
  border: 1px solid rgba(49, 216, 223, 0.1);
  border-radius: 50%;
  content: '';
}

.gallery-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.8fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.gallery-heading .sales-section-lede {
  margin: 0;
  color: rgba(232, 244, 248, 0.66);
}

.product-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-auto-rows: 215px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.85rem;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  grid-column: span 4;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
  color: #fff;
  cursor: zoom-in;
  text-align: left;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.gallery-card:nth-child(1) {
  grid-column: span 7;
  grid-row: span 2;
}

.gallery-card:nth-child(2) {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery-card:last-child { grid-column: span 12; }

.gallery-card:hover,
.gallery-card:focus-visible {
  z-index: 2;
  transform: translateY(-4px);
  border-color: rgba(49, 216, 223, 0.58);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.3);
  outline: none;
}

.gallery-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-card:hover > img,
.gallery-card:focus-visible > img { transform: scale(1.025); }

.gallery-overlay {
  position: absolute;
  inset: auto 0 0;
  display: block;
  padding: 3.5rem 1.25rem 1.1rem;
  background: linear-gradient(180deg, transparent, rgba(4, 20, 38, 0.95));
}

.gallery-overlay strong,
.gallery-overlay small,
.gallery-tag { display: block; }

.gallery-tag {
  margin-bottom: 0.3rem;
  color: var(--teal-400);
  font-family: var(--display);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-overlay strong {
  padding-right: 2rem;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
}

.gallery-overlay small {
  max-width: 30rem;
  margin-top: 0.22rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.76rem;
  line-height: 1.4;
}

.gallery-overlay > i {
  position: absolute;
  right: 1.15rem;
  bottom: 1.15rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

.gallery-dialog {
  width: min(1180px, calc(100vw - 2rem));
  max-width: none;
  max-height: calc(100vh - 2rem);
  padding: 0;
  border: 0;
  border-radius: 1rem;
  background: transparent;
  color: #fff;
  overflow: visible;
}

.gallery-dialog::backdrop {
  background: rgba(1, 9, 18, 0.88);
  backdrop-filter: blur(10px);
}

.gallery-dialog-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
  background: var(--navy-950);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.5);
}

.gallery-dialog figure { margin: 0; }

.gallery-dialog figure > img {
  display: block;
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  background: #eef3f6;
}

.gallery-dialog figcaption {
  padding: 1.1rem 1.35rem 1.3rem;
}

.gallery-dialog figcaption > span {
  color: var(--teal-400);
  font-family: var(--display);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-dialog h2 {
  margin: 0.2rem 0 0;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
}

.gallery-dialog p {
  margin: 0.3rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.gallery-dialog-close,
.gallery-dialog-nav {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(4, 20, 38, 0.78);
  color: #fff;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-dialog-close:hover,
.gallery-dialog-nav:hover { background: var(--teal-500); color: var(--navy-950); }
.gallery-dialog-close { top: 0.85rem; right: 0.85rem; }
.gallery-dialog-nav { top: 40%; transform: translateY(-50%); }
.gallery-dialog-nav:hover { transform: translateY(-50%) scale(1.06); }
.gallery-dialog-prev { left: 0.85rem; }
.gallery-dialog-next { right: 0.85rem; }

/* Automation */
.automation-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 194, 203, 0.11), transparent 24rem),
    linear-gradient(145deg, var(--navy-950), #0b2a4a);
}

.automation-section::after {
  position: absolute;
  top: -12rem;
  right: -12rem;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(49, 216, 223, 0.12);
  border-radius: 50%;
  content: '';
}

.automation-visual {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.15rem;
  background: #fff;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.32);
}

.automation-visual > img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.automation-badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  gap: 0.65rem;
  align-items: center;
  padding: 0.72rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.7rem;
  background: rgba(6, 26, 50, 0.86);
  color: #fff;
  backdrop-filter: blur(10px);
}

.automation-badge > i {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 194, 203, 0.15);
  color: var(--teal-400);
}

.automation-badge span,
.automation-badge small { display: block; }
.automation-badge span { font-family: var(--display); font-size: 0.76rem; font-weight: 700; }
.automation-badge small { color: rgba(255, 255, 255, 0.58); font-family: var(--body); font-size: 0.65rem; font-weight: 600; }

.automation-lede { color: rgba(232, 244, 248, 0.67); }

.process-list {
  display: grid;
  gap: 0;
  margin: 2.15rem 0;
}

.process-item {
  display: flex;
  gap: 1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.process-item > span {
  display: grid;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  place-items: center;
  margin-top: 0.1rem;
  border: 1px solid rgba(49, 216, 223, 0.28);
  border-radius: 50%;
  color: var(--teal-400);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 800;
}

.process-item h3 {
  margin: 0;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 800;
}

.process-item p {
  margin: 0.15rem 0 0;
  color: rgba(232, 244, 248, 0.59);
  font-size: 0.92rem;
}

.text-link {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.text-link i { transition: transform 0.2s ease; }
.text-link:hover i { transform: translateX(4px); }
.text-link-light { color: var(--teal-400); }
.text-link-light:hover { color: #fff; }

/* Feature bento */
.features-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(0, 194, 203, 0.07), transparent 24rem),
    #f7fafb;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.feature-card {
  display: grid;
  min-height: 22rem;
  align-content: space-between;
  padding: 1.65rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 194, 203, 0.35);
  box-shadow: var(--shadow-sm);
}

.feature-card-wide {
  grid-column: span 2;
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 194, 203, 0.13), transparent 16rem),
    #fff;
}

.feature-icon {
  display: grid;
  width: 3.1rem;
  height: 3.1rem;
  place-items: center;
  margin-bottom: 2.75rem;
  border: 1px solid rgba(0, 194, 203, 0.2);
  border-radius: 0.75rem;
  background: var(--teal-100);
  color: var(--navy-900);
  font-size: 1.25rem;
}

.feature-eyebrow {
  margin: 0 0 0.4rem;
  color: var(--teal-500);
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-card h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.feature-copy {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.58;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.15rem;
}

.feature-tags span {
  display: inline-flex;
  gap: 0.28rem;
  align-items: center;
  padding: 0.33rem 0.55rem;
  border: 1px solid #e1eaee;
  border-radius: 999px;
  background: #f7fafb;
  color: var(--navy-700);
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
}

.feature-tags i { color: var(--teal-500); }

/* Integrations */
.integrations-section { background: #fff; }
.integration-copy-col { position: sticky; top: 8rem; }

.local-proof {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 2rem;
  padding: 1rem;
  border: 1px solid rgba(0, 194, 203, 0.18);
  border-radius: 0.8rem;
  background: var(--teal-100);
}

.local-proof > i {
  color: var(--teal-500);
  font-size: 1.35rem;
}

.local-proof strong,
.local-proof span { display: block; }
.local-proof strong { color: var(--navy-900); font-size: 0.85rem; font-weight: 800; }
.local-proof span { margin-top: 0.15rem; color: var(--muted); font-size: 0.8rem; line-height: 1.4; }

.integration-group {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #f9fbfc;
}

.integration-group-head {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  margin-bottom: 1rem;
}

.integration-group-head > i {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border-radius: 0.6rem;
  background: var(--navy-900);
  color: var(--teal-400);
  font-size: 1rem;
}

.integration-group-head strong,
.integration-group-head span { display: block; }
.integration-group-head strong { color: var(--navy-900); font-size: 0.9rem; font-weight: 800; }
.integration-group-head span { color: var(--muted); font-size: 0.76rem; }

.logo-grid {
  display: grid;
  gap: 0.55rem;
}

.logo-grid-payments { grid-template-columns: repeat(4, 1fr); }
.logo-grid-compact { grid-template-columns: repeat(2, 1fr); }
.logo-grid-billing { grid-template-columns: repeat(3, 1fr); }

.logo-tile {
  display: grid;
  min-height: 5rem;
  place-items: center;
  padding: 0.7rem;
  border: 1px solid #e6edf1;
  border-radius: 0.7rem;
  background: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.logo-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 194, 203, 0.3);
  box-shadow: 0 8px 18px rgba(6, 26, 50, 0.06);
}

.logo-tile img {
  display: block;
  max-width: 100%;
  max-height: 2.35rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

.logo-grid-billing .logo-tile img { max-height: 2.7rem; }

.channel-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: center;
  margin-top: 3.5rem;
  padding: 2rem;
  border-radius: 1rem;
  background: var(--navy-900);
}

.channel-panel h3 {
  margin: 0;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.channel-panel .sales-kicker { color: rgba(255, 255, 255, 0.58); }

.channel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.channel-grid span {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
}

.channel-grid i { color: var(--teal-400); font-size: 1rem; }

/* Audience */
.audience-section {
  background:
    linear-gradient(180deg, rgba(241, 247, 249, 0.3), #f2f7f9),
    #f2f7f9;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.audience-card {
  position: relative;
  min-height: 20rem;
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #fff;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  border-color: var(--navy-900);
  background: var(--navy-900);
}

.audience-card > i {
  color: var(--teal-500);
  font-size: 1.65rem;
}

.audience-card h3 {
  margin: 5.5rem 0 0.7rem;
  color: var(--navy-900);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.audience-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.audience-arrow {
  position: absolute;
  top: 1.3rem;
  right: 1.3rem;
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy-900);
  font-size: 0.8rem;
}

.audience-card:hover h3,
.audience-card:hover p,
.audience-card:hover .audience-arrow { color: #fff; }
.audience-card:hover p { color: rgba(255, 255, 255, 0.62); }
.audience-card:hover .audience-arrow { border-color: rgba(255, 255, 255, 0.18); }

/* Tech */
.tech-section {
  padding: clamp(4rem, 8vw, 7rem) 0 0;
  background: #f2f7f9;
}

.tech-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2.2rem, 5vw, 4.2rem);
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 194, 203, 0.18), transparent 25rem),
    var(--navy-950);
  box-shadow: var(--shadow-lg);
}

.tech-panel::after {
  position: absolute;
  right: -8rem;
  bottom: -15rem;
  width: 31rem;
  height: 31rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: '';
}

.tech-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.tech-grid > div {
  min-height: 9rem;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.055);
}

.tech-grid i,
.tech-grid span,
.tech-grid strong { display: block; }
.tech-grid i { margin-bottom: 1.2rem; color: var(--teal-400); font-size: 1.25rem; }
.tech-grid span { color: rgba(255, 255, 255, 0.48); font-family: var(--display); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.tech-grid strong { margin-top: 0.2rem; color: #fff; font-size: 0.9rem; font-weight: 700; }

/* Package and CTA */
.package-section { background: #fff; }

.package-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
  padding: clamp(2.2rem, 6vw, 5rem);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at 0% 100%, rgba(0, 194, 203, 0.1), transparent 26rem),
    #fff;
  box-shadow: var(--shadow-sm);
}

.package-list {
  display: grid;
  gap: 0;
}

.package-list span {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  padding: 0.82rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy-900);
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 700;
}

.package-list i { color: var(--teal-500); font-size: 1.05rem; }

.final-cta {
  overflow: hidden;
  padding: 0 0 clamp(4rem, 8vw, 7rem);
  background: #fff;
}

.final-cta-inner {
  position: relative;
  overflow: hidden;
  padding: clamp(3.3rem, 8vw, 7rem) 1.5rem;
  border-radius: 1.25rem;
  background: var(--navy-950);
  text-align: center;
}

.final-cta-inner > img {
  position: relative;
  z-index: 1;
  width: min(240px, 58vw);
  height: auto;
  padding: 0.65rem 0.85rem;
  border-radius: 0.7rem;
  background: #fff;
}

.final-cta h2 {
  position: relative;
  z-index: 1;
  max-width: 16ch;
  margin: 2rem auto 0;
  color: #fff;
  font-size: clamp(2.05rem, 3.7vw, 3.3rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.final-cta p {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: 1.3rem auto 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 1.12rem;
}

.final-cta .hero-actions { position: relative; z-index: 1; }

.final-orb {
  position: absolute;
  border: 1px solid rgba(49, 216, 223, 0.16);
  border-radius: 50%;
}

.final-orb-one { top: -18rem; left: -10rem; width: 38rem; height: 38rem; }
.final-orb-two { right: -5rem; bottom: -24rem; width: 46rem; height: 46rem; }

/* Footer */
.sales-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}

.footer-brand img { display: block; width: 150px; height: auto; }
.footer-inner p { margin: 0; color: var(--muted); font-size: 0.84rem; text-align: center; }

.footer-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  color: #8395a5;
  font-size: 0.78rem;
}

.footer-links a { color: var(--navy-700); font-family: var(--display); font-weight: 700; text-decoration: none; }
.footer-links a:hover { color: var(--teal-500); }

.sales-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: #20ad5a;
  box-shadow: 0 12px 35px rgba(20, 127, 64, 0.28);
  color: #fff;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.sales-fab:hover { transform: translateY(-3px); background: #168e48; color: #fff; }

/* Reveal */
.sales-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Responsive */
@media (max-width: 1199.98px) {
  .sales-navbar .nav-link { padding-right: 0.48rem !important; padding-left: 0.48rem !important; font-size: 0.78rem; }
  .hero-live-card { width: min(27rem, 43vw); }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-card-wide { grid-column: span 2; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991.98px) {
  .sales-navbar .navbar-collapse {
    margin-top: 0.75rem;
    padding: 1rem;
    border: 1px solid rgba(6, 26, 50, 0.1);
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
  }

  .sales-navbar .navbar-collapse .nav-link { padding: 0.65rem 0.3rem !important; color: var(--navy-800); }
  .sales-navbar .navbar-collapse .nav-link::after { display: none; }
  .sales-navbar .navbar-collapse .nav-actions { margin-top: 0.5rem; }
  .sales-navbar .navbar-collapse .btn-nav-ghost { --bs-btn-color: var(--navy-900); --bs-btn-border-color: rgba(6,26,50,.18); }
  .sales-hero, .sales-hero-inner { min-height: 800px; }
  .sales-hero-shade { background: linear-gradient(90deg, rgba(4, 20, 38, 0.98) 0%, rgba(4, 20, 38, 0.82) 58%, rgba(4, 20, 38, 0.48) 100%), linear-gradient(180deg, transparent 50%, rgba(4, 20, 38, 0.92) 100%); }
  .sales-hero-copy { max-width: 590px; }
  .hero-live-card { display: none; }
  .signal-grid { grid-template-columns: repeat(2, 1fr); }
  .signal-item:nth-child(2)::after { display: none; }
  .signal-item:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .outcomes-grid { grid-template-columns: 1fr; }
  .outcome-card { min-height: auto; }
  .outcome-card h3 { margin-top: 3rem; }
  .gallery-heading { grid-template-columns: 1fr; gap: 1rem; align-items: start; }
  .gallery-heading .sales-section-lede { margin-top: 0.5rem; }
  .product-gallery { grid-auto-rows: 190px; }
  .automation-visual { margin-bottom: 1rem; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .integration-copy-col { position: static; }
  .channel-panel { grid-template-columns: 1fr; }
  .package-panel { grid-template-columns: 1fr; }
}

@media (max-width: 767.98px) {
  body.sales-page { font-size: 1rem; }
  .sales-page .row.g-5 { --bs-gutter-x: 1.5rem; }
  .sales-title { font-size: clamp(1.8rem, 7.5vw, 2.45rem); }
  .sales-hero { min-height: 760px; }
  .sales-hero-inner { min-height: 760px; padding-top: 8rem; padding-bottom: 9rem; align-items: center; }
  .sales-hero-img { object-position: 62% center; opacity: 0.76; }
  .sales-hero-shade { background: linear-gradient(90deg, rgba(4,20,38,.98) 0%, rgba(4,20,38,.88) 70%, rgba(4,20,38,.65) 100%), linear-gradient(180deg, rgba(4,20,38,.25) 20%, rgba(4,20,38,.95) 100%); }
  .sales-hero h1 { font-size: clamp(2.45rem, 11vw, 3.6rem); }
  .sales-lede { font-size: 1.08rem; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { gap: 0.65rem; }
  .hero-proof span { width: calc(50% - 0.5rem); }
  .signal-strip { margin-top: -3rem; }
  .signal-item { min-height: 7.8rem; padding: 1.2rem; }
  .signal-item strong { font-size: 1.3rem; }
  .signal-item span { font-size: 0.76rem; }
  .product-gallery { grid-template-columns: 1fr; grid-auto-rows: 255px; }
  .gallery-card,
  .gallery-card:nth-child(1),
  .gallery-card:nth-child(2),
  .gallery-card:last-child { grid-column: auto; grid-row: auto; }
  .gallery-card:nth-child(1) { min-height: 300px; }
  .gallery-dialog { width: calc(100vw - 1rem); max-height: calc(100vh - 1rem); }
  .gallery-dialog figure > img { max-height: 66vh; }
  .gallery-dialog-nav { top: 36%; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card-wide { grid-column: auto; }
  .feature-card { min-height: auto; }
  .feature-icon { margin-bottom: 3rem; }
  .logo-grid-payments { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: 17rem; }
  .tech-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 575.98px) {
  .brand-shell img { height: 26px; }
  .nav-actions { flex-direction: column; align-items: stretch; }
  .sales-navbar .navbar-collapse .nav-actions .btn { width: 100%; }
  .hero-kicker { align-items: flex-start; border-radius: 0.75rem; font-size: 0.68rem; line-height: 1.35; }
  .hero-proof span { width: 100%; }
  .sales-kicker { letter-spacing: 0.1em; }
  .outcome-card { padding: 1.5rem; }
  .automation-badge { right: 0.65rem; bottom: 0.65rem; }
  .logo-grid-compact { grid-template-columns: 1fr 1fr; }
  .logo-grid-billing { grid-template-columns: repeat(3, 1fr); }
  .logo-tile { min-height: 4.3rem; padding: 0.55rem; }
  .channel-panel { padding: 1.35rem; }
  .channel-grid { grid-template-columns: 1fr; }
  .tech-panel { padding: 1.6rem; }
  .tech-grid { grid-template-columns: 1fr; }
  .package-panel { padding: 1.5rem; }
  .sales-fab span { display: none; }
  .sales-fab { width: 3rem; height: 3rem; justify-content: center; padding: 0; font-size: 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .sales-reveal { opacity: 1 !important; transform: none !important; }
}
