:root {
  --ink: #172033;
  --muted: #5d667a;
  --line: #dde3ec;
  --paper: #f7f8fb;
  --white: #ffffff;
  --navy: #24385f;
  --teal: #087f8c;
  --green: #2f9b70;
  --coral: #d65f4c;
  --gold: #d7a83f;
  --shadow: 0 18px 55px rgba(23, 32, 51, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(221, 227, 236, 0.8);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 190px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a,
.nav-item > a {
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.nav-item:hover > a,
.nav-item:focus-within > a {
  color: var(--ink);
  background: #eef3f7;
}

.nav-item {
  position: relative;
}

.nav-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 20;
  display: none;
  min-width: 230px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.nav-panel::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 14px;
  content: "";
}

.nav-item:hover .nav-panel,
.nav-item:focus-within .nav-panel {
  display: grid;
}

.nav-panel a {
  display: block;
  padding: 10px 12px;
  white-space: nowrap;
}

.mega-panel {
  left: 50%;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  width: min(620px, calc(100vw - 36px));
  transform: translateX(-50%);
}

.mega-panel strong {
  display: block;
  padding: 10px 12px 6px;
  color: var(--ink);
  font-size: 13px;
  text-transform: uppercase;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(48px, 8vw, 110px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(110deg, rgba(23, 32, 51, 0.88), rgba(8, 127, 140, 0.72)),
    url("https://images.unsplash.com/photo-1558002038-1055907df827?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: var(--white);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8ce2df;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  font-size: clamp(48px, 9vw, 112px);
}

h2 {
  font-size: clamp(30px, 4.6vw, 58px);
}

h3 {
  font-size: 24px;
}

p {
  margin: 0;
}

.lead {
  max-width: 660px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 24px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--coral);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
}

.hero-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-panel article {
  min-height: 190px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.hero-panel img {
  width: 100%;
  height: 128px;
  object-fit: contain;
  margin-bottom: 12px;
}

.hero-panel span {
  display: block;
  font-weight: 800;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  min-height: min(760px, calc(100vh - 76px));
  padding: clamp(56px, 8vw, 110px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(120deg, #111827 0%, #24385f 48%, #087f8c 100%);
}

.home-hero .eyebrow {
  color: #8ce2df;
}

.home-hero-copy {
  max-width: 780px;
}

.home-hero-copy h1 {
  font-size: clamp(54px, 8vw, 108px);
}

.home-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.home-category-card {
  display: grid;
  align-content: end;
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.14);
}

.home-category-card span {
  color: #8ce2df;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-category-card strong {
  margin-top: 18px;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.08;
}

.home-category-card p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.76);
}

.intro-section,
.services-section,
.contact-section,
.content-layout,
.cta-strip,
.tpv-band,
.home-product-section,
.home-services-band,
.home-workflow {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(44px, 6vw, 74px);
  padding-bottom: clamp(44px, 6vw, 74px);
  background: var(--white);
}

.intro-section h2 {
  max-width: 860px;
  font-size: clamp(34px, 4.8vw, 64px);
}

.intro-section > p,
.section-heading + p {
  color: var(--muted);
  font-size: 19px;
}

.intro-points {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.intro-points p {
  color: var(--muted);
  font-size: 18px;
}

.intro-points ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.intro-points li {
  position: relative;
  padding-left: 22px;
  color: #384154;
}

.intro-points li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 900;
  content: "✓";
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(230px, 1fr));
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.service-card {
  overflow: hidden;
  min-width: 230px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(23, 32, 51, 0.06);
}

.service-media {
  display: grid;
  place-items: center;
  min-height: 190px;
  padding: 22px;
  background: #edf4f4;
}

.service-media img {
  max-height: 150px;
  object-fit: contain;
}

.service-body {
  padding: 22px;
}

.service-body p {
  margin-top: 12px;
  color: var(--muted);
}

.service-body ul,
.rich-content ul,
.rich-content ol {
  padding-left: 20px;
}

.service-body li {
  margin-top: 8px;
}

.home-product-section {
  background: #eaf3f0;
}

.home-workflow {
  background: #eef3f8;
}

.product-strip {
  display: grid;
  gap: 18px;
}

.product-strip article {
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.product-strip img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
}

.product-strip h3 {
  max-width: 780px;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 46px);
}

.product-strip p:not(.eyebrow) {
  max-width: 820px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
}

.product-strip .button {
  margin-top: 22px;
}

.home-services-band {
  background: var(--white);
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.home-service-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f8fb;
}

.home-service-grid img {
  width: 100%;
  height: 180px;
  margin-bottom: 18px;
  object-fit: contain;
}

.home-service-grid h3 {
  color: var(--navy);
}

.home-service-grid p {
  margin-top: 12px;
  color: var(--muted);
}

.home-service-grid ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.home-service-grid li {
  margin-top: 8px;
  color: #384154;
}

.home-service-grid .button {
  margin-top: 22px;
}

.tpv-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  color: var(--white);
  background: var(--navy);
}

.tpv-band .eyebrow {
  color: var(--gold);
}

.tpv-band p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.quick-links a {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: start;
  background: var(--white);
}

.contact-info h2 {
  margin-bottom: 28px;
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-list a {
  display: block;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
}

.contact-list span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-list strong {
  display: block;
  margin-top: 4px;
  font-size: 20px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-form.is-sending {
  opacity: 0.78;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cbd4df;
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .full,
.contact-form .consent,
.contact-form button,
.form-status {
  grid-column: 1 / -1;
}

.consent {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  font-weight: 600 !important;
}

.consent input {
  width: auto;
  margin-top: 5px;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.form-status {
  padding: 12px 14px;
  border-radius: 6px;
  font-weight: 800;
}

.form-status.success {
  color: #135f3c;
  background: #dff4e9;
}

.form-status.error {
  color: #8d291c;
  background: #ffe5df;
}

.contact-success {
  display: grid;
  grid-column: 1 / -1;
  justify-items: center;
  min-height: 420px;
  align-content: center;
  gap: 14px;
  text-align: center;
}

.contact-success h3 {
  color: var(--navy);
  font-size: clamp(34px, 4vw, 52px);
}

.contact-success p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 19px;
}

.success-check {
  width: 92px;
  height: 92px;
}

.success-check svg {
  width: 100%;
  height: 100%;
}

.success-check circle {
  fill: #dff4e9;
  stroke: #1a8f5a;
  stroke-width: 2;
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  animation: draw-check-circle 0.55s ease forwards;
}

.success-check path {
  fill: none;
  stroke: #1a8f5a;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 32;
  stroke-dashoffset: 32;
  animation: draw-check-mark 0.38s ease 0.42s forwards;
}

@keyframes draw-check-circle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes draw-check-mark {
  to {
    stroke-dashoffset: 0;
  }
}

.page-hero {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(120deg, var(--navy), var(--teal));
}

.page-hero h1 {
  font-size: clamp(40px, 6vw, 76px);
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(120deg, #19243b, #087f8c);
}

.product-hero h1 {
  font-size: clamp(40px, 6vw, 76px);
}

.product-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
}

.hiopos-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(120deg, #111827 0%, #0f6670 58%, #087f8c 100%);
}

.hiopos-logo {
  width: 178px;
  margin-bottom: 28px;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--white);
}

.hiopos-copy h1 {
  font-size: clamp(42px, 6.5vw, 82px);
}

.hiopos-copy p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.hiopos-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hiopos-showcase img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.hiopos-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.hiopos-metrics div {
  padding: 26px clamp(18px, 5vw, 72px);
  color: var(--navy);
  background: var(--white);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 850;
}

.sector-section {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px);
  background: var(--white);
}

.sector-tabs {
  display: grid;
  gap: 18px;
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.tab-list button {
  min-height: 44px;
  padding: 10px 16px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.tab-list button.is-active {
  color: var(--white);
  background: var(--navy);
}

.tab-panel {
  display: none;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(23, 32, 51, 0.08);
}

.tab-panel.is-active {
  display: grid;
}

.tab-panel h3 {
  font-size: clamp(28px, 4vw, 48px);
}

.tab-panel p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
}

.tab-panel ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.tab-panel li {
  padding-left: 22px;
  color: #384154;
  position: relative;
}

.tab-panel li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 900;
  content: "✓";
}

.tab-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.tab-media {
  display: grid;
  gap: 16px;
}

.stack-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stack-list span {
  padding: 8px 10px;
  border: 1px solid #b9e3e2;
  border-radius: 999px;
  color: #0a6769;
  background: #effafa;
  font-size: 14px;
  font-weight: 850;
}

.tab-detail-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tab-detail-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.tab-detail-grid h4 {
  color: var(--navy);
  font-size: 20px;
}

.tab-detail-grid ul {
  margin-top: 16px;
}

.tab-detail-grid li {
  font-size: 15px;
  line-height: 1.55;
}

.cashdro-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(120deg, #111827 0%, #24385f 54%, #087f8c 100%);
}

.cashdro-logo {
  width: 194px;
  margin-bottom: 26px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--white);
}

.cashdro-copy h1 {
  font-size: clamp(42px, 6.4vw, 82px);
  line-height: 0.98;
}

.cashdro-copy p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
}

.cashdro-tags {
  margin-top: 26px;
}

.cashdro-device {
  display: grid;
  place-items: center;
  min-height: 430px;
  padding: clamp(20px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

.cashdro-device img {
  width: min(100%, 520px);
  max-height: 560px;
  object-fit: contain;
}

.cashdro-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.cashdro-metrics div {
  padding: 26px clamp(18px, 4vw, 54px);
  color: var(--navy);
  background: var(--white);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 850;
  line-height: 1.15;
}

.cashdro-advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.cashdro-advantage-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.cashdro-advantage-grid img {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  object-fit: contain;
}

.cashdro-advantage-grid h3,
.process-row h3,
.cashdro-feature-grid h3,
.model-grid h3,
.sector-card-grid h3 {
  color: var(--navy);
}

.cashdro-advantage-grid p,
.process-row p,
.model-grid p,
.sector-card-grid p {
  margin-top: 10px;
  color: var(--muted);
}

.cashdro-process,
.cashdro-models,
.cashdro-sectors {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px);
  background: var(--white);
}

.cashdro-feature-section {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px);
  background: var(--paper);
}

.process-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-row article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfc;
}

.process-row span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  font-weight: 900;
}

.cashdro-feature-grid {
  display: grid;
  gap: 18px;
}

.cashdro-feature-grid article {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.cashdro-feature-grid img {
  width: 100%;
  max-height: 250px;
  object-fit: contain;
}

.cashdro-feature-grid ul,
.model-grid ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.cashdro-feature-grid li,
.model-grid li {
  position: relative;
  padding-left: 22px;
  color: #384154;
}

.cashdro-feature-grid li::before,
.model-grid li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 900;
  content: "✓";
}

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

.model-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.model-grid img {
  width: 100%;
  height: 220px;
  margin-bottom: 18px;
  object-fit: contain;
}

.sector-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.sector-card-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.sector-card-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.sector-card-grid div {
  padding: 20px;
}

.security-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.95fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(120deg, #132035 0%, #1f5f72 56%, #0d8b84 100%);
}

.security-logo {
  width: min(230px, 56vw);
  max-height: 116px;
  margin-bottom: 26px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--white);
  object-fit: contain;
}

.security-logo-text {
  display: inline-flex;
  align-items: center;
  width: auto;
  min-height: 58px;
  color: #d71920;
  font-size: 22px;
  font-weight: 950;
  line-height: 1;
}

.security-copy h1 {
  font-size: clamp(42px, 6.2vw, 80px);
  line-height: 0.98;
}

.security-copy p:not(.eyebrow) {
  max-width: 780px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
}

.security-tags {
  margin-top: 26px;
}

.security-tags span {
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.security-device {
  display: grid;
  place-items: center;
  min-height: 430px;
  padding: clamp(20px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

.security-device img {
  width: min(100%, 560px);
  max-height: 540px;
  object-fit: contain;
}

.security-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.security-metrics div {
  padding: 26px clamp(18px, 4vw, 54px);
  color: var(--navy);
  background: var(--white);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 850;
  line-height: 1.15;
}

.security-advantage-grid,
.security-system-grid,
.security-app-grid {
  display: grid;
  gap: 16px;
}

.security-advantage-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.security-system-grid,
.security-app-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.security-advantage-grid article,
.security-system-grid article,
.security-app-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.security-advantage-grid h3,
.security-system-grid h3,
.security-app-grid h3 {
  color: var(--navy);
}

.security-advantage-grid p,
.security-system-grid p,
.security-app-grid p {
  margin-top: 10px;
  color: var(--muted);
}

.security-advantages-section {
  background: var(--paper);
}

.security-system-section {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.security-applications {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.security-process {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.publicity-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.95fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(120deg, #172033 0%, #45536f 46%, #087f8c 100%);
}

.publicity-logo {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  margin-bottom: 26px;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--navy);
  background: var(--white);
  font-size: 22px;
  font-weight: 950;
  line-height: 1;
}

.publicity-copy h1 {
  font-size: clamp(42px, 6.2vw, 80px);
  line-height: 0.98;
}

.publicity-copy p:not(.eyebrow) {
  max-width: 780px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
}

.publicity-tags {
  margin-top: 26px;
}

.publicity-tags span {
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.publicity-device {
  display: grid;
  place-items: center;
  min-height: 430px;
  padding: clamp(20px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

.publicity-device img {
  width: min(100%, 560px);
  max-height: 540px;
  object-fit: contain;
}

.publicity-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.publicity-metrics div {
  padding: 26px clamp(18px, 4vw, 54px);
  color: var(--navy);
  background: var(--white);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 850;
  line-height: 1.15;
}

.publicity-benefit-grid,
.publicity-block-grid,
.publicity-app-grid {
  display: grid;
  gap: 16px;
}

.publicity-benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.publicity-block-grid,
.publicity-app-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.publicity-benefit-grid article,
.publicity-block-grid article,
.publicity-app-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.publicity-benefit-grid h3,
.publicity-block-grid h3,
.publicity-app-grid h3 {
  color: var(--navy);
}

.publicity-benefit-grid p,
.publicity-block-grid p,
.publicity-app-grid p {
  margin-top: 10px;
  color: var(--muted);
}

.publicity-benefits-section {
  background: var(--paper);
}

.publicity-blocks-section {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.publicity-applications {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.publicity-process {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.factorypos-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.95fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(120deg, #172033 0%, #7f1d1d 52%, #d65f4c 100%);
}

.factorypos-logo {
  width: 220px;
  margin-bottom: 26px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--white);
}

.factorypos-copy h1 {
  font-size: clamp(42px, 6.2vw, 80px);
  line-height: 0.98;
}

.factorypos-copy p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
}

.factorypos-tags {
  margin-top: 26px;
}

.factorypos-tags span {
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.factorypos-device {
  display: grid;
  place-items: center;
  min-height: 430px;
  padding: clamp(20px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

.factorypos-device img {
  width: min(100%, 560px);
  max-height: 540px;
  object-fit: contain;
}

.factorypos-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.factorypos-metrics div {
  padding: 26px clamp(18px, 4vw, 54px);
  color: var(--navy);
  background: var(--white);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 850;
  line-height: 1.15;
}

.factorypos-advantage-grid,
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

.factorypos-advantage-grid article,
.ecosystem-grid article,
.cloud-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.factorypos-advantage-grid img,
.ecosystem-grid img {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  object-fit: contain;
}

.factorypos-advantage-grid h3,
.ecosystem-grid h3,
.factorypos-feature-grid h3,
.cloud-grid h3 {
  color: var(--navy);
}

.factorypos-advantage-grid p,
.ecosystem-grid p,
.cloud-grid p {
  margin-top: 10px;
  color: var(--muted);
}

.factorypos-ecosystem,
.factorypos-process,
.factorypos-cloud,
.factorypos-showcase {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px);
  background: var(--white);
}

.factorypos-feature-section,
.factorypos-versions {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px);
  background: var(--paper);
}

.factory-tabs {
  display: grid;
  gap: 18px;
}

.factory-tab-panel,
.factory-version-panel {
  display: none;
}

.factory-tab-panel.is-active,
.factory-version-panel.is-active {
  display: grid;
}

.factory-tab-panel {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(23, 32, 51, 0.08);
}

.factory-tab-panel h3,
.factory-version-intro h3 {
  color: var(--navy);
  font-size: clamp(28px, 4vw, 46px);
}

.factory-tab-panel p:not(.eyebrow),
.factory-version-intro p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
}

.factory-tab-panel img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
}

.factory-tab-panel ul,
.factory-version-grid ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.factory-tab-panel li,
.factory-version-grid li {
  position: relative;
  padding-left: 22px;
  color: #384154;
}

.factory-tab-panel li::before,
.factory-version-grid li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 900;
  content: "✓";
}

.factory-version-panel {
  gap: clamp(24px, 4vw, 40px);
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(23, 32, 51, 0.08);
}

.factory-version-intro {
  max-width: 980px;
}

.factory-version-intro p:not(.eyebrow) {
  max-width: 880px;
}

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

.factory-version-grid.count-4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.factory-version-grid article {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.version-card-head {
  min-height: 104px;
  padding: 22px 22px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.version-card-head span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.version-card-head h4 {
  margin-top: 8px;
  color: var(--navy);
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.12;
}

.factory-version-grid ul {
  align-content: start;
  margin: 0;
  padding: 20px 22px 24px;
}

.factory-version-grid li {
  font-size: 15px;
  line-height: 1.55;
}

.factorypos-feature-grid {
  display: grid;
  gap: 18px;
}

.factorypos-feature-grid article {
  display: grid;
  grid-template-columns: minmax(240px, 0.46fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.factorypos-feature-grid img {
  width: 100%;
  max-height: 270px;
  object-fit: contain;
}

.factorypos-feature-grid ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.factorypos-feature-grid li {
  position: relative;
  padding-left: 22px;
  color: #384154;
}

.factorypos-feature-grid li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 900;
  content: "✓";
}

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

.showcase-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.product-media {
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: clamp(20px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
}

.product-media img {
  max-height: 300px;
  object-fit: contain;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.stats-row div {
  padding: 28px clamp(18px, 5vw, 72px);
  border-right: 1px solid var(--line);
  color: var(--navy);
  font-size: clamp(20px, 2.5vw, 34px);
  font-weight: 850;
  line-height: 1.1;
}

.stats-row div:last-child {
  border-right: 0;
}

.product-section,
.related-section {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

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

.feature-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-grid p {
  margin-top: 12px;
  color: var(--muted);
}

.related-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  background: #eaf3f0;
}

.page-hero.compact {
  min-height: 55vh;
}

.page-hero p:not(.eyebrow) {
  max-width: 820px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
}

.page-hero .button {
  margin-top: 28px;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
}

.legal-hero {
  padding-top: clamp(44px, 6vw, 76px);
  padding-bottom: clamp(44px, 6vw, 76px);
  background: linear-gradient(120deg, #24385f, #384154);
}

.legal-hero h1 {
  max-width: 900px;
  font-size: clamp(36px, 5vw, 64px);
}

.legal-layout {
  display: block;
  max-width: 1040px;
  margin: 0 auto;
  padding-top: clamp(34px, 5vw, 64px);
  padding-bottom: clamp(42px, 6vw, 78px);
}

.legal-content {
  max-width: none;
}

.legal-document {
  display: grid;
  gap: 28px;
  padding: clamp(24px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.legal-document-intro {
  max-width: 820px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.legal-document-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.legal-document-section {
  display: grid;
  gap: 12px;
  max-width: 860px;
}

.legal-document-section h2 {
  color: var(--navy);
  font-size: clamp(24px, 3vw, 36px);
}

.legal-document-section p {
  color: #384154;
}

.legal-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.legal-link-list a {
  display: inline-flex;
  padding: 9px 12px;
  border: 1px solid #b9e3e2;
  border-radius: 999px;
  color: #0a6769;
  background: #effafa;
  font-weight: 800;
  text-decoration: none;
}

.image-rail {
  position: sticky;
  top: 102px;
  display: grid;
  gap: 12px;
}

.image-rail img {
  width: 100%;
  max-height: 230px;
  object-fit: contain;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.rich-content {
  max-width: 940px;
  padding: clamp(22px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.rich-content > * + * {
  margin-top: 1rem;
}

.rich-content h1,
.rich-content h2,
.rich-content h3,
.rich-content h4 {
  margin-top: 2rem;
  color: var(--ink);
}

.rich-content h1 {
  font-size: clamp(34px, 5vw, 56px);
}

.rich-content h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.rich-content h3 {
  font-size: 23px;
}

.rich-content p,
.rich-content li {
  color: #384154;
  overflow-wrap: anywhere;
}

.rich-content img {
  max-height: 360px;
  object-fit: contain;
  margin: 20px auto;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: #eaf3f0;
}

.cta-strip h2 {
  font-size: clamp(26px, 3vw, 42px);
}

.cta-strip p {
  margin-top: 8px;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #111827;
}

.site-footer strong {
  color: var(--white);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: flex-end;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero,
  .home-hero,
  .hiopos-hero,
  .cashdro-hero,
  .factorypos-hero,
  .security-hero,
  .publicity-hero,
  .product-hero,
  .intro-section,
  .tpv-band,
  .contact-section,
  .content-layout,
  .related-section,
  .product-strip article,
  .cashdro-feature-grid article,
  .factorypos-feature-grid article,
  .security-system-grid article,
  .publicity-block-grid article,
  .factory-tab-panel,
  .tab-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .image-rail {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid,
  .home-category-grid,
  .home-service-grid,
  .hiopos-showcase,
  .cashdro-advantage-grid,
  .cashdro-metrics,
  .factorypos-advantage-grid,
  .factorypos-metrics,
  .security-metrics,
  .security-advantage-grid,
  .security-system-grid,
  .security-app-grid,
  .publicity-metrics,
  .publicity-benefit-grid,
  .publicity-block-grid,
  .publicity-app-grid,
  .ecosystem-grid,
  .cloud-grid,
  .factory-version-grid,
  .factory-version-grid.count-4,
  .process-row,
  .model-grid,
  .sector-card-grid,
  .showcase-grid,
  .tab-detail-grid,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .hiopos-metrics {
    grid-template-columns: 1fr;
  }

  .tab-panel {
    gap: 24px;
  }

  .cashdro-device {
    min-height: 300px;
  }

  .factorypos-device {
    min-height: 300px;
  }

  .security-device {
    min-height: 300px;
  }

  .publicity-device {
    min-height: 300px;
  }

  .stats-row div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-item {
    position: static;
  }

  .nav-item > a {
    display: block;
  }

  .nav-panel,
  .mega-panel {
    position: static;
    display: grid;
    width: 100%;
    min-width: 0;
    padding: 6px 0 8px 14px;
    border: 0;
    box-shadow: none;
    transform: none;
  }

  .mega-panel {
    grid-template-columns: 1fr;
  }

  .nav-panel::before {
    display: none;
  }

  .hero-panel,
  .quick-links,
  .contact-form,
  .image-rail {
    grid-template-columns: 1fr;
  }

  .site-footer,
  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}
