/* SwyftPay × Square Authorized Reseller — Square-inspired marketing site */
:root {
  --black: #000000;
  --ink: #1a1a1a;
  --ink-soft: #3d3d3d;
  --muted: #6e6e6e;
  --line: #e5e5e5;
  --line-soft: #f0f0f0;
  --bg: #ffffff;
  --bg-soft: #f7f7f7;
  --bg-warm: #f5f3ef;
  --blue: #006aff;
  --blue-hover: #0056d6;
  --blue-soft: #e8f1ff;
  --green: #00c853;
  --swyft-orange: #e8792b;
  --swyft-orange-hover: #d06820;
  --radius: 12px;
  --radius-pill: 999px;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
  --font-sans: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-serif: "Source Serif 4", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --max: 1200px;
  --header-h: 64px;
  --banner-h: 44px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.container-wide {
  width: min(100% - 2.5rem, 1360px);
  margin-inline: auto;
}

/* Top reseller banner */
.reseller-banner {
  position: sticky;
  top: 0;
  z-index: 1001;
  background: var(--black);
  color: #fff;
  min-height: var(--banner-h);
  display: flex;
  align-items: center;
}

.reseller-banner .inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  flex-wrap: wrap;
}

.reseller-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.reseller-brand img {
  height: 28px;
  width: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 4px;
  padding: 2px 6px;
}

.reseller-copy {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  min-width: 0;
}

.reseller-copy strong {
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.reseller-copy span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.78);
}

.authorized-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.8rem;
  font-size: 0.78rem;
  white-space: nowrap;
}

.authorized-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.2);
}

.banner-contact {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.82rem;
  flex-wrap: wrap;
}

.banner-contact a {
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.15s ease;
}

.banner-contact a:hover {
  color: #fff;
}

.banner-contact .sep {
  opacity: 0.35;
}

/* Main header */
.site-header {
  position: sticky;
  top: var(--banner-h);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}

.nav-bar {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-right: 0.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-mark .sq {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: var(--black);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 800;
}

.logo-mark .word {
  font-size: 1.05rem;
}

.nav-link {
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-link:hover,
.nav-link[aria-expanded="true"] {
  background: var(--bg-soft);
}

.nav-link .chev {
  width: 12px;
  height: 12px;
  opacity: 0.55;
  transition: transform 0.15s ease;
}

.nav-link[aria-expanded="true"] .chev {
  transform: rotate(180deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
  text-align: center;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

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

.btn-primary:hover {
  background: var(--blue-hover);
}

.btn-dark {
  background: var(--black);
  color: #fff;
}

.btn-dark:hover {
  background: #222;
}

.btn-light {
  background: #fff;
  color: var(--ink);
}

.btn-light:hover {
  background: #f2f2f2;
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--bg-soft);
}

.btn-sm {
  padding: 0.5rem 0.95rem;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 0.95rem 1.5rem;
  font-size: 1rem;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  margin: 4px auto;
  transition: 0.2s ease;
}

/* Mega menus */
.mega {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--banner-h) + var(--header-h));
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: none;
  padding: 1.5rem 0 1.75rem;
}

.mega.open {
  display: block;
}

.mega-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1fr;
  gap: 2rem;
}

.mega h4 {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 600;
}

.mega-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.2rem;
}

.mega-list a {
  display: block;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  font-size: 0.95rem;
}

.mega-list a:hover {
  background: var(--bg-soft);
}

.mega-card {
  background: var(--bg-soft);
  border-radius: 16px;
  padding: 1.25rem;
  display: grid;
  gap: 0.65rem;
}

.mega-card strong {
  font-size: 1rem;
}

.mega-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(78vh, 760px);
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.45)),
    url("https://images.unsplash.com/photo-1441986300917-64674bd600d8?auto=format&fit=crop&w=2000&q=80")
      center/cover no-repeat;
}

.hero-content {
  text-align: center;
  padding: 5rem 1.25rem 4rem;
  max-width: 920px;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 450;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-actions {
  margin-top: 1.75rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 1.25rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-tight {
  padding: 3.5rem 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-warm {
  background: var(--bg-warm);
}

.section-dark {
  background: var(--black);
  color: #fff;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.section-dark .eyebrow {
  color: rgba(255, 255, 255, 0.65);
}

.section-title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 450;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.section-lead {
  margin: 1rem 0 0;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-dark .section-lead {
  color: rgba(255, 255, 255, 0.75);
}

.center {
  text-align: center;
}

.center .section-lead {
  margin-inline: auto;
}

/* Business types strip */
.biz-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.biz-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.biz-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.biz-card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.biz-card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.biz-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-size: 1.15rem;
}

/* Hardware showcase */
.hardware-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  margin-top: 2.5rem;
}

.hardware-copy h2 {
  margin: 0.4rem 0 0;
}

.hardware-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 34rem;
}

.hardware-visual {
  background: linear-gradient(160deg, #f3f3f3, #e9eef7 55%, #f8f8f8);
  border-radius: 28px;
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 2rem;
  overflow: hidden;
  position: relative;
}

.hardware-visual img {
  width: min(100%, 420px);
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.18));
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
}

.device-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
}

.device-card img {
  height: 110px;
  width: auto;
  margin: 0 auto 0.85rem;
  object-fit: contain;
}

.device-card h3 {
  margin: 0;
  font-size: 0.98rem;
}

.device-card p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

/* Feature blocks */
.feature-rows {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.feature-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}

.feature-row.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.feature-row.reverse .feature-copy {
  order: 2;
}

.feature-row.reverse .feature-media {
  order: 1;
}

.feature-copy {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-copy h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 450;
  line-height: 1.15;
}

.feature-copy p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.feature-list {
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.feature-list li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.feature-list li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 700;
  margin-top: 0.05rem;
}

.feature-media {
  min-height: 280px;
  background:
    radial-gradient(circle at 30% 20%, rgba(0, 106, 255, 0.14), transparent 45%),
    linear-gradient(145deg, #f6f6f6, #e9edf5);
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.feature-media .panel {
  width: min(100%, 360px);
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 1.25rem;
}

.panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.panel-amount {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.panel-bars {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.4rem;
  align-items: end;
  height: 90px;
  margin-top: 1rem;
}

.panel-bars span {
  display: block;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--blue), #7db3ff);
}

/* Industry stats */
.stats-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
  align-items: stretch;
}

.stat-card {
  background: #111;
  color: #fff;
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

.stat-number {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-label {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 18rem;
}

.industry-chips {
  display: grid;
  gap: 0.75rem;
}

.chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.chip strong {
  display: block;
  font-size: 1rem;
}

.chip span {
  color: var(--muted);
  font-size: 0.88rem;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
}

.price-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), var(--shadow);
}

.price-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--blue);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.6rem;
}

.price-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.price-card .desc {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  min-height: 2.8rem;
}

.price {
  margin: 1.25rem 0;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price .amount {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.price .period {
  color: var(--muted);
}

.price-features {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  flex: 1;
}

.price-features li {
  font-size: 0.94rem;
  color: var(--ink-soft);
  display: flex;
  gap: 0.5rem;
}

.price-features li::before {
  content: "•";
  color: var(--blue);
  font-weight: 700;
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: 4.5rem 1.25rem;
}

.cta-band h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 450;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.cta-band p {
  margin: 0.9rem auto 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.78);
}

.cta-actions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Why reseller */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.35rem;
}

.why-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.why-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Page heroes (inner pages) */
.page-hero {
  padding: 4rem 0 2.5rem;
  background: linear-gradient(180deg, #f7f8fa, #fff 70%);
  border-bottom: 1px solid var(--line-soft);
}

.page-hero h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 450;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 16ch;
}

.page-hero p {
  margin: 1rem 0 0;
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.08rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-card,
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.5rem;
}

.contact-card h2,
.form-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.contact-list li {
  display: grid;
  gap: 0.2rem;
}

.contact-list .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  font-weight: 600;
}

.contact-list a {
  color: var(--blue);
  font-weight: 600;
}

.form-grid {
  display: grid;
  gap: 0.9rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 106, 255, 0.15);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-success {
  display: none;
  background: #eafaf0;
  border: 1px solid #b7ebc9;
  color: #146c2e;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
}

.form-success.show {
  display: block;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.about-panel {
  background: var(--bg-soft);
  border-radius: 22px;
  padding: 1.5rem;
}

.about-panel h3 {
  margin: 0 0 0.75rem;
}

.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.value-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.1rem;
  background: #fff;
}

.value-card h4 {
  margin: 0 0 0.4rem;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Footer */
.site-footer {
  background: #0b0b0b;
  color: rgba(255, 255, 255, 0.88);
  padding: 3.5rem 0 1.5rem;
}

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

.footer-brand p {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  max-width: 24rem;
}

.footer-brand img {
  height: 34px;
  width: auto;
  background: #fff;
  border-radius: 6px;
  padding: 3px 8px;
}

.footer-col h4 {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: #fff;
}

.footer-contact li {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  line-height: 1.45;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-legal {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-legal a:hover {
  color: #fff;
}

.disclaimer {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.42);
  max-width: 70rem;
  line-height: 1.5;
}

/* Chat widget */
.chat-launcher {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1200;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: var(--swyft-orange);
  color: #fff;
  box-shadow: 0 10px 30px rgba(232, 121, 43, 0.4);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.15s ease, background 0.15s ease;
}

.chat-launcher:hover {
  background: var(--swyft-orange-hover);
  transform: scale(1.05);
}

.chat-launcher .pulse {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid #fff;
}

.chat-panel {
  position: fixed;
  right: 1.25rem;
  bottom: 5.5rem;
  z-index: 1200;
  width: min(360px, calc(100vw - 1.5rem));
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  display: none;
  flex-direction: column;
  max-height: min(560px, calc(100vh - 8rem));
}

.chat-panel.open {
  display: flex;
}

.chat-header {
  background: var(--black);
  color: #fff;
  padding: 0.95rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.chat-header strong {
  display: block;
  font-size: 0.95rem;
}

.chat-header span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
}

.chat-close {
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
}

.chat-body {
  padding: 1rem;
  display: grid;
  gap: 0.75rem;
  overflow: auto;
  background: #fafafa;
  flex: 1;
}

.chat-bubble {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.8rem 0.9rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.chat-actions {
  display: grid;
  gap: 0.5rem;
}

.chat-actions a,
.chat-actions button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  text-align: left;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--ink);
}

.chat-actions a:hover,
.chat-actions button:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
}

.chat-footer {
  padding: 0.85rem 1rem 1rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.5rem;
}

.chat-footer input {
  border-radius: 999px;
}

/* Mobile nav */
.mobile-drawer {
  display: none;
  position: fixed;
  inset: calc(var(--banner-h) + var(--header-h)) 0 0 0;
  background: #fff;
  z-index: 999;
  overflow: auto;
  padding: 1rem 1.25rem 2rem;
  border-top: 1px solid var(--line);
}

.mobile-drawer.open {
  display: block;
}

.mobile-drawer a,
.mobile-drawer button {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 0.9rem 0.25rem;
  border-bottom: 1px solid var(--line-soft);
  font-size: 1rem;
  color: var(--ink);
  cursor: pointer;
}

.mobile-actions {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
}

/* Utility */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Responsive */
@media (max-width: 980px) {
  .biz-strip,
  .pricing-grid,
  .why-grid,
  .device-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hardware-grid,
  .feature-row,
  .feature-row.reverse,
  .stats-grid,
  .contact-grid,
  .about-grid,
  .footer-grid,
  .mega-grid {
    grid-template-columns: 1fr;
  }

  .feature-row.reverse .feature-copy,
  .feature-row.reverse .feature-media {
    order: initial;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-left .nav-link,
  .nav-right .nav-link.support-link {
    display: none;
  }

  .logo-mark .word {
    font-size: 0.98rem;
  }
}

@media (max-width: 640px) {
  :root {
    --banner-h: auto;
  }

  .reseller-banner {
    position: relative;
  }

  .site-header {
    top: 0;
  }

  .biz-strip,
  .pricing-grid,
  .why-grid,
  .device-grid,
  .values,
  .form-row {
    grid-template-columns: 1fr;
  }

  .banner-contact .hide-sm {
    display: none;
  }

  .hero {
    min-height: 70vh;
  }

  .section {
    padding: 3.5rem 0;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* ===== Media-rich Square assets ===== */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.28), rgba(0,0,0,.42));
}

.media-marquee {
  overflow: hidden;
  margin-top: 2.5rem;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.media-track {
  display: flex;
  gap: 0.85rem;
  width: max-content;
  animation: marquee 48s linear infinite;
}

.media-track:hover {
  animation-play-state: paused;
}

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

.media-pill {
  position: relative;
  width: 180px;
  height: 240px;
  border-radius: 18px;
  overflow: hidden;
  flex: 0 0 auto;
  background: #111;
}

.media-pill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.media-pill:hover img {
  transform: scale(1.08);
}

.hover-video-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #0d0d0d;
  color: #fff;
  min-height: 280px;
  isolation: isolate;
}

.hover-video-card video,
.hover-video-card img.fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  transition: transform .5s ease, opacity .3s ease;
}

.hover-video-card:hover video,
.hover-video-card.is-playing video {
  transform: scale(1.04);
}

.hover-video-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.62));
  z-index: 0;
}

.hover-video-card .card-body {
  position: relative;
  z-index: 1;
  padding: 1.25rem;
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hover-video-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.hover-video-card p {
  margin: .35rem 0 0;
  color: rgba(255,255,255,.82);
  font-size: .92rem;
}

.video-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: .5rem;
  scroll-snap-type: x mandatory;
  margin-top: 1.75rem;
}

.video-rail > * {
  scroll-snap-align: start;
}

.biz-photo-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 220px;
  color: #fff;
  display: block;
  border: 0;
}

.biz-photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.biz-photo-card:hover img {
  transform: scale(1.07);
}

.biz-photo-card .shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.72));
}

.biz-photo-card .copy {
  position: relative;
  z-index: 1;
  padding: 1.15rem;
  height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.biz-photo-card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.biz-photo-card p {
  margin: .3rem 0 0;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
}

.feature-media video {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.feature-media {
  padding: 0 !important;
  overflow: hidden;
}

.feature-media .panel {
  margin: 1.25rem;
  width: calc(100% - 2.5rem);
}

.inline-video-frame {
  border-radius: 24px;
  overflow: hidden;
  background: #111;
  min-height: 360px;
  position: relative;
}

.inline-video-frame video {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.device-card {
  transition: transform .2s ease, box-shadow .2s ease;
}

.device-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.device-card img {
  transition: transform .35s ease;
}

.device-card:hover img {
  transform: scale(1.06);
}

.stat-card {
  position: relative;
  overflow: hidden;
}

.stat-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .45;
}

.stat-card > * {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .media-track { animation: none; }
  .hover-video-card video,
  .biz-photo-card img,
  .device-card img { transition: none; }
}
