:root {
  --ink: #071c2c;
  --ink-soft: #12344c;
  --green: #2aa934;
  --green-dark: #197724;
  --blue: #167bb5;
  --cyan: #16a6b6;
  --paper: #f5f8f7;
  --white: #ffffff;
  --line: #d8e2df;
  --muted: #587080;
  --yellow: #f4c34f;
  --container: 1180px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: 4px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 76px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: fit-content;
}

.brand img {
  width: 176px;
  height: 46px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a,
.site-footer nav a {
  border-bottom: 2px solid transparent;
  padding-block: 8px;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  border-bottom-color: var(--green);
  color: var(--green-dark);
}

.header-actions,
.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--green);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-dark);
}

.button-quiet {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.button-quiet:hover,
.button-quiet:focus-visible {
  border-color: var(--green);
  color: var(--green-dark);
}

.button-accent {
  background: var(--yellow);
  color: #14202a;
}

.button-accent:hover,
.button-accent:focus-visible {
  background: #ffd36b;
}

.button-inverse {
  border-color: rgba(255, 255, 255, 0.62);
  background: transparent;
  color: var(--white);
}

.button-inverse:hover,
.button-inverse:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  width: 44px;
  height: 44px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  list-style: none;
  cursor: pointer;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  display: block;
  height: 2px;
  background: var(--ink);
}

.mobile-menu nav {
  position: absolute;
  top: 52px;
  right: 0;
  width: 240px;
  display: grid;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 18px 48px rgba(7, 28, 44, 0.16);
}

.mobile-menu nav a {
  padding: 12px;
  border-bottom: 1px solid #edf1f0;
  font-weight: 700;
}

.mobile-menu nav a:last-child {
  border-bottom: 0;
}

.hero {
  position: relative;
  height: min(760px, calc(100svh - 48px));
  min-height: 620px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-art {
  position: absolute;
  z-index: 1;
  top: 34px;
  right: max(0px, calc((100vw - var(--container)) / 2 - 90px));
  width: min(56vw, 700px);
  height: calc(100% - 56px);
  object-fit: contain;
  object-position: right bottom;
  opacity: 0.82;
}

.hero-overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: rgba(7, 28, 44, 0.14);
}

.hero-inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  padding-block: 58px 82px;
}

.hero-copy {
  width: min(680px, 64%);
}

.eyebrow {
  margin: 0 0 16px;
  color: #8ae3c0;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--green-dark);
}

.hero h1 {
  margin: 0;
  font-size: 76px;
  line-height: 0.98;
  font-weight: 900;
}

.hero-statement {
  max-width: 650px;
  margin: 22px 0 0;
  font-size: 30px;
  line-height: 1.22;
  font-weight: 750;
}

.hero-description {
  max-width: 610px;
  margin: 20px 0 0;
  color: #d8e7ef;
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-actions .button {
  min-height: 50px;
  padding-inline: 22px;
  font-size: 15px;
}

.hero-proof {
  width: min(620px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 36px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}

.hero-proof div {
  min-width: 0;
  padding: 16px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-proof div:first-child {
  padding-left: 0;
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof dt {
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
}

.hero-proof dd {
  margin: 3px 0 0;
  color: #a9c0ce;
  font-size: 13px;
}

.hero-next {
  position: absolute;
  z-index: 4;
  bottom: 0;
  left: 50%;
  width: min(var(--container), calc(100% - 48px));
  min-height: 48px;
  display: flex;
  align-items: center;
  color: #c7d9e4;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 800;
}

.integration-band {
  padding: 72px 0 44px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.integration-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(600px, 1.5fr);
  align-items: center;
  gap: 60px;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-intro.compact {
  margin-bottom: 0;
}

.section-intro.horizontal {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  align-items: end;
  gap: 60px;
}

.section-intro h2,
.operation-copy h2,
.cta-layout h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 900;
}

.section-intro p:not(.eyebrow),
.operation-copy > p:not(.eyebrow),
.cta-layout p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.bank-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.bank-item {
  min-width: 0;
  margin: 0;
  padding: 22px 16px 18px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.bank-item:last-child {
  border-right: 0;
}

.bank-item img {
  width: 100%;
  height: 54px;
  object-fit: contain;
}

.bank-item figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.integration-note {
  margin-top: 24px;
  color: #6d7e87;
  font-size: 12px;
}

.section {
  padding: 96px 0;
}

.presence-section {
  background: #eef4f1;
}

.presence-intro {
  margin-bottom: 34px;
}

.presence-card {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(290px, 0.75fr);
  min-height: 480px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(7, 28, 44, 0.1);
}

.presence-map-wrap {
  position: relative;
  min-height: 480px;
}

#cashmaq-presence-map {
  position: absolute;
  inset: 0;
  background: #dfeae6;
}

.presence-map-note {
  position: absolute;
  z-index: 500;
  left: 16px;
  bottom: 16px;
  padding: 8px 11px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.presence-summary {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-left: 1px solid var(--line);
}

.presence-status {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.presence-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 0 26px;
}

.presence-metrics div {
  min-width: 0;
  padding: 14px 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  text-align: center;
}

.presence-metrics dt {
  color: var(--green-dark);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.presence-metrics dd {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.presence-locations {
  display: flex;
  flex-direction: column;
  gap: 9px;
  overflow: auto;
}

.presence-location {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.presence-location:last-child {
  border-bottom: 0;
}

.presence-location strong,
.presence-location span {
  display: block;
}

.presence-location strong {
  font-size: 14px;
}

.presence-location span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.presence-location b {
  flex: 0 0 auto;
  color: var(--green-dark);
  font-size: 12px;
}

.cashmaq-map-pin {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, #58c942, var(--green));
  border: 3px solid var(--white);
  border-radius: 50% 50% 50% 10%;
  box-shadow: 0 7px 18px rgba(7, 28, 44, 0.28);
  font-size: 11px;
  font-weight: 900;
  transform: rotate(-45deg);
}

.cashmaq-map-pin span {
  transform: rotate(45deg);
}

.cashmaq-map-popup {
  min-width: 170px;
  font-family: inherit;
}

.cashmaq-map-popup strong,
.cashmaq-map-popup span {
  display: block;
}

.cashmaq-map-popup span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.solution-card {
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.solution-card:hover {
  border-color: #9bc5b0;
  box-shadow: 0 16px 42px rgba(17, 51, 72, 0.09);
}

.feature-index {
  display: block;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.solution-card h3 {
  margin: 30px 0 0;
  font-size: 26px;
  line-height: 1.2;
}

.solution-card > p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.solution-card ul {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.solution-card li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.solution-card li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

.operation-section {
  padding: 96px 0;
  background: var(--ink);
  color: var(--white);
}

.operation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.86fr);
  gap: 70px;
  align-items: center;
}

.operation-copy > p:not(.eyebrow) {
  color: #b9ced9;
}

.flow-list {
  display: grid;
  gap: 0;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.flow-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.flow-list li > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--green);
  border-radius: 50%;
  font-weight: 900;
}

.flow-list strong {
  font-size: 16px;
}

.flow-list p {
  margin: 5px 0 0;
  color: #a9bfcb;
  font-size: 14px;
}

.control-board {
  border: 1px solid #315266;
  border-radius: 6px;
  background: #0d293b;
  box-shadow: 16px 16px 0 #12384e;
  overflow: hidden;
}

.board-heading {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  border-bottom: 1px solid #315266;
}

.board-heading div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b9ced9;
  font-size: 13px;
}

.live-dot {
  width: 10px;
  height: 10px;
  background: #53d866;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(83, 216, 102, 0.13);
}

.board-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid #315266;
}

.board-metrics div {
  min-width: 0;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  border-right: 1px solid #315266;
}

.board-metrics div:last-child {
  border-right: 0;
}

.board-metrics span,
.board-list span {
  color: #88a6b7;
  font-size: 12px;
  font-weight: 700;
}

.board-metrics strong {
  margin-top: 8px;
  color: #ffffff;
  font-size: 16px;
  overflow-wrap: anywhere;
}

.board-list {
  display: grid;
  padding: 8px 24px 20px;
}

.board-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #29485b;
}

.board-list div:last-child {
  border-bottom: 0;
}

.board-list b {
  max-width: 60%;
  text-align: right;
  font-size: 13px;
}

.applications {
  background: var(--paper);
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.application-grid div {
  min-height: 138px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.application-grid strong {
  font-size: 18px;
}

.application-grid span {
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
}

.product-section {
  border-top: 1px solid var(--line);
}

.text-link {
  color: var(--green-dark);
  font-weight: 850;
  border-bottom: 2px solid var(--green);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.product-media {
  aspect-ratio: 4 / 3;
  background: var(--paper);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-copy {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
}

.product-copy h3,
.product-copy p {
  margin: 0;
}

.product-copy p {
  color: var(--green-dark);
  font-weight: 900;
  white-space: nowrap;
}

.cta-section {
  padding: 80px 0;
  background: var(--blue);
  color: var(--white);
}

.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 80px;
}

.cta-layout > div:first-child {
  max-width: 730px;
}

.cta-layout p:not(.eyebrow) {
  color: #e3f3fb;
}

.cta-actions {
  flex-direction: column;
  align-items: stretch;
  min-width: 250px;
}

.site-footer {
  padding: 44px 0;
  background: #061722;
  color: #d7e4ea;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px 70px;
}

.footer-brand img {
  width: 170px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

.footer-brand p,
.copyright {
  color: #91a9b6;
  font-size: 13px;
}

.footer-brand p {
  margin: 10px 0 0;
}

.site-footer nav {
  display: flex;
  gap: 24px;
  font-size: 13px;
  font-weight: 750;
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid #233845;
}

@media (max-width: 1050px) {
  .header-inner {
    grid-template-columns: 190px 1fr auto;
  }

  .desktop-nav {
    gap: 18px;
  }

  .hero-art {
    right: -110px;
    width: 66vw;
    opacity: 0.55;
  }

  .hero-copy {
    width: 70%;
  }

  .integration-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .operation-layout {
    grid-template-columns: 1fr;
  }

  .control-board {
    width: min(760px, calc(100% - 16px));
  }

  .application-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    height: calc(100svh - 112px);
    min-height: 680px;
    max-height: 760px;
  }

  .hero-art {
    top: auto;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 74%;
    object-fit: cover;
    object-position: right bottom;
    opacity: 0.28;
  }

  .hero-overlay {
    background: rgba(7, 28, 44, 0.72);
  }

  .hero-copy {
    width: min(650px, 100%);
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-statement {
    font-size: 25px;
  }

  .section,
  .operation-section {
    padding: 76px 0;
  }

  .section-intro h2,
  .operation-copy h2,
  .cta-layout h2 {
    font-size: 36px;
  }

  .section-intro.horizontal,
  .cta-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .presence-card {
    grid-template-columns: 1fr;
  }

  .presence-map-wrap {
    min-height: 400px;
  }

  .presence-summary {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .bank-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bank-item:nth-child(2) {
    border-right: 0;
  }

  .bank-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .solution-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: 0;
  }

  .cta-actions {
    width: min(360px, 100%);
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    height: 68px;
  }

  .brand img {
    width: 148px;
    height: 40px;
  }

  .hero {
    height: calc(100svh - 112px);
    min-height: 650px;
    max-height: 740px;
  }

  .hero-inner {
    align-items: flex-start;
    padding-top: 40px;
    padding-bottom: 56px;
  }

  .hero-art {
    right: 0;
    width: 82%;
    height: 58%;
    object-fit: contain;
    opacity: 1;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-statement {
    margin-top: 14px;
    font-size: 22px;
  }

  .hero-description {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 20px;
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    margin-top: 22px;
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-proof div:last-child {
    border-bottom: 0;
  }

  .hero-proof dd {
    margin: 0;
  }

  .hero-next {
    width: calc(100% - 28px);
  }

  .integration-band {
    padding-top: 62px;
  }

  .section-intro h2,
  .operation-copy h2,
  .cta-layout h2 {
    font-size: 31px;
  }

  .section-intro p:not(.eyebrow),
  .operation-copy > p:not(.eyebrow),
  .cta-layout p:not(.eyebrow) {
    font-size: 16px;
  }

  .presence-card {
    border-radius: 14px;
  }

  .presence-map-wrap {
    min-height: 330px;
  }

  .presence-summary {
    padding: 22px 18px;
  }

  .presence-metrics dt {
    font-size: 22px;
  }

  .bank-item {
    padding-inline: 10px;
  }

  .bank-item img {
    height: 42px;
  }

  .solution-card {
    padding: 24px;
  }

  .solution-card h3 {
    font-size: 23px;
  }

  .operation-layout {
    gap: 44px;
  }

  .control-board {
    width: calc(100% - 8px);
    box-shadow: 8px 8px 0 #12384e;
  }

  .board-heading {
    align-items: flex-start;
    flex-direction: column-reverse;
  }

  .board-metrics {
    grid-template-columns: 1fr;
  }

  .board-metrics div {
    min-height: 84px;
    border-right: 0;
    border-bottom: 1px solid #315266;
  }

  .board-metrics div:last-child {
    border-bottom: 0;
  }

  .board-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .board-list b {
    max-width: none;
    text-align: left;
  }

  .application-grid {
    grid-template-columns: 1fr;
  }

  .application-grid div {
    min-height: 112px;
  }

  .cta-section {
    padding: 64px 0;
  }

  .footer-layout {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .copyright {
    grid-column: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* ================================================================== */
/* V4 — camada premium (vidro, luz, fisica) — mesma linguagem do app   */
/* ================================================================== */
.site-header {
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 rgba(7, 28, 44, 0.06);
}

.solution-card, .product-card {
  box-shadow: 0 1px 2px rgba(7, 28, 44, 0.05), 0 12px 32px rgba(7, 28, 44, 0.07);
  transition: transform 0.22s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.solution-card:hover, .product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 2px 4px rgba(7, 28, 44, 0.06), 0 24px 52px rgba(7, 28, 44, 0.12);
}

.button {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 1px 2px rgba(7, 28, 44, 0.10), 0 10px 28px rgba(7, 28, 44, 0.14);
  transition: transform 0.16s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.button:hover { transform: translateY(-1px); }
.button:active { transform: scale(0.97); }

.live-dot { animation: lpPulse 2.2s cubic-bezier(0.22, 0.61, 0.36, 1) infinite; }
@keyframes lpPulse {
  0% { box-shadow: 0 0 0 0 rgba(83, 216, 102, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(83, 216, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(83, 216, 102, 0); }
}

.mobile-menu nav {
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 2px 4px rgba(7, 28, 44, 0.06), 0 24px 52px rgba(7, 28, 44, 0.14);
  border-radius: 14px;
}

.product-copy p { font-variant-numeric: tabular-nums; }

@media (prefers-reduced-motion: reduce) {
  .live-dot { animation: none; }
}
