/* Pecan Landing V2 */
:root {
  --v2-blue-50: #d9f0fe;
  --v2-blue-100: #b4d6e9;
  --v2-blue-200: #7ab9de;
  --v2-blue-300: #5da8d5;
  --v2-blue-500: #3382b2;
  --v2-blue-700: #225877;
  --v2-blue-800: #19435b;
  --v2-blue-950: #021922;
  --v2-gray-50: #ffffff;
  --v2-gray-100: #f8fafc;
  --v2-gray-200: #d8dde5;
  --v2-gray-300: #b5bcc8;
  --v2-gray-400: #949ca8;
  --v2-gray-500: #78808d;
  --v2-gray-600: #636c7a;
  --v2-gray-800: #3f454e;
  --v2-gray-950: #191d23;
  --v2-green-bg: #cffbe5;
  --v2-green-text: #0a9c55;
  --v2-shadow-btn: 0 1px 2px -1px rgba(35, 86, 118, 0.08);
  --v2-shadow-menu: 0 2px 4px rgba(35, 86, 118, 0.12);
  --v2-shadow-card: 0 3px 8px rgba(25, 67, 91, 0.24);
  --v2-max: 1380px;
  --v2-gutter: 30px;
  --v2-header-h: 64px;
  --v2-font: "Poppins", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body.v2 {
  margin: 0;
  font-family: var(--v2-font);
  color: var(--v2-gray-800);
  background: var(--v2-gray-100);
  -webkit-font-smoothing: antialiased;
}

/* Sticky header offset for in-page anchors (#mission, #operations, etc.) */
html {
  scroll-padding-top: calc(var(--v2-header-h) + 16px);
}

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

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

.v2-container {
  width: 100%;
  max-width: var(--v2-max);
  margin: 0 auto;
  padding: 0 var(--v2-gutter);
}

/* Buttons */
.v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font: 600 14px/1.2 var(--v2-font);
  box-shadow: var(--v2-shadow-btn);
  transition: background 0.2s ease, color 0.2s ease;
}

.v2-btn--primary,
a.v2-btn--primary {
  background: var(--v2-blue-500);
  color: #fff;
}

.v2-btn--primary:hover,
a.v2-btn--primary:hover {
  background: var(--v2-blue-700);
  color: #fff;
}

.v2-btn--secondary,
a.v2-btn--secondary {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.v2-btn--secondary:hover,
a.v2-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.v2-btn--link,
a.v2-btn--link {
  background: transparent;
  box-shadow: none;
  color: var(--v2-blue-500);
  height: auto;
  padding: 0;
  gap: 8px;
}

.v2-btn--link img {
  width: 24px;
  height: 24px;
}

.v2-btn img {
  width: 16px;
  height: 16px;
}

.v2-tag-new {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 8px;
  border-radius: 2px;
  background: var(--v2-green-bg);
  color: var(--v2-green-text);
  font: 600 12px/1 var(--v2-font);
}

/* Header */
.v2-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--v2-gray-50);
  border-bottom: 1px solid var(--v2-gray-200);
}

.v2-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--v2-header-h);
  max-width: var(--v2-max);
  margin: 0 auto;
  padding: 0 var(--v2-gutter);
  gap: 24px;
}

.v2-header__left,
.v2-header__right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.v2-header__nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.v2-logo img {
  width: 190.5px;
  height: 30px;
}

.v2-nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: 400 14px/1.2 var(--v2-font);
  color: var(--v2-gray-800);
}

.v2-nav-item__btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.v2-nav-item img,
.v2-nav-item__btn img {
  width: 16px;
  height: 16px;
}

.v2-nav-item.is-open img.chevron-down {
  display: none;
}

.v2-nav-item:not(.is-open) img.chevron-up {
  display: none;
}

.v2-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 280px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--v2-gray-200);
  border-radius: 0 0 4px 4px;
  box-shadow: var(--v2-shadow-menu);
  flex-direction: column;
  gap: 8px;
  z-index: 120;
}

.v2-nav-item.is-open .v2-dropdown {
  display: flex;
}

.v2-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 24px;
  font: 400 14px/1.2 var(--v2-font);
  color: var(--v2-gray-800);
}

.v2-dropdown a:hover {
  color: var(--v2-blue-500);
}

.v2-header__utility {
  display: flex;
  align-items: center;
  gap: 24px;
}

.v2-header__links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.v2-header__toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: var(--v2-blue-500);
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.v2-mob {
  display: none;
  background: #fff;
  border-bottom: 1px solid var(--v2-gray-200);
  max-height: calc(100vh - var(--v2-header-h));
  overflow-y: auto;
  padding: 16px var(--v2-gutter) 24px;
}

.v2-mob.is-open {
  display: block;
}

.v2-mob details {
  border-bottom: 1px solid var(--v2-gray-200);
  padding: 12px 0;
}

.v2-mob summary {
  cursor: pointer;
  font: 500 14px/1.2 var(--v2-font);
  list-style: none;
}

.v2-mob summary::-webkit-details-marker {
  display: none;
}

.v2-mob .v2-dropdown {
  position: static;
  display: flex;
  box-shadow: none;
  border: 0;
  padding: 12px 0 0;
  min-width: 0;
}

.v2-mob > a,
.v2-mob .v2-mob-actions a {
  display: block;
  padding: 12px 0;
  font: 400 14px/1.2 var(--v2-font);
}

.v2-mob-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

/* Footer */
.v2-footer {
  background: var(--v2-blue-950);
  color: var(--v2-gray-50);
  padding: 48px 0;
}

.v2-footer > .v2-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.v2-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 0;
}

.v2-footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.v2-footer__col h3,
.v2-footer__col h4 {
  margin: 0;
  font: 500 10px/1 var(--v2-font);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.v2-footer__col a {
  display: flex;
  align-items: center;
  padding: 0;
  min-height: 24px;
  font: 400 12px/1.2 var(--v2-font);
  color: var(--v2-gray-50);
}

.v2-footer__col a:hover {
  color: var(--v2-blue-200);
}

.v2-footer__rule {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.62);
  margin: 0;
  width: 100%;
}

.v2-footer__mid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.v2-footer__social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.v2-footer__social a,
.v2-footer__social img {
  width: 16px;
  height: 16px;
}

.v2-footer__phone {
  margin: 0;
  font: 400 12px/1.2 var(--v2-font);
}

.v2-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font: 400 12px/1.2 var(--v2-font);
}

.v2-footer__bottom a {
  text-decoration: underline;
}

.v2-footer__ai {
  margin: 0;
  font: 400 10px/1.2 var(--v2-font);
}

/* Section helpers */
.v2-section {
  padding: 80px 0;
}

.v2-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
  font: 400 14px/1.2 var(--v2-font);
  color: var(--v2-gray-500);
  text-transform: capitalize;
}

.v2-eyebrow::before,
.v2-eyebrow::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--v2-gray-200);
}

.v2-h2 {
  margin: 0 0 48px;
  text-align: center;
  font: 600 32px/1.2 var(--v2-font);
  color: var(--v2-gray-950);
}

/* Hero */
.v2-hero {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  color: #fff;
  overflow: hidden;
}

.v2-hero__bg {
  position: absolute;
  inset: 0;
  background: url("/img/v2/shared/hero-bg.png") center / cover no-repeat;
  background-position: center;
  background-size: cover;
}

.v2-hero__bg::after {
  /* Shared hero-bg is precomposed with overlay */
  content: none;
  display: none;
}

.v2-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 24px;
  align-items: start;
  width: 100%;
  max-width: var(--v2-max);
  margin: 0 auto;
  padding: 0 var(--v2-gutter);
}

.v2-hero__copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.v2-hero__intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 699px;
}

.v2-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 32px;
  padding: 0 16px;
  border-radius: 80px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--v2-shadow-btn);
  font: 400 12px/1.4 var(--v2-font);
  width: fit-content;
}

.v2-hero__badge img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.v2-hero h1 {
  margin: 0;
  font: 600 56px/1.2 var(--v2-font);
  text-transform: capitalize;
  max-width: 699px;
}

.v2-hero h1 span {
  color: var(--v2-blue-200);
}

.v2-hero__lead {
  margin: 0;
  max-width: 699px;
  font: 400 18px/1.4 var(--v2-font);
  color: var(--v2-gray-200);
}

.v2-hero__ctas {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.v2-hero__ctas .v2-btn--secondary img {
  width: 24px;
  height: 24px;
}

.v2-hero__trust {
  border-top: 1px solid var(--v2-gray-400);
  padding-top: 24px;
  max-width: 699px;
}

.v2-hero__trust p {
  margin: 0 0 8px;
  font: 400 14px/1.2 var(--v2-font);
  text-transform: uppercase;
  color: var(--v2-gray-100);
}

.v2-hero__stars {
  display: flex;
  align-items: center;
  gap: 8px;
}

.v2-hero__star-row {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.v2-hero__stars img {
  width: 14px;
  height: 14px;
  display: block;
}

.v2-hero__stars > span:last-child {
  font: 400 12px/1.4 var(--v2-font);
  color: var(--v2-gray-400);
}

.v2-hero__device {
  position: relative;
  width: 500px;
  height: 500px;
  max-width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.v2-hero__device::before {
  content: "";
  position: absolute;
  width: 750px;
  height: 750px;
  left: calc(50% - 90px);
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 58% 50%, rgba(64, 151, 203, 0.55) 0%, rgba(64, 151, 203, 0) 68%);
  pointer-events: none;
}

.v2-hero__device img {
  position: relative;
  z-index: 1;
  width: 500px;
  max-width: 100%;
  height: auto;
  display: block;
  background: transparent;
}

/* Stats */
.v2-stats {
  padding: 80px 0;
  background: var(--v2-blue-800);
}

.v2-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.v2-stats__item {
  text-align: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
}

.v2-stats__item strong {
  display: block;
  width: 100%;
  font: 700 32px/1.2 var(--v2-font);
  color: var(--v2-blue-200);
  margin: 0;
}

.v2-stats__item span {
  display: block;
  width: 100%;
  font: 400 14px/1.2 var(--v2-font);
  color: #fff;
}

/* Product rows */
.v2-products .v2-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.v2-products__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  width: 100%;
}

.v2-products .v2-eyebrow {
  margin-bottom: 0;
}

.v2-products .v2-h2 {
  margin: 0;
}

.v2-products__rows {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.v2-products .v2-product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin: 0;
  padding: 40px;
  border: 1px solid var(--v2-gray-200);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.v2-products .v2-product-row:last-child {
  gap: 40px;
}

.v2-product-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  min-width: 0;
}

.v2-product-copy h3 {
  margin: 0;
  font: 600 32px/1.2 var(--v2-font);
  color: var(--v2-blue-500);
}

.v2-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.v2-checklist li {
  display: flex;
  gap: 8px;
  align-items: center;
  font: 400 18px/1.4 var(--v2-font);
  color: var(--v2-gray-800);
}

.v2-checklist li::before {
  content: "";
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  background: url("/img/v2/icons/check.svg") center/contain no-repeat;
}

.v2-product-media {
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
  aspect-ratio: 1;
  min-width: 0;
}

.v2-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.v2-products,
.v2-types,
.v2-features {
  background: var(--v2-gray-100);
}

.v2-features .v2-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.v2-features__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  width: 100%;
}

.v2-features .v2-eyebrow,
.v2-features .v2-h2 {
  margin: 0;
}

.v2-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

.v2-card {
  background: #fff;
  border: 1px solid var(--v2-gray-200);
  border-radius: 16px;
  padding: 24px;
  min-height: 216px;
  display: flex;
  flex-direction: column;
}

.v2-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--v2-blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.v2-card__icon img {
  width: 24px;
  height: 24px;
}

.v2-card h3 {
  margin: 0 0 8px;
  font: 600 18px/1.2 var(--v2-font);
  color: var(--v2-gray-800);
}

.v2-card p {
  margin: 0 0 8px;
  font: 400 14px/1.4 var(--v2-font);
  color: var(--v2-gray-500);
}

.v2-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font: 600 14px/1.2 var(--v2-font);
  color: var(--v2-blue-500);
}

.v2-card__link img {
  width: 24px;
  height: 24px;
}

.v2-sms-note {
  margin: 0 0 16px;
  font: 400 12px/1.4 var(--v2-font);
  color: var(--v2-gray-500);
}

.v2-form-success {
  display: none;
  padding: 80px 0;
  background: var(--v2-gray-100);
}

.v2-form-success:not(.hide) {
  display: block;
}

.v2-eyebrow--blue {
  color: var(--v2-blue-500);
  font-weight: 600;
  text-transform: uppercase;
  gap: 8px;
}

.v2-eyebrow--blue::before,
.v2-eyebrow--blue::after {
  background: var(--v2-blue-500);
}

.v2-h2--blue {
  color: var(--v2-blue-700);
}

.v2-mission-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px;
  border: 1px solid var(--v2-gray-200);
  border-radius: 16px;
  background: #fff;
  margin: 0;
}

.v2-mission .v2-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.v2-mission__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  width: 100%;
}

.v2-mission .v2-eyebrow,
.v2-mission .v2-h2 {
  margin: 0;
}

.v2-mission__rows {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.v2-mission-card h3 {
  margin: 0;
  font: 600 32px/1.2 var(--v2-font);
  color: var(--v2-blue-500);
}

.v2-mission-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.v2-mission-card p {
  margin: 0;
  font: 400 18px/1.4 var(--v2-font);
  color: var(--v2-gray-800);
}

.v2-mission-media {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  min-width: 0;
  background: var(--v2-gray-100);
}

.v2-mission-media img,
.v2-mission-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  aspect-ratio: 1;
}

.v2-mission-card--flip .v2-mission-copy {
  order: 0;
}

/* Company hero */
.v2-hero--company {
  min-height: 800px;
  align-items: center;
}

.v2-hero--company .v2-hero__bg {
  background-image: url("/img/v2/shared/company-hero.png?v=3");
  background-position: center;
  background-size: cover;
}

/* Company hero photo is not precomposed — apply Figma overlay */
.v2-hero--company .v2-hero__bg::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(242.81deg, rgba(25, 67, 91, 0.8) 58.83%, rgba(9, 25, 34, 0.8) 100%);
}

.v2-hero--company .v2-hero__inner {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 795px);
  gap: 24px;
  align-items: start;
}

.v2-hero--company .v2-hero__copy {
  gap: 24px;
}

.v2-hero--company .v2-hero__intro {
  max-width: none;
  gap: 16px;
}

.v2-hero--company .v2-hero__lead {
  max-width: none;
}

.v2-hero--company h1 {
  text-transform: uppercase;
}

.v2-hero--company h1 span {
  display: block;
  color: var(--v2-blue-200);
}

.v2-hero--company .v2-hero__brand {
  width: 795px;
  max-width: 100%;
  height: 146px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.v2-hero__brand {
  min-width: 0;
}

.v2-hero__brand img {
  width: 100%;
  height: auto;
  max-width: 795px;
  display: block;
}

.v2-hero--company .v2-hero__brand img {
  width: 795px;
  max-width: 100%;
  height: 146px;
  object-fit: contain;
  object-position: left center;
}

/* Instant Funding */
.v2-hero--funding {
  align-items: center;
}

.v2-hero--funding .v2-hero__bg {
  /* Precomposed hero background (image + overlay) */
  background-image: url("/img/v2/shared/hero-bg.png?v=3");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Background asset already includes overlay — disable stacked gradient */
.v2-hero--funding .v2-hero__bg::after {
  display: none;
}

.v2-hero--funding .v2-hero__inner {
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.v2-hero--funding .v2-hero__intro,
.v2-hero--funding .v2-hero__lead {
  max-width: none;
}

.v2-hero--funding .v2-hero__lead {
  color: var(--v2-gray-200);
}

.v2-hero__brand--partner img {
  max-width: 601px;
}

/* Integration product heroes */
.v2-hero--integration {
  min-height: 800px;
  align-items: center;
}

.v2-hero--integration .v2-hero__bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Background asset already includes overlay — disable stacked gradient */
.v2-hero--integration .v2-hero__bg::after {
  display: none;
}

.v2-hero--integration .v2-hero__inner {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
}

.v2-hero--integration .v2-hero__intro,
.v2-hero--integration .v2-hero__lead {
  max-width: none;
}

.v2-hero--integration .v2-hero__copy {
  max-width: 618px;
}

.v2-hero--integration .v2-hero__lead {
  color: var(--v2-gray-200);
}

.v2-hero--orderout .v2-hero__brand--orderout {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  border-radius: 16px;
  overflow: hidden;
}

.v2-hero--orderout .v2-hero__brand--orderout img {
  max-width: 650px;
  width: 100%;
  height: auto;
  max-height: 143px;
  object-fit: contain;
  object-position: center;
}

/* Supported platforms band */
.v2-int-platforms {
  background: var(--v2-blue-800);
  color: #fff;
  padding: 80px 0;
}

.v2-int-platforms__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}

.v2-int-platforms__head .v2-h2 {
  margin: 0;
  color: #fff;
  text-transform: capitalize;
}

.v2-int-platforms__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

.v2-int-platform {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  padding: 16px 24px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 2px 2px rgba(35, 86, 118, 0.12), 0 2px 2px rgba(35, 86, 118, 0.18);
}

.v2-int-platform img {
  max-width: 180px;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Business impact (integration) */
.v2-int-impact {
  background: var(--v2-gray-100);
}

.v2-int-impact__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}

.v2-int-impact__head .v2-eyebrow,
.v2-int-impact__head .v2-h2 {
  margin: 0;
}

.v2-int-impact__lead {
  margin: 0;
  max-width: 680px;
  font: 400 16px/1.4 var(--v2-font);
  color: var(--v2-gray-600);
}

.v2-int-impact .v2-card {
  min-height: 0;
}

.v2-hero--online .v2-hero__brand--online {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
  min-height: 500px;
  /* Figma Image frame is transparent; only the 585×191 logo tile is white. */
  background: transparent;
  border-radius: 0;
  overflow: visible;
}

.v2-hero--online .v2-hero__brand--online img {
  width: 585px;
  max-width: calc(100% - 48px);
  height: auto;
  max-height: 191px;
  object-fit: contain;
  object-position: center;
  border-radius: 16px;
  /* Figma logo x=16 in a 682px column (~32px left of center). */
  transform: translateX(-32px);
}

.v2-hero--online h1 span {
  color: var(--v2-blue-200);
}

/* Seamless POS Sync (Online OrdersNOW + reuse) */
.v2-int-sync {
  background: #eef0f2;
}

.v2-int-sync__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}

.v2-int-sync__head .v2-eyebrow,
.v2-int-sync__head .v2-h2 {
  margin: 0;
}

.v2-int-sync__head .v2-h2 {
  text-transform: capitalize;
}

.v2-int-sync__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px;
  background: #fff;
  border: 1px solid var(--v2-gray-200);
  border-radius: 16px;
}

.v2-int-sync__media {
  min-width: 0;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  background: transparent;
}

.v2-int-sync__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.v2-int-sync__copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.v2-int-sync__copy h3 {
  margin: 0;
  font: 600 32px/1.2 var(--v2-font);
  color: var(--v2-blue-500);
}

.v2-int-sync__copy > p {
  margin: 0;
  font: 400 18px/1.4 var(--v2-font);
  color: var(--v2-gray-800);
}

.v2-int-sync .v2-checklist li::before {
  background-image: url("/img/v2/icons/check.svg");
}

/* AI Order Taking */
.v2-hero--ai .v2-hero__brand--ai {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  border-radius: 16px;
  overflow: hidden;
}

.v2-hero--ai .v2-hero__brand--ai img {
  max-width: 500px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.v2-hero--ai h1 .v2-hero__line2 {
  display: block;
  color: #fff;
}

.v2-hero--ai h1 .v2-hero__line2 span {
  color: var(--v2-blue-200);
}

.v2-hero__note {
  margin: 0;
  font: 400 18px/1.4 var(--v2-font);
  color: var(--v2-gray-200);
}

.v2-hero__note a {
  color: inherit;
  text-decoration: underline;
}

.v2-int-flow {
  background: #eef0f2;
}

.v2-int-flow__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}

.v2-int-flow__head .v2-eyebrow,
.v2-int-flow__head .v2-h2 {
  margin: 0;
}

.v2-int-flow__lead {
  margin: 0;
  max-width: 680px;
  font: 400 16px/1.4 var(--v2-font);
  color: var(--v2-gray-600);
}

.v2-int-demo {
  background: var(--v2-blue-800);
  color: #fff;
  padding: 48px 0;
}

.v2-int-demo__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}

.v2-int-demo__head .v2-eyebrow,
.v2-int-demo__head .v2-h2 {
  margin: 0;
  color: #fff;
}

.v2-int-demo__lead {
  margin: 0;
  max-width: 680px;
  font: 400 16px/1.4 var(--v2-font);
  color: var(--v2-blue-100);
}

.v2-int-demo__video {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1120 / 656;
  border-radius: 16px;
  overflow: hidden;
}

.v2-int-demo__video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.v2-int-demo__video--embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.v2-int-demo__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.v2-int-demo__play img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* QuickBooks Online */
.v2-hero--qb .v2-hero__brand--qb {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
  border-radius: 16px;
  overflow: hidden;
}

.v2-hero--qb .v2-hero__brand--qb img {
  max-width: 520px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.v2-int-sync__media--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  aspect-ratio: 1;
}

.v2-int-sync__media--logo img {
  width: 70%;
  height: auto;
  max-height: 70%;
  object-fit: contain;
}

.v2-checklist--qb li::before,
.v2-checklist--como li::before {
  background-image: url("/img/v2/icons/check.svg");
}

.v2-checklist--como li::before {
  background-image: url("/img/v2/icons/check.svg");
}

/* Como Loyalty */
.v2-hero--como .v2-hero__brand--como {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
  border-radius: 16px;
  overflow: hidden;
}

.v2-hero--como .v2-hero__brand--como img {
  max-width: 640px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.v2-hero--como h1 .v2-hero__accent {
  display: block;
  color: var(--v2-blue-200);
}

.v2-hero--como h1 .v2-hero__line2 {
  display: block;
  color: #fff;
}

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

.v2-int-sync--flip {
  background: #eef0f2;
}

.v2-int-sync--plain {
  background: #fff;
}

.v2-int-sync--flip .v2-int-sync__copy {
  justify-content: center;
}

.v2-int-sync--flip .v2-int-sync__copy > p {
  font-size: 18px;
}

/* POS product page */
.v2-hero--pos {
  align-items: center;
}

.v2-hero--pos .v2-hero__bg {
  /* Precomposed hero background (image + overlay) */
  background-image: url("/img/v2/shared/hero-bg.png?v=2");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Background asset already includes overlay — disable stacked gradient */
.v2-hero--pos .v2-hero__bg::after {
  display: none;
}

.v2-hero--pos .v2-hero__inner {
  grid-template-columns: minmax(0, 700px) minmax(0, 714px);
  gap: 0;
  align-items: center;
  justify-content: space-between;
}

.v2-hero--pos .v2-hero__intro,
.v2-hero--pos .v2-hero__lead {
  max-width: none;
}

.v2-hero--pos h1 span {
  color: var(--v2-blue-200);
}

.v2-hero__device--pos {
  width: 714px;
  height: 472px;
  max-width: 100%;
}

.v2-hero__device--pos::before {
  display: none;
}

.v2-hero__device--pos img {
  width: 714px;
  height: 472px;
  max-width: 100%;
  object-fit: contain;
}

.v2-pos-stats {
  display: flex;
  gap: 24px;
  align-items: center;
  width: 100%;
  padding-top: 24px;
  border-top: 1px solid var(--v2-gray-400);
}

.v2-pos-stat {
  display: flex;
  flex: 1 1 0;
  gap: 16px;
  align-items: center;
  min-width: 0;
}

.v2-pos-stat__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--v2-blue-300);
  background: rgba(51, 130, 178, 0.2);
  box-shadow: var(--v2-shadow-btn);
}

.v2-pos-stat__icon img {
  width: 24px;
  height: 24px;
}

.v2-pos-stat__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.v2-pos-stat__text strong {
  font: 600 32px/1.2 var(--v2-font);
  color: var(--v2-blue-500);
}

.v2-pos-stat__text span {
  font: 400 14px/1.4 var(--v2-font);
  color: var(--v2-gray-200);
}

.v2-pos-highlights__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  margin-bottom: 48px;
}

.v2-pos-highlights__head .v2-eyebrow,
.v2-pos-highlights__head .v2-h2 {
  margin: 0;
}

.v2-pos-tabs {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.v2-pos-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  border-bottom: 1px solid var(--v2-gray-200);
}

.v2-pos-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 8px 16px;
  margin: 0;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  font: 400 16px/1.4 var(--v2-font);
  color: var(--v2-gray-400);
  white-space: nowrap;
}

.v2-pos-tab span {
  font: 400 16px/1.2 var(--v2-font);
}

.v2-pos-tab.is-active {
  border-bottom: 2px solid var(--v2-blue-300);
  margin-bottom: -1px;
  font-weight: 500;
  color: var(--v2-gray-800);
}

.v2-pos-tab.is-active span {
  font-weight: 500;
  color: #4097cb;
}

.v2-pos-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px;
  background: var(--v2-gray-100);
  border: 1px solid var(--v2-gray-200);
  border-radius: 16px;
  overflow: hidden;
}

.v2-pos-panel.is-active {
  display: grid;
}

.v2-pos-panel__copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.v2-pos-panel__copy h3 {
  margin: 0;
  font: 600 32px/1.2 var(--v2-font);
  color: var(--v2-blue-500);
}

.v2-pos-panel__copy p {
  margin: 0;
  font: 400 16px/1.4 var(--v2-font);
  color: var(--v2-gray-600);
}

.v2-pos-panel__copy p + p {
  margin-top: 0;
}

.v2-pos-panel__media {
  min-width: 0;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
}

.v2-pos-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.v2-pos-advantage {
  background: var(--v2-blue-800);
  color: #fff;
}

.v2-pos-advantage__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  margin-bottom: 48px;
}

.v2-pos-advantage__head .v2-eyebrow,
.v2-pos-advantage__head .v2-h2 {
  margin: 0;
}

.v2-pos-advantage__head .v2-h2 {
  color: #fff;
  text-transform: capitalize;
}

.v2-pos-advantage__lead {
  margin: 0;
  max-width: 680px;
  font: 400 16px/1.4 var(--v2-font);
  color: var(--v2-blue-100);
}

.v2-cards--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.v2-pos-advantage .v2-card {
  min-height: 0;
}

/* Hardware product page */
.v2-hero--hardware {
  align-items: center;
}

.v2-hero--hardware .v2-hero__bg {
  /* Precomposed hero background (image + overlay) */
  background-image: url("/img/v2/shared/hero-bg.png?v=2");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.v2-hero--hardware .v2-hero__bg::after {
  display: none;
}

.v2-hero--hardware .v2-hero__inner {
  grid-template-columns: 1fr 570px;
  gap: 88px;
  align-items: start;
}

.v2-hero--hardware .v2-hero__intro,
.v2-hero--hardware .v2-hero__lead {
  max-width: none;
}

.v2-hero--hardware h1 span {
  color: var(--v2-blue-200);
}

.v2-hero__device--hardware {
  width: 500px;
  height: 500px;
  max-width: 100%;
  margin-left: auto;
}

.v2-hero__device--hardware img {
  width: 520px;
  max-width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
}

.v2-hw-eco__head,
.v2-hw-data__head,
.v2-hw-benefits__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  margin-bottom: 48px;
}

.v2-hw-eco__head .v2-eyebrow,
.v2-hw-eco__head .v2-h2,
.v2-hw-data__head .v2-eyebrow,
.v2-hw-data__head .v2-h2,
.v2-hw-benefits__head .v2-eyebrow,
.v2-hw-benefits__head .v2-h2 {
  margin: 0;
}

.v2-hw-eco__lead {
  margin: 0;
  max-width: 680px;
  font: 400 16px/1.4 var(--v2-font);
  color: var(--v2-gray-600);
}

.v2-hw-eco__top {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.v2-hw-eco__bottom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.v2-hw-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e4e4ed;
  border-radius: 20px;
  overflow: hidden;
  min-height: 458px;
}

.v2-hw-card__media {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  overflow: hidden;
}

.v2-hw-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.v2-hw-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  flex: 1;
}

.v2-hw-card__body h3 {
  margin: 0;
  font: 700 22px/normal var(--v2-font);
  color: #2c6c93;
}

.v2-hw-card__body p {
  margin: 0;
  font: 400 14px/1.5 var(--v2-font);
  color: #5f5f6e;
}

.v2-hw-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  font: 600 14px/normal var(--v2-font);
  color: #3397b5;
}

.v2-hw-card__link img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.v2-hw-card--wide {
  flex-direction: row;
  align-items: center;
  min-height: 267px;
}

.v2-hw-card--wide .v2-hw-card__media {
  width: 240px;
  height: 260px;
  flex-shrink: 0;
}

.v2-hw-card--wide .v2-hw-card__body {
  gap: 12px;
  padding: 32px;
}

.v2-hw-card--wide .v2-hw-card__link {
  margin-top: 8px;
}

.v2-hw-data {
  background: var(--v2-blue-800);
  color: #fff;
}

.v2-hw-data__head .v2-h2 {
  color: #fff;
  text-transform: capitalize;
}

.v2-hw-data__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.v2-hw-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.2);
}

.v2-hw-stat strong {
  font: 700 32px/1.2 var(--v2-font);
  color: var(--v2-blue-200);
}

.v2-hw-stat h3 {
  margin: 0;
  font: 600 18px/1.2 var(--v2-font);
  color: #fff;
}

.v2-hw-stat p {
  margin: 0;
  font: 400 14px/1.4 var(--v2-font);
  color: var(--v2-gray-200);
}

.v2-hw-benefits .v2-card {
  min-height: 0;
}

/* Kiosk product page */
.v2-hero--kiosk {
  align-items: center;
}

.v2-hero--kiosk .v2-hero__bg {
  /* Precomposed hero background (image + overlay) */
  background-image: url("/img/v2/shared/hero-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.v2-hero--kiosk .v2-hero__bg::after {
  display: none;
}

.v2-hero--kiosk .v2-hero__inner {
  grid-template-columns: minmax(0, 700px) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.v2-hero--kiosk .v2-hero__intro,
.v2-hero--kiosk .v2-hero__lead {
  max-width: none;
}

.v2-hero--kiosk h1 span {
  display: block;
  color: var(--v2-blue-200);
}

.v2-hero__device--kiosk {
  width: 480px;
  height: 560px;
  max-width: 100%;
  margin-left: auto;
}

.v2-hero__device--kiosk::before {
  display: none;
}

.v2-hero__device--kiosk img {
  width: 480px;
  height: 560px;
  max-width: 100%;
  object-fit: contain;
  border-radius: 24px;
}

.v2-kiosk-meet__lead {
  margin: 0;
  max-width: 680px;
  font: 400 16px/1.4 var(--v2-font);
  color: var(--v2-gray-600);
}

.v2-checklist--kiosk li::before {
  background-image: url("/img/v2/icons/check.svg");
}

.v2-checklist--kiosk-sm {
  gap: 8px;
}

.v2-checklist--kiosk-sm li {
  font-size: 12px;
  line-height: 1.4;
  color: var(--v2-gray-800);
}

.v2-kiosk-highlights .v2-card {
  min-height: 0;
}

.v2-kiosk-hw__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.v2-kiosk-hw-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--v2-gray-200);
  border-radius: 16px;
  overflow: hidden;
}

.v2-kiosk-hw-card__media {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.v2-kiosk-hw-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

.v2-kiosk-hw-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.v2-kiosk-hw-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  flex: 1;
}

.v2-kiosk-hw-card__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
}

.v2-kiosk-hw-card__body h3 {
  margin: 0;
  font: 600 18px/1.2 var(--v2-font);
  color: var(--v2-gray-800);
}

.v2-kiosk-hw-card__tag {
  flex-shrink: 0;
  padding: 4px 8px;
  border-radius: 2px;
  background: var(--v2-gray-200);
  font: 400 10px/1.2 var(--v2-font);
  color: var(--v2-gray-800);
  white-space: nowrap;
}

.v2-kiosk-hw-card__body > p {
  margin: 0;
  min-height: 60px;
  font: 400 14px/1.4 var(--v2-font);
  color: var(--v2-gray-500);
}

.v2-kiosk-hw-card__body .v2-checklist {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--v2-gray-200);
}

.v2-kiosk-data__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.v2-kiosk-why .v2-card {
  min-height: 0;
}

.v2-kiosk-hw,
.v2-kiosk-meet,
.v2-kiosk-highlights,
.v2-kiosk-data,
.v2-kiosk-why {
  scroll-margin-top: 88px;
}

.v2-kiosk-highlights .v2-pos-advantage__head .v2-h2,
.v2-kiosk-data .v2-hw-data__head .v2-h2,
.v2-kiosk-hw .v2-h2,
.v2-kiosk-why .v2-h2 {
  text-transform: capitalize;
}

/* Rear Display product page */
.v2-hero--rear {
  align-items: center;
}

.v2-hero--rear .v2-hero__bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.v2-hero--rear .v2-hero__bg::after {
  display: none;
}

.v2-hero--rear .v2-hero__inner {
  grid-template-columns: minmax(0, 700px) minmax(0, 430px);
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.v2-hero--rear .v2-hero__intro,
.v2-hero--rear .v2-hero__lead {
  max-width: none;
}

.v2-hero--rear .v2-hero__lead {
  color: var(--v2-gray-200);
}

.v2-hero__device--rear {
  width: 430px;
  height: 400px;
  max-width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.v2-hero__device--rear::before {
  display: none;
}

.v2-hero__device--rear img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.v2-rd-highlights__head,
.v2-rd-impact__head,
.v2-rd-numbers__head,
.v2-rd-view__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}

.v2-rd-highlights__head .v2-eyebrow,
.v2-rd-highlights__head .v2-h2,
.v2-rd-impact__head .v2-eyebrow,
.v2-rd-impact__head .v2-h2,
.v2-rd-numbers__head .v2-eyebrow,
.v2-rd-numbers__head .v2-h2,
.v2-rd-view__head .v2-eyebrow,
.v2-rd-view__head .v2-h2 {
  margin: 0;
}

.v2-rd-highlights__head .v2-h2,
.v2-rd-impact__head .v2-h2,
.v2-rd-numbers__head .v2-h2,
.v2-rd-view__head .v2-h2 {
  text-transform: capitalize;
}

.v2-rd-highlights__lead,
.v2-rd-impact__lead,
.v2-rd-view__lead {
  margin: 0;
  max-width: 680px;
  font: 400 16px/1.4 var(--v2-font);
  color: var(--v2-gray-600);
}

.v2-pos-tabs__nav--center {
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  border-bottom: none;
}

.v2-cards--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.v2-rd-impact .v2-card {
  min-height: 0;
}

.v2-rd-numbers {
  background: var(--v2-blue-800);
  color: #fff;
}

.v2-rd-numbers__head .v2-h2 {
  color: #fff;
}

.v2-rd-numbers__lead {
  margin: 0;
  max-width: 680px;
  font: 400 16px/1.4 var(--v2-font);
  color: var(--v2-blue-100);
}

.v2-rd-numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.v2-rd-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 0;
}

.v2-rd-stat__value {
  margin: 0;
  font: 700 32px/1.2 var(--v2-font);
  color: var(--v2-blue-200);
}

.v2-rd-stat h3 {
  margin: 0;
  font: 600 18px/1.2 var(--v2-font);
  color: #fff;
}

.v2-rd-stat > p:last-child {
  margin: 0;
  font: 400 14px/1.4 var(--v2-font);
  color: var(--v2-gray-200);
}

.v2-rd-view {
  overflow: hidden;
  padding-bottom: 80px;
}

.v2-rd-view__viewport {
  margin-bottom: 40px;
}

.v2-rd-view__track {
  padding: 0 max(24px, calc((100vw - 632px) / 2));
  gap: 24px;
}

.v2-rd-view-slide {
  flex: 0 0 min(632px, calc(100vw - 48px));
  scroll-snap-align: center;
  margin: 0;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
  opacity: 0.3;
  transition: opacity 0.25s ease;
}

.v2-rd-view-slide.is-active {
  opacity: 1;
}

.v2-rd-view-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.v2-rd-view__nav {
  margin-top: 0;
}

.v2-rd-view__btn {
  background: var(--v2-gray-100);
  border: 1px solid var(--v2-gray-200);
  color: var(--v2-blue-500);
  box-shadow: var(--v2-shadow-btn);
}

.v2-rd-view__btn img {
  filter: none;
}

.v2-rd-view__dots button {
  background: var(--v2-gray-200);
}

.v2-rd-view__dots button.is-active {
  background: var(--v2-blue-500);
}

.v2-rd-highlights,
.v2-rd-flow,
.v2-rd-impact,
.v2-rd-numbers,
.v2-rd-view {
  scroll-margin-top: 88px;
}

.v2-funding-advantage__head,
.v2-funding-flow__head,
.v2-funding-empower__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  margin-bottom: 48px;
}

.v2-funding-advantage__lead,
.v2-funding-flow__lead {
  margin: 0;
  max-width: 680px;
  font: 400 16px/1.4 var(--v2-font);
  color: var(--v2-gray-600);
}

.v2-funding-advantage .v2-eyebrow,
.v2-funding-advantage .v2-h2,
.v2-funding-flow .v2-eyebrow,
.v2-funding-flow .v2-h2,
.v2-funding-empower .v2-eyebrow,
.v2-funding-empower .v2-h2 {
  margin: 0;
}

.v2-funding-advantage .v2-card {
  min-height: 0;
}

.v2-funding-flow {
  background: #eef0f2;
}

.v2-steps {
  display: flex;
  gap: 8px;
  align-items: stretch;
  width: 100%;
}

.v2-step {
  flex: 0 0 200px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 24px;
  margin: 0;
  border: 1px solid var(--v2-gray-200);
  border-radius: 16px;
  background: #fff;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition: flex 0.3s ease, background 0.2s ease;
}

.v2-step.is-active {
  flex: 1 1 auto;
  align-items: stretch;
  min-width: 0;
}

.v2-step__top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.v2-step.is-active .v2-step__top {
  justify-content: space-between;
}

.v2-step__num {
  font: 600 56px/1.2 var(--v2-font);
  color: var(--v2-blue-100);
  text-transform: capitalize;
  font-variant-numeric: lining-nums proportional-nums;
}

.v2-step.is-active .v2-step__num {
  font-size: 32px;
  color: var(--v2-blue-300);
}

.v2-step__icon {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 80px;
  background: #eef0f2;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.v2-step.is-active .v2-step__icon {
  display: inline-flex;
}

.v2-step__body {
  display: none;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.v2-step.is-active .v2-step__body {
  display: flex;
}

.v2-step__body h3 {
  margin: 0;
  font: 600 18px/1.2 var(--v2-font);
  color: var(--v2-gray-800);
  text-transform: capitalize;
}

.v2-step__body p {
  margin: 0;
  font: 400 14px/1.2 var(--v2-font);
  color: var(--v2-gray-600);
}

.v2-funding-empower__card {
  display: grid;
  grid-template-columns: 522px 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px;
  background: #fff;
  border: 1px solid var(--v2-gray-200);
  border-radius: 16px;
  width: 100%;
}

.v2-funding-empower__media {
  position: relative;
  width: 522px;
  height: 467px;
  max-width: 100%;
  background: #d8e9f3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 2px rgba(35, 86, 118, 0.12), 0 2px 2px rgba(35, 86, 118, 0.18);
  flex-shrink: 0;
}

.v2-funding-empower__media img {
  position: absolute;
  left: 0;
  top: 19.75%;
  width: 100%;
  height: 77.84%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
}

.v2-funding-empower__copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.v2-funding-empower__copy h3 {
  margin: 0;
  font: 600 32px/1.2 var(--v2-font);
  color: var(--v2-blue-500);
}

.v2-funding-empower__copy p {
  margin: 0;
  font: 400 18px/1.4 var(--v2-font);
  color: var(--v2-gray-800);
}

/* Company — Pecan in Action */
.v2-action {
  background: var(--v2-blue-800);
  overflow: hidden;
  padding: 80px 0;
}

.v2-action__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}

.v2-action .v2-h2 {
  margin: 0;
}

.v2-action__lead {
  margin: 0;
  max-width: 680px;
  font: 400 16px/1.4 var(--v2-font);
  color: var(--v2-blue-100);
}

.v2-action-slide {
  flex: 0 0 min(632px, calc(100vw - 48px));
  scroll-snap-align: center;
  margin: 0;
  height: 376px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.v2-action-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.v2-dark-band {
  background: var(--v2-blue-800);
  color: #fff;
  padding: 80px 0;
}

.v2-dark-band .v2-eyebrow {
  color: var(--v2-blue-100);
}

.v2-dark-band .v2-eyebrow::before,
.v2-dark-band .v2-eyebrow::after {
  background: rgba(255, 255, 255, 0.3);
}

.v2-dark-band .v2-h2 {
  color: #fff;
}

.v2-dark-band .lead {
  text-align: center;
  max-width: 680px;
  margin: -24px auto 48px;
  color: var(--v2-blue-100);
  font: 400 16px/1.4 var(--v2-font);
}

.v2-type-detail {
  scroll-margin-top: 88px;
  padding: 64px 0;
  border-bottom: 1px solid var(--v2-gray-200);
}

.v2-type-detail:last-child {
  border-bottom: 0;
}

/* Restaurant types */
.v2-types .v2-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.v2-types__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  width: 100%;
}

.v2-types .v2-eyebrow,
.v2-types .v2-h2 {
  margin: 0;
}

.v2-types-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

.v2-types__body {
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.v2-type-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--v2-gray-200);
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.v2-type-card:hover {
  border-color: var(--v2-blue-200, #b4d6e9);
  box-shadow: var(--v2-shadow-menu);
}

.v2-type-card__media {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--v2-gray-100);
}

.v2-type-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.v2-type-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

.v2-type-card:hover .v2-type-card__media img {
  transform: scale(1.03);
}

.v2-type-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  flex: 1;
}

.v2-type-card__body h3 {
  margin: 0;
  font: 600 18px/1.2 var(--v2-font);
  color: var(--v2-gray-800);
}

.v2-type-card__body p {
  margin: 0;
  font: 400 14px/1.4 var(--v2-font);
  color: var(--v2-gray-500);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.v2-type-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font: 600 14px/1.2 var(--v2-font);
  color: var(--v2-blue-500);
}

.v2-types__all {
  display: flex;
  justify-content: center;
  margin-top: 0;
}

.v2-type-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--v2-gray-200);
  background: #fff;
  text-align: center;
  font: 500 14px/1.2 var(--v2-font);
  color: var(--v2-gray-800);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.v2-type-chip:hover {
  border-color: var(--v2-blue-500);
  box-shadow: var(--v2-shadow-menu);
}

/* Reviews */
.v2-reviews {
  background: var(--v2-blue-800);
  overflow: hidden;
  padding: 80px 0;
}

.v2-reviews .v2-container {
  text-align: center;
  margin-bottom: 48px;
}

.v2-reviews__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  width: 100%;
}

.v2-reviews .v2-h2 {
  margin: 0;
}

.v2-eyebrow--on-dark {
  color: var(--v2-blue-100);
  font-weight: 600;
  text-transform: uppercase;
  gap: 8px;
  margin-bottom: 0;
}

.v2-eyebrow--on-dark::before,
.v2-eyebrow--on-dark::after {
  background: var(--v2-blue-100);
}

.v2-eyebrow--on-dark::before,
.v2-eyebrow--on-dark::after {
  background: rgba(255, 255, 255, 0.3);
}

.v2-h2--white {
  color: #fff;
}

.v2-reviews-viewport {
  width: 100%;
  overflow: hidden;
}

.v2-reviews-track {
  display: flex;
  gap: 34px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0 max(24px, calc((100vw - 632px) / 2));
  -webkit-overflow-scrolling: touch;
}

.v2-reviews-track::-webkit-scrollbar {
  display: none;
}

.v2-review {
  flex: 0 0 min(632px, calc(100vw - 48px));
  scroll-snap-align: center;
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  min-height: 376px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 3px 8px rgba(25, 67, 91, 0.24);
}

.v2-review__head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.v2-review__avatar,
.v2-review__avatars img {
  width: 48px;
  height: 48px;
  border-radius: 100px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--v2-gray-800);
}

.v2-review__avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.v2-review__avatars img {
  margin-right: -10px;
}

.v2-review__avatars img:last-child {
  margin-right: 0;
}

.v2-review__head strong {
  display: block;
  font: 600 18px/1.2 var(--v2-font);
  color: var(--v2-gray-800);
}

.v2-review__head span {
  display: block;
  margin-top: 4px;
  font: 500 16px/1.2 var(--v2-font);
  color: var(--v2-blue-500);
}

.v2-review p {
  margin: 0;
  font: 400 16px/1.4 var(--v2-font);
  color: var(--v2-gray-800);
  flex: 1;
}

.v2-review__stars {
  display: flex;
  gap: 0;
}

.v2-review__stars img {
  width: 24px;
  height: 24px;
}

.v2-reviews__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  padding: 0 var(--v2-gutter);
}

.v2-reviews__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.v2-reviews__dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 80px;
  padding: 0;
  background: var(--v2-gray-200);
  cursor: pointer;
}

.v2-reviews__dots button.is-active {
  width: 24px;
  background: var(--v2-blue-500);
}

.v2-reviews__btn {
  width: 40px;
  height: 40px;
  border-radius: 80px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: var(--v2-shadow-btn);
}

.v2-reviews__btn img {
  width: 24px;
  height: 24px;
  display: block;
}

/* FAQ */
.v2-faq {
  background: var(--v2-gray-100);
}

.v2-faq .v2-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.v2-faq__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  width: 100%;
}

.v2-faq .v2-eyebrow,
.v2-faq .v2-h2 {
  margin: 0;
}

.v2-faq__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.v2-faq details {
  border: 0;
  border-bottom: 1px solid var(--v2-gray-200);
  border-radius: 0;
  padding: 8px 16px;
  margin: 0;
  background: transparent;
  min-height: 48px;
  box-shadow: none;
  transition:
    box-shadow 0.3s linear,
    background 0.3s linear,
    border-radius 0.3s linear,
    border-color 0.3s linear;
}

.v2-faq details.is-open {
  border-bottom-color: transparent;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 3px 8px rgba(25, 67, 91, 0.24);
}

.v2-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 32px;
  cursor: pointer;
  font: 400 16px/1.4 var(--v2-font);
  color: var(--v2-gray-800);
  list-style: none;
  transition: font-size 0.3s linear, font-weight 0.3s linear, min-height 0.3s linear, letter-spacing 0.3s linear;
}

.v2-faq summary::-webkit-details-marker {
  display: none;
}

.v2-faq details.is-open summary {
  margin-bottom: 0;
  min-height: 40px;
  font: 600 18px/1.5 var(--v2-font);
  letter-spacing: 0.02em;
  color: var(--v2-gray-800);
}

.v2-faq summary::after {
  content: "";
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  background: url("/img/v2/icons/plus.svg") center/contain no-repeat;
  transition: opacity 0.15s linear;
}

.v2-faq details.is-open summary::after {
  background-image: url("/img/v2/icons/minus.svg");
}

.v2-faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s linear;
}

.v2-faq details.is-open .v2-faq__panel {
  grid-template-rows: 1fr;
}

.v2-faq__panel-inner {
  overflow: hidden;
  min-height: 0;
  opacity: 0;
  transition: opacity 0.3s linear;
}

.v2-faq details.is-open .v2-faq__panel-inner {
  opacity: 1;
}

.v2-faq details p {
  margin: 0;
  padding: 16px 0;
  font: 400 16px/1.4 var(--v2-font);
  color: var(--v2-gray-800);
}

@media (prefers-reduced-motion: reduce) {
  .v2-faq details,
  .v2-faq summary,
  .v2-faq summary::after,
  .v2-faq__panel,
  .v2-faq__panel-inner {
    transition: none;
  }
}

/* Partners */
.v2-partners {
  text-align: center;
  padding: 16px 0;
  overflow: hidden;
  background: var(--v2-gray-100);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.v2-partners h2,
.v2-partners .v2-h2 {
  margin: 0;
  font: 600 32px/1.2 var(--v2-font);
  color: var(--v2-blue-700);
}

.v2-partners__marquee {
  height: 48px;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.v2-partners__track {
  display: flex;
  align-items: center;
  gap: 64px;
  height: 48px;
  width: max-content;
  animation: v2-partners-scroll 40s linear infinite;
}

.v2-partners__track span {
  flex-shrink: 0;
  font: 700 16px/24px var(--v2-font);
  letter-spacing: -0.4px;
  color: var(--v2-gray-400);
  white-space: nowrap;
}

@keyframes v2-partners-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .v2-partners__track {
    animation: none;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: var(--v2-max);
    margin: 0 auto;
    padding: 0 var(--v2-gutter);
    height: auto;
    gap: 24px 48px;
  }

  .v2-partners__marquee {
    height: auto;
    mask-image: none;
  }
}

/* Inner page hero */
.v2-page-hero {
  padding: 120px 0 64px;
  background: linear-gradient(180deg, var(--v2-blue-50) 0%, #fff 100%);
}

.v2-page-hero h1 {
  margin: 0 0 16px;
  font: 600 48px/1.2 var(--v2-font);
  color: var(--v2-gray-950);
  max-width: 800px;
}

.v2-page-hero p {
  margin: 0;
  max-width: 720px;
  font: 400 18px/1.4 var(--v2-font);
  color: var(--v2-gray-500);
}

.v2-page-body {
  padding: 48px 0 80px;
}

.v2-page-body .v2-section {
  padding: 48px 0;
}

.v2-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.v2-split img {
  width: 100%;
  border-radius: 16px;
  background: var(--v2-gray-100);
}

/* Demo request form */
.v2-form-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

/* Dedicated /get-demo page: fill between header and footer */
.v2-form-section--page {
  min-height: calc(100vh - var(--v2-header-h));
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.v2--get-demo .v2-form-section--page {
  padding-top: 80px;
  padding-bottom: 80px;
}

.v2-form-section__bg {
  position: absolute;
  inset: 0;
  background: url("/img/v2/shared/hero-bg.png?v=1") center/cover no-repeat;
  pointer-events: none;
}

/* Background asset already includes overlay — disable stacked gradient */
.v2-form-section__bg::after {
  display: none;
}

.v2-form-section .v2-container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.v2-form-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  background: #eef0f2;
  border-radius: 16px;
  padding: 48px;
  box-shadow: var(--v2-shadow-card);
}

.v2-form-card--success {
  grid-template-columns: 1fr;
  text-align: center;
}

.v2-form-card__intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.v2-form-card h2 {
  margin: 0;
  font: 600 32px/1.2 var(--v2-font);
  color: var(--v2-blue-500);
}

.v2-form-card .lead {
  margin: 0;
  font: 400 18px/1.4 var(--v2-font);
  color: var(--v2-gray-800);
}

.v2-form-checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.v2-form-checks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font: 400 18px/1.4 var(--v2-font);
  color: var(--v2-gray-800);
}

.v2-form-checks img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.v2-form-card__fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.v2-form-tabs {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  padding: 4px;
  margin: 0;
  border: 1px solid var(--v2-gray-200);
  border-radius: 8px;
  background: var(--v2-gray-200);
}

.v2-form-tab {
  flex: 1 1 0;
  display: flex;
  margin: 0;
  cursor: pointer;
}

.v2-form-tab input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.v2-form-tab span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  padding: 0 16px;
  border-radius: 4px;
  font: 500 14px/1.2 var(--v2-font);
  color: var(--v2-gray-600);
  text-align: center;
}

.v2-form-tab input:checked + span {
  background: #fff;
  color: var(--v2-blue-800);
  box-shadow: var(--v2-shadow-btn);
  border-radius: 4px;
}

.v2-form-card__fields form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

/* Field stack: tight between inputs, larger gap before consent/submit */
.v2-form-fields-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.v2-field {
  margin: 0;
  width: 100%;
}

.v2-field input,
.v2-field textarea {
  width: 100%;
  height: 40px;
  padding: 0 16px;
  border: 1px solid #ececed;
  border-radius: 8px;
  font: 400 16px/1.4 var(--v2-font);
  color: #385262;
  background: #fff;
}

.v2-field input::placeholder,
.v2-field textarea::placeholder {
  color: #385262;
  opacity: 1;
}

.v2-field textarea {
  height: 96px;
  padding: 8px 16px;
  resize: vertical;
}

.v2-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
}

.v2-form-consent {
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  background: var(--v2-gray-200);
}

.v2-form-consent__label {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin: 0;
  cursor: pointer;
  font: 400 12px/1.4 var(--v2-font);
  color: var(--v2-gray-800);
}

.v2-form-consent__label input {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin: 0;
  border: 2px solid var(--v2-gray-400);
  border-radius: 2px;
  background: #fff;
  cursor: pointer;
}

.v2-form-consent__label input:checked {
  background: var(--v2-blue-500);
  border-color: var(--v2-blue-500);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.v2-form-consent__label input:focus-visible {
  outline: 2px solid var(--v2-blue-500);
  outline-offset: 2px;
}

.v2-btn--form,
a.v2-btn--form {
  width: 100%;
  height: 48px;
  background: #2c6c93;
  color: #fff;
}

.v2-btn--form:hover,
a.v2-btn--form:hover {
  background: var(--v2-blue-700);
  color: #fff;
}

.v2-form .hide,
.v2 .hide {
  display: none !important;
}

.v2-form-success {
  display: none;
  position: relative;
  padding: 80px 0;
  min-height: calc(100vh - var(--v2-header-h));
  align-items: center;
  justify-content: center;
  background: url("/img/v2/shared/hero-bg.png?v=1") center/cover no-repeat;
}

.v2-form-success:not(.hide) {
  display: flex;
}

.v2-form-success .v2-container {
  width: 100%;
  position: relative;
  z-index: 1;
}

.v2-btn--secondary img {
  filter: brightness(0) invert(1);
}

/* Mobile */
@media (max-width: 992px) {
  .v2-header__nav,
  .v2-header__utility {
    display: none;
  }

  .v2-header__toggle {
    display: inline-flex;
  }

  .v2-hero__inner {
    grid-template-columns: 1fr;
  }

  .v2-hero__device {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    margin: 0 auto;
  }

  .v2-hero__brand {
    max-width: 420px;
    margin: 0 auto;
  }

  .v2-hero--company .v2-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    justify-items: center;
    text-align: center;
  }

  .v2-hero--company .v2-hero__copy,
  .v2-hero--company .v2-hero__intro,
  .v2-hero--company .v2-hero__ctas {
    align-items: center;
  }

  .v2-hero--company .v2-hero__ctas {
    justify-content: center;
    flex-wrap: wrap;
  }

  .v2-hero--company .v2-hero__brand,
  .v2-hero--company .v2-hero__brand img {
    width: 100%;
    height: auto;
    max-width: 420px;
  }

  .v2-hero--company .v2-hero__brand img {
    object-position: center;
  }

  .v2-hero--funding .v2-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .v2-hero--rear .v2-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .v2-hero__device--rear {
    width: 100%;
    height: auto;
    aspect-ratio: 430 / 400;
    margin: 0 auto;
  }

  .v2-cards--2,
  .v2-rd-numbers__grid {
    grid-template-columns: 1fr 1fr;
  }

  .v2-hero--pos .v2-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .v2-hero__device--pos {
    width: 100%;
    height: auto;
    aspect-ratio: 714 / 472;
    margin: 0 auto;
  }

  .v2-hero__device--pos img {
    width: 100%;
    height: 100%;
  }

  .v2-hero--kds .v2-hero__inner,
  .v2-hero--payroll .v2-hero__inner,
  .v2-hero--reporting .v2-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .v2-hero__device--reporting {
    width: 100%;
    height: auto;
    aspect-ratio: 536 / 500;
    margin: 0 auto;
  }

  .v2-reporting-types__media {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    margin: 0 auto;
  }

  .v2-hero__media--kds {
    width: 100%;
    height: auto;
    aspect-ratio: 520 / 480;
    margin: 0 auto;
  }

  .v2-hero__device--payroll {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    margin: 0 auto;
  }

  .v2-payroll-advantage__top,
  .v2-payroll-advantage__bottom {
    grid-template-columns: 1fr;
  }

  .v2-kds-view,
  .v2-kds-view.is-active {
    flex-basis: min(632px, calc(100vw - 48px));
    width: min(632px, calc(100vw - 48px));
    height: auto;
    aspect-ratio: 1;
    opacity: 1;
  }

  .v2-kds-360__track {
    min-height: 0;
    padding: 0 max(24px, calc((100vw - min(632px, calc(100vw - 48px))) / 2));
  }

  .v2-pos-stats {
    flex-direction: column;
    align-items: stretch;
  }

  .v2-pos-tabs__nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .v2-pos-panel.is-active {
    grid-template-columns: 1fr;
  }

  .v2-pos-panel__media {
    height: auto;
    aspect-ratio: 441 / 400;
  }

  .v2-pos-panel__copy h3 {
    font-size: 24px;
  }

  .v2-cards--4 {
    grid-template-columns: 1fr 1fr;
  }

  .v2-hero--integration .v2-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .v2-hero--orderout .v2-hero__brand--orderout,
  .v2-hero--online .v2-hero__brand--online,
  .v2-hero--ai .v2-hero__brand--ai,
  .v2-hero--qb .v2-hero__brand--qb,
  .v2-hero--como .v2-hero__brand--como {
    min-height: 240px;
  }

  .v2-hero--online .v2-hero__brand--online {
    height: auto;
  }

  .v2-hero--online .v2-hero__brand--online img {
    transform: none;
  }

  .v2-cards--3 {
    grid-template-columns: 1fr;
  }

  .v2-int-sync--flip .v2-int-sync__card {
    display: flex;
    flex-direction: column-reverse;
  }

  .v2-int-platforms__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v2-int-sync__card {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 24px;
  }

  .v2-int-sync__copy h3 {
    font-size: 24px;
  }

  .v2-hero--hardware .v2-hero__inner,
  .v2-hero--kiosk .v2-hero__inner,
  .v2-hero--gift .v2-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .v2-hero__device--gift {
    width: 100%;
    height: auto;
    aspect-ratio: 528 / 352;
    margin: 0 auto;
  }

  .v2-hero__device--gift img {
    width: 100%;
    height: 100%;
  }

  .v2-gift-cluster__grid {
    grid-template-columns: 1fr;
  }

  .v2-gift-cluster__item figcaption {
    font-size: 24px;
  }

  .v2-hero__device--hardware {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    margin: 0 auto;
  }

  .v2-hero__device--kiosk {
    width: 100%;
    height: auto;
    aspect-ratio: 480 / 560;
    margin: 0 auto;
  }

  .v2-hero__device--kiosk img {
    width: 100%;
    height: auto;
  }

  .v2-hw-eco__top,
  .v2-hw-eco__bottom,
  .v2-hw-data__grid,
  .v2-kiosk-hw__grid,
  .v2-kiosk-data__grid {
    grid-template-columns: 1fr;
  }

  .v2-hw-card,
  .v2-hw-card--wide {
    min-height: 0;
    flex-direction: column;
  }

  .v2-hw-card--wide .v2-hw-card__media {
    width: 100%;
    height: 240px;
  }

  .v2-hero__brand--partner {
    max-width: 420px;
    margin: 0 auto;
  }

  .v2-steps {
    flex-direction: column;
  }

  .v2-step,
  .v2-step.is-active {
    flex: 1 1 auto;
    width: 100%;
  }

  .v2-funding-empower__card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .v2-funding-empower__media {
    width: 100%;
    height: auto;
    aspect-ratio: 522 / 467;
  }

  .v2-action__lead {
    max-width: 100%;
  }

  .v2-hero__device::before {
    width: 140%;
    height: 140%;
    left: 50%;
  }

  .v2-hero__device img {
    width: 100%;
  }

  .v2-hero h1 {
    font-size: 36px;
  }

  .v2-hero {
    min-height: 0;
    padding: 48px 0;
  }

  .v2-products .v2-product-row,
  .v2-products .v2-product-row:nth-child(even) .v2-product-copy,
  .v2-split,
  .v2-form-card,
  .v2-mission-card,
  .v2-mission-card--flip .v2-mission-copy {
    grid-template-columns: 1fr;
  }

  .v2-form-card {
    gap: 40px;
    padding: 24px;
  }

  .v2-form-section {
    padding: 48px 0;
  }

  .v2-form-checks li {
    font-size: 16px;
  }

  .v2-mission-card--flip .v2-mission-copy {
    order: 0;
  }

  .v2-products .v2-product-row:nth-child(even) .v2-product-copy {
    order: 0;
  }

  .v2-stats__grid,
  .v2-cards,
  .v2-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .v2-types-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v2-type-card__media {
    height: 200px;
  }

  .v2-review {
    padding: 28px;
    min-height: 0;
  }

  .v2-h2,
  .v2-page-hero h1 {
    font-size: 28px;
  }
}

/* KDS product page */
.v2-hero--kds {
  align-items: center;
}

.v2-hero--kds .v2-hero__bg {
  /* Precomposed hero background (image + overlay) */
  background-image: url("/img/v2/shared/hero-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.v2-hero--kds .v2-hero__bg::after {
  display: none;
}

.v2-hero--kds .v2-hero__inner {
  grid-template-columns: minmax(0, 700px) minmax(0, 520px);
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.v2-hero--kds .v2-hero__intro,
.v2-hero--kds .v2-hero__lead {
  max-width: none;
}

.v2-hero--kds h1 span {
  color: var(--v2-blue-200);
}

.v2-hero__media--kds {
  width: 520px;
  max-width: 100%;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 8px 4px rgba(35, 86, 118, 0.15);
  flex-shrink: 0;
}

.v2-hero__media--kds img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.v2-kds-highlights__head,
.v2-kds-flow__head,
.v2-kds-360__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  margin-bottom: 48px;
}

.v2-kds-highlights__head .v2-eyebrow,
.v2-kds-highlights__head .v2-h2,
.v2-kds-flow__head .v2-eyebrow,
.v2-kds-flow__head .v2-h2,
.v2-kds-360__head .v2-eyebrow,
.v2-kds-360__head .v2-h2 {
  margin: 0;
}

.v2-kds-highlights__lead,
.v2-kds-flow__lead,
.v2-kds-360__lead {
  margin: 0;
  max-width: 680px;
  font: 400 16px/1.4 var(--v2-font);
  color: var(--v2-gray-600);
}

.v2-kds-highlights .v2-card {
  min-height: 0;
}

.v2-kds-flow {
  background: #eef0f2;
}

.v2-kds-360 {
  overflow: hidden;
  padding-bottom: 80px;
}

.v2-kds-360 .v2-container {
  margin-bottom: 0;
}

.v2-kds-360__viewport {
  width: 100%;
  overflow: hidden;
}

.v2-kds-360__track {
  display: flex;
  gap: 24px;
  align-items: center;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0 max(24px, calc((100vw - 632px) / 2));
  min-height: 632px;
  -webkit-overflow-scrolling: touch;
}

.v2-kds-360__track::-webkit-scrollbar {
  display: none;
}

.v2-kds-view {
  flex: 0 0 316px;
  width: 316px;
  height: 316px;
  margin: 0;
  scroll-snap-align: center;
  opacity: 0.3;
  transition: opacity 0.25s ease, flex-basis 0.25s ease, width 0.25s ease, height 0.25s ease;
}

.v2-kds-view.is-active {
  flex-basis: 632px;
  width: 632px;
  height: 632px;
  opacity: 1;
}

.v2-kds-view img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.v2-kds-360__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  padding: 0 var(--v2-gutter);
}

.v2-kds-360__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.v2-kds-360__dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 80px;
  padding: 0;
  background: var(--v2-gray-200);
  cursor: pointer;
}

.v2-kds-360__dots button.is-active {
  width: 24px;
  background: var(--v2-blue-500);
}

.v2-kds-360__btn {
  width: 40px;
  height: 40px;
  border-radius: 80px;
  border: 1px solid var(--v2-gray-200);
  background: var(--v2-gray-100);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: var(--v2-shadow-btn);
}

.v2-kds-360__btn img {
  width: 24px;
  height: 24px;
  display: block;
}

/* Payroll Essentials product page */
.v2-hero--payroll {
  align-items: center;
}

.v2-hero--payroll .v2-hero__bg {
  /* Precomposed hero background (image + overlay) */
  background-image: url("/img/v2/shared/hero-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.v2-hero--payroll .v2-hero__bg::after {
  display: none;
}

.v2-hero--payroll .v2-hero__inner {
  grid-template-columns: minmax(0, 1fr) minmax(0, 500px);
  gap: 60px;
  align-items: center;
  justify-content: space-between;
  min-height: 500px;
}

.v2-hero--payroll .v2-hero__intro,
.v2-hero--payroll .v2-hero__lead {
  max-width: none;
}

.v2-hero--payroll .v2-hero__lead {
  color: var(--v2-gray-200);
}

.v2-hero--payroll h1 {
  text-transform: capitalize;
}

.v2-hero--payroll h1 span {
  color: var(--v2-blue-200);
}

.v2-hero__device--payroll {
  width: 500px;
  height: 500px;
  max-width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 8px 4px rgba(35, 86, 118, 0.15);
  flex-shrink: 0;
}

.v2-hero__device--payroll::before {
  display: none;
}

.v2-hero__device--payroll img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.v2-payroll-advantage__head,
.v2-payroll-analytics__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  margin-bottom: 48px;
}

.v2-payroll-advantage__head .v2-eyebrow,
.v2-payroll-advantage__head .v2-h2,
.v2-payroll-analytics__head .v2-eyebrow,
.v2-payroll-analytics__head .v2-h2 {
  margin: 0;
}

.v2-payroll-advantage__lead,
.v2-payroll-analytics__lead {
  margin: 0;
  max-width: 680px;
  font: 400 16px/1.4 var(--v2-font);
  color: var(--v2-gray-600);
}

.v2-payroll-advantage .v2-card {
  min-height: 0;
}

.v2-payroll-advantage__top {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.v2-payroll-advantage__bottom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.v2-payroll-analytics {
  background: #eef0f2;
}

.v2-payroll-analytics .v2-pos-panel__media--contain img {
  object-fit: contain;
  background: transparent;
}

@media (max-width: 576px) {
  :root {
    --v2-gutter: 16px;
  }

  .v2-stats__grid,
  .v2-cards,
  .v2-cards--2,
  .v2-cards--4,
  .v2-rd-numbers__grid,
  .v2-footer__grid,
  .v2-field-row,
  .v2-types-grid,
  .v2-hw-data__grid,
  .v2-kiosk-data__grid,
  .v2-kiosk-hw__grid,
  .v2-int-platforms__grid {
    grid-template-columns: 1fr;
  }

  .v2-logo img {
    width: 152px;
    height: auto;
  }

  .v2-hero h1 {
    font-size: 28px;
  }

  .v2-form-card {
    padding: 24px;
    gap: 32px;
  }

  .v2-form-section {
    padding: 48px 0;
  }

  .v2-form-checks li {
    font-size: 16px;
  }
}

/* Flexible Payment Processing */
.v2-hero--payments {
  align-items: center;
}

.v2-hero--payments .v2-hero__bg {
  /* Precomposed hero background (image + overlay) */
  background-image: url("/img/v2/shared/hero-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.v2-hero--payments .v2-hero__bg::after {
  display: none;
}

.v2-hero--payments .v2-hero__inner {
  grid-template-columns: minmax(0, 700px) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.v2-hero--payments .v2-hero__intro,
.v2-hero--payments .v2-hero__lead {
  max-width: none;
}

.v2-hero--payments h1 span {
  color: var(--v2-blue-200);
}

.v2-hero__device--payments {
  position: relative;
  width: 100%;
  max-width: 742px;
  aspect-ratio: 742 / 596;
  height: auto;
  border-radius: 40px;
  overflow: hidden;
  margin-left: auto;
}

.v2-hero__device--payments::before {
  display: none;
}

.v2-hero__device--payments img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.v2-pay-advantage__head,
.v2-pay-platforms__head,
.v2-pay-terminals__head,
.v2-pay-flex__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  margin-bottom: 48px;
}

.v2-pay-platforms__head,
.v2-pay-terminals__head {
  gap: 12px;
}

.v2-pay-advantage__head .v2-eyebrow,
.v2-pay-advantage__head .v2-h2,
.v2-pay-flex__head .v2-eyebrow,
.v2-pay-flex__head .v2-h2 {
  margin: 0;
}

.v2-pay-advantage__lead {
  margin: 0;
  max-width: 680px;
  font: 400 16px/1.4 var(--v2-font);
  color: var(--v2-gray-600);
}

.v2-pay-advantage .v2-card {
  min-height: 0;
}

.v2-pay-advantage,
.v2-pay-platforms,
.v2-pay-terminals,
.v2-pay-flex {
  scroll-margin-top: 88px;
}

.v2-pay-label {
  margin: 0;
  font: 700 13px/normal var(--v2-font);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #3397b5;
}

.v2-pay-title {
  margin: 0;
  font: 700 36px/1.2 var(--v2-font);
  color: var(--v2-blue-600, #2c6c93);
  text-transform: none;
}

.v2-pay-platforms__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

.v2-pay-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  padding: 24px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}

.v2-pay-logo-card img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.v2-pay-terminals {
  background: #f4f6f8;
}

.v2-pay-terminals__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

.v2-pay-device-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  text-align: center;
}

.v2-pay-device-card__media {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.v2-pay-device-card__media--idtech {
  width: 200px;
}

.v2-pay-device-card__media--sunmi {
  width: 100px;
}

.v2-pay-device-card__media--pax {
  width: 162px;
}

.v2-pay-device-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.v2-pay-device-card h3 {
  margin: 0;
  font: 700 16px/normal var(--v2-font);
  color: #1e2229;
}

.v2-pay-device-card p {
  margin: 0;
  font: 400 13px/normal var(--v2-font);
  color: #626d7a;
}

.v2-pay-flex__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding: 40px;
  background: #fff;
  border: 1px solid var(--v2-gray-200);
  border-radius: 16px;
  width: 100%;
}

.v2-pay-flex__media {
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  min-width: 0;
  background: transparent;
}

.v2-pay-flex__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.v2-pay-flex__copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.v2-pay-flex__copy h3 {
  margin: 0;
  font: 600 32px/1.2 var(--v2-font);
  color: var(--v2-blue-500);
}

.v2-pay-flex__copy > p {
  margin: 0;
  font: 400 18px/1.4 var(--v2-font);
  color: var(--v2-gray-800);
}

.v2-pay-flex__methods {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.v2-pay-flex__methods-label {
  margin: 0;
  font: 600 18px/1.2 var(--v2-font);
  color: var(--v2-blue-500);
}

.v2-pay-flex__lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.v2-checklist--payments li::before {
  background-image: url("/img/v2/icons/check.svg");
}

.v2-pay-flex__logos {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.v2-pay-flex__logos-networks {
  width: 100%;
  max-width: 629px;
  height: auto;
  display: block;
}

.v2-pay-flex__logos-wallets {
  width: 204px;
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 992px) {
  .v2-hero--payments .v2-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .v2-hero__device--payments {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }

  .v2-pay-platforms__grid {
    grid-template-columns: 1fr;
  }

  .v2-pay-terminals__grid {
    grid-template-columns: 1fr 1fr;
  }

  .v2-pay-flex__card {
    grid-template-columns: 1fr;
  }

  .v2-pay-title {
    font-size: 28px;
  }
}

@media (max-width: 640px) {
  .v2-pay-terminals__grid {
    grid-template-columns: 1fr;
  }

  .v2-pay-flex__lists {
    grid-template-columns: 1fr;
  }

  .v2-pay-flex__card {
    padding: 24px;
  }

  .v2-pay-flex__copy h3 {
    font-size: 24px;
  }
}

/* Gift Cards product page */
.v2-hero--gift {
  align-items: center;
}

.v2-hero--gift .v2-hero__bg {
  /* Precomposed hero background (image + overlay) */
  background-image: url("/img/v2/shared/hero-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.v2-hero--gift .v2-hero__bg::after {
  display: none;
}

.v2-hero--gift .v2-hero__inner {
  grid-template-columns: minmax(0, 700px) minmax(0, 528px);
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.v2-hero--gift .v2-hero__intro,
.v2-hero--gift .v2-hero__lead {
  max-width: none;
}

.v2-hero--gift h1 span {
  color: var(--v2-blue-200);
}

.v2-hero__device--gift {
  width: 528px;
  height: 352px;
  max-width: 100%;
  margin-left: auto;
  overflow: hidden;
  border-radius: 45px;
}

.v2-hero__device--gift::before {
  display: none;
}

.v2-hero__device--gift img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

.v2-gift-impact {
  background: #fff;
}

.v2-gift-multi {
  background: #fff;
}

.v2-gift-multi__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}

.v2-gift-multi__head .v2-eyebrow,
.v2-gift-multi__head .v2-h2 {
  margin: 0;
}

.v2-gift-multi__row {
  display: flex;
  gap: 40px;
  align-items: center;
}

.v2-gift-multi__media {
  flex: 0 1 539px;
  min-width: 0;
}

.v2-gift-multi__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}

.v2-gift-multi__benefits {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.v2-gift-cluster {
  background: #fff;
}

.v2-gift-cluster__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}

.v2-gift-cluster__head .v2-eyebrow,
.v2-gift-cluster__head .v2-h2 {
  margin: 0;
}

.v2-gift-cluster__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.v2-gift-cluster__item {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  min-width: 0;
}

.v2-gift-cluster__item figcaption {
  margin: 0;
  font: 600 32px/1.2 var(--v2-font);
  color: var(--v2-blue-500);
  text-transform: capitalize;
  text-align: center;
  width: 100%;
}

.v2-gift-cluster__item img {
  width: 100%;
  height: auto;
  aspect-ratio: 432 / 285;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  box-shadow: 0 2px 2px rgba(35, 86, 118, 0.12), 0 2px 2px rgba(35, 86, 118, 0.18);
}

/* Pecan Reports App product page */
.v2-hero--reporting {
  align-items: center;
}

.v2-hero--reporting .v2-hero__bg {
  background-image: url("/img/v2/shared/hero-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.v2-hero--reporting .v2-hero__bg::after {
  display: none;
}

.v2-hero--reporting .v2-hero__inner {
  grid-template-columns: minmax(0, 700px) minmax(0, 536px);
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  min-height: 500px;
}

.v2-hero--reporting .v2-hero__intro,
.v2-hero--reporting .v2-hero__lead {
  max-width: none;
}

.v2-hero--reporting .v2-hero__lead {
  color: var(--v2-gray-200);
}

.v2-hero--reporting h1 {
  text-transform: capitalize;
}

.v2-hero--reporting h1 span {
  color: var(--v2-blue-200);
}

.v2-hero__device--reporting {
  width: 536px;
  height: 500px;
  max-width: 100%;
  flex-shrink: 0;
  box-shadow: 0 4px 8px 4px rgba(35, 86, 118, 0.15);
}

.v2-hero__device--reporting::before {
  display: none;
}

.v2-hero__device--reporting img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.v2-reporting-analytics {
  background: #eef0f2;
}

.v2-reporting-analytics__head,
.v2-reporting-types__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  margin-bottom: 48px;
}

.v2-reporting-analytics__head .v2-eyebrow,
.v2-reporting-analytics__head .v2-h2,
.v2-reporting-types__head .v2-eyebrow,
.v2-reporting-types__head .v2-h2 {
  margin: 0;
}

.v2-reporting-analytics__lead {
  margin: 0;
  max-width: 680px;
  font: 400 16px/1.4 var(--v2-font);
  color: var(--v2-gray-600);
}

.v2-reporting-analytics .v2-card {
  min-height: 0;
}

.v2-reporting-types .v2-pos-panel__media--contain img {
  object-fit: contain;
  background: transparent;
}

.v2-reporting-types__media {
  width: 441px;
  height: 441px;
  max-width: 100%;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--v2-gray-200);
  border-radius: 8px;
  background: #fff;
  padding: 10px;
  box-sizing: border-box;
}

.v2-reporting-types__media img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.v2-int-demo.v2-reporting-demo .v2-int-demo__video::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 16px;
  pointer-events: none;
  z-index: 1;
}

.v2-int-demo.v2-reporting-demo .v2-int-demo__play {
  z-index: 2;
}

/* Pecan Mobile product page */
.v2-hero--mobile {
  align-items: center;
}

.v2-hero--mobile .v2-hero__bg {
  /* Precomposed hero background (image + overlay) */
  background-image: url("/img/v2/shared/hero-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.v2-hero--mobile .v2-hero__bg::after {
  display: none;
}

.v2-hero--mobile .v2-hero__inner {
  grid-template-columns: minmax(0, 700px) minmax(0, 520px);
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.v2-hero--mobile .v2-hero__intro,
.v2-hero--mobile .v2-hero__lead {
  max-width: none;
}

.v2-hero--mobile .v2-hero__lead {
  color: var(--v2-gray-200);
}

.v2-hero--mobile h1 span {
  color: var(--v2-blue-200);
}

.v2-hero__media--mobile {
  width: 468px;
  max-width: 100%;
  height: 472px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 8px 4px rgba(35, 86, 118, 0.15);
  flex-shrink: 0;
  margin-left: auto;
}

.v2-hero__media--mobile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.v2-mobile-impact__head,
.v2-mobile-hw__head,
.v2-mobile-sunmi__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}

.v2-mobile-impact__head .v2-eyebrow,
.v2-mobile-impact__head .v2-h2,
.v2-mobile-hw__head .v2-eyebrow,
.v2-mobile-hw__head .v2-h2,
.v2-mobile-sunmi__head .v2-eyebrow,
.v2-mobile-sunmi__head .v2-h2 {
  margin: 0;
}

.v2-mobile-impact__lead,
.v2-mobile-sunmi__lead {
  margin: 0;
  max-width: 680px;
  font: 400 16px/1.4 var(--v2-font);
  color: var(--v2-gray-600);
}

.v2-mobile-impact .v2-card {
  min-height: 0;
}

.v2-mobile-hw-card__media {
  background: var(--v2-gray-100);
}

.v2-mobile-hw-card__media::after {
  display: none;
}

.v2-mobile-hw-card__media img {
  object-fit: contain;
  padding: 16px 0;
}

.v2-mobile-hw-card .v2-kiosk-hw-card__body > p {
  color: #5f5f6e;
}

.v2-mobile-numbers .v2-rd-stat h3 {
  font-size: 16px;
}

.v2-mobile-sunmi {
  background: #f4f6f8;
}

.v2-mobile-sunmi__row {
  display: flex;
  gap: 64px;
  align-items: center;
}

.v2-mobile-sunmi__media {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v2-mobile-sunmi__media img {
  width: 100%;
  max-width: 620px;
  height: auto;
  aspect-ratio: 620 / 440;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 4px 28.3px 0 rgba(35, 86, 118, 0.15);
  display: block;
}

.v2-mobile-p3air__media img {
  max-width: 568px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.v2-mobile-sunmi__benefits {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.v2-mobile-benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 12px;
  background: #1b3047;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.v2-mobile-benefit__icon {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: #ebf5f8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.v2-mobile-benefit__icon img {
  width: 24px;
  height: 24px;
  display: block;
}

.v2-mobile-benefit__copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  flex: 1;
}

.v2-mobile-benefit__copy h3 {
  margin: 0;
  font: 700 18px/normal var(--v2-font);
  color: #fff;
}

.v2-mobile-benefit__copy > p {
  margin: 0;
  font: 400 14px/1.5 var(--v2-font);
  color: #e1e6f0;
}

.v2-mobile-benefit__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0;
}

.v2-mobile-benefit__tags span {
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--v2-blue-300);
  background: rgba(35, 86, 118, 0.25);
  font: 600 11px/normal var(--v2-font);
  color: var(--v2-blue-300);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .v2-hero--mobile .v2-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .v2-hero__media--mobile {
    width: 100%;
    height: auto;
    aspect-ratio: 468 / 472;
    margin: 0 auto;
  }

  .v2-mobile-sunmi__row {
    flex-direction: column;
    gap: 40px;
  }

  .v2-gift-multi__row {
    flex-direction: column;
    gap: 40px;
  }

  .v2-gift-multi__media {
    flex: none;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .v2-gift-multi__benefits {
    gap: 24px;
  }
}

/* Keep last: product-page desktop grids must not override mobile stacking */
@media (max-width: 992px) {
  .v2-hero--gift .v2-hero__inner,
  .v2-hero--kds .v2-hero__inner,
  .v2-hero--payroll .v2-hero__inner,
  .v2-hero--reporting .v2-hero__inner,
  .v2-hero--payments .v2-hero__inner,
  .v2-hero--mobile .v2-hero__inner,
  .v2-hero--hardware .v2-hero__inner,
  .v2-hero--kiosk .v2-hero__inner,
  .v2-hero--rear .v2-hero__inner,
  .v2-hero--pos .v2-hero__inner,
  .v2-hero--funding .v2-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: 0;
  }

  .v2-hero__device--gift,
  .v2-hero__device--reporting,
  .v2-hero__device--payroll,
  .v2-hero__media--kds,
  .v2-hero__device--payments {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .v2-hero__device--gift {
    aspect-ratio: 528 / 352;
  }

  .v2-hero__device--gift img,
  .v2-hero__device--reporting img,
  .v2-hero__device--payroll img {
    width: 100%;
    height: 100%;
  }

  .v2-hero__device--reporting {
    aspect-ratio: 536 / 500;
  }

  .v2-hero__device--payroll {
    aspect-ratio: 1;
  }

  .v2-gift-cluster__grid {
    grid-template-columns: 1fr;
  }

  .v2-gift-cluster__item figcaption {
    font-size: 24px;
  }

  .v2-reporting-types__media,
  .v2-pos-panel__media {
    width: 100%;
    max-width: 100%;
  }

  .v2-pos-panel.is-active {
    grid-template-columns: 1fr;
  }

  .v2-pos-panel__copy {
    width: auto;
    max-width: 100%;
  }
}

/* Restaurant type pages */
.v2-hero--type {
  min-height: 800px;
  align-items: center;
  /* Figma Offer is py-80 with a 500px row, but the sticky header sits above
     the hero in the browser — slight top/bottom asymmetry keeps the media
     optically centered in the first screen (not sunk toward the fold). */
  padding-top: 40px;
  padding-bottom: 96px;
}

.v2-hero--type .v2-hero__bg::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(242.81deg, rgba(25, 67, 91, 0.8) 58.83%, rgba(9, 25, 34, 0.8) 100%);
}

.v2-hero--type .v2-hero__inner {
  /* --v2-max is already 1380 (1440 − gutters). Don't pad again or media
     shrinks to ~796px instead of Figma's 856px. */
  max-width: calc(var(--v2-max) + 2 * var(--v2-gutter));
  grid-template-columns: 500px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.v2-hero--type .v2-hero__intro {
  max-width: none;
}

.v2-hero--type .v2-hero__lead {
  max-width: none;
  color: var(--v2-gray-200);
}

.v2-hero--type h1 {
  text-transform: capitalize;
}

.v2-hero__media--type {
  position: relative;
  width: 100%;
  height: 500px;
  max-width: 100%;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}

.v2-hero__media--type img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.v2-type-quote {
  background: var(--v2-blue-800);
  padding: 40px 0;
  color: #fff;
}

.v2-type-quote__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
  max-width: var(--v2-max);
  margin: 0 auto;
  padding: 0 var(--v2-gutter);
}

.v2-type-quote__text {
  margin: 0;
  font: 500 24px/1.2 var(--v2-font);
  color: #fff;
  max-width: 1380px;
}

.v2-type-quote__meta {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.v2-type-quote__author {
  margin: 0;
  font: 500 18px/1.2 var(--v2-font);
  color: var(--v2-blue-100);
}

.v2-type-quote__stars {
  display: flex;
  align-items: center;
}

.v2-type-quote__stars img {
  width: 24px;
  height: 24px;
  display: block;
}

.v2-type-ops {
  background: var(--v2-gray-100);
}

.v2-type-ops .v2-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.v2-type-ops__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.v2-type-ops__head .v2-eyebrow,
.v2-type-ops__head .v2-h2 {
  margin: 0;
}

.v2-type-ops__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px;
  border: 1px solid var(--v2-gray-200);
  border-radius: 16px;
  background: #fff;
}

.v2-type-ops__card--flip .v2-type-ops__media {
  order: 2;
}

.v2-type-ops__card--flip .v2-type-ops__copy {
  order: 1;
}

.v2-type-ops__media {
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  background: var(--v2-gray-100);
  min-width: 0;
}

.v2-type-ops__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.v2-type-ops__copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.v2-type-ops__copy > p {
  margin: 0;
  font: 400 18px/1.4 var(--v2-font);
  color: var(--v2-gray-800);
}

.v2-type-ops__included {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.v2-type-ops__included-title {
  margin: 0;
  font: 600 18px/1.2 var(--v2-font);
  color: var(--v2-blue-500);
}

.v2-type-ops__checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.v2-type-ops__checklist li {
  display: flex;
  gap: 8px;
  align-items: center;
  font: 400 18px/1.4 var(--v2-font);
  color: var(--v2-gray-800);
}

.v2-type-ops__checklist li img {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

@media (max-width: 992px) {
  .v2-hero--type {
    min-height: 0;
    padding: 48px 0;
  }

  .v2-hero--type .v2-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .v2-hero__media--type {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .v2-type-quote__text {
    font-size: 18px;
  }

  .v2-type-ops__card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }

  .v2-type-ops__card--flip .v2-type-ops__media {
    order: 0;
  }

  .v2-type-ops__card--flip .v2-type-ops__copy {
    order: 0;
  }
}
