:root {
  --om-primary: #6ec1e4;
  --om-primary-strong: #35b2dd;
  --om-accent: #eefbff;
  --om-dark: #0b1f3a;
  --om-dark-2: #122b4f;
  --om-text: #32445f;
  --om-line: rgba(11, 31, 58, 0.08);
  --om-white: #ffffff;
  --om-shadow: 0 24px 60px rgba(11, 31, 58, 0.12);
  --om-shadow-soft: 0 18px 40px rgba(11, 31, 58, 0.08);
  --om-radius-xl: 30px;
  --om-radius-lg: 22px;
  --om-radius-md: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--om-text);
  background: #f7fcfe;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.om-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.om-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 20px 0 0;
  backdrop-filter: blur(16px);
}

.om-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.48), rgba(255,255,255,0.32));
  border: 1px solid rgba(110, 193, 228, 0.24);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(11, 31, 58, 0.06);
}

.om-site-header-checkout {
  padding-bottom: 12px;
}

.om-header-bar-simple {
  justify-content: center;
}

.om-header-bar-simple .om-brand img {
  margin-inline: auto;
}

.om-brand img { width: 220px; max-width: 100%; }

.om-nav-list {
  display: flex;
  gap: 26px;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

.om-nav-list a {
  color: var(--om-dark);
  font-weight: 600;
  font-size: 15px;
}

.om-nav-list a:hover { color: var(--om-primary-strong); }
.om-nav-list .current-menu-item > a,
.om-nav-list .current_page_item > a { color: var(--om-primary-strong); }

.om-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.om-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(11, 31, 58, 0.12);
}

.om-btn-primary {
  background: linear-gradient(135deg, var(--om-primary), var(--om-primary-strong));
  color: #ffffff;
}

.om-btn-secondary {
  background: rgba(255,255,255,0.9);
  border-color: rgba(110, 193, 228, 0.28);
  color: var(--om-dark);
}

.om-btn-block { width: 100%; }

.om-menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 10px;
  border-radius: 12px;
}

.om-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--om-dark);
  margin: 5px 0;
}

.om-mobile-menu {
  margin-top: 12px;
  padding: 18px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(110, 193, 228, 0.22);
  border-radius: 20px;
  box-shadow: var(--om-shadow-soft);
}

.om-mobile-menu .om-nav-list {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.om-mobile-cta { margin-top: 16px; width: 100%; }

.om-home { overflow: clip; }

.om-hero {
  position: relative;
  padding: 56px 0 42px;
  background: linear-gradient(180deg, #eaf9fd 0%, #f5fcfe 100%);
  overflow: hidden;
}

.om-hero::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -260px;
  width: 980px;
  height: 980px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110, 193, 228, 0.78) 0%, rgba(110, 193, 228, 0.56) 45%, rgba(110, 193, 228, 0.12) 72%, rgba(110, 193, 228, 0) 100%);
  z-index: 0;
}

.om-hero > .om-shell {
  position: relative;
  z-index: 1;
}

.om-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 46px;
  align-items: center;
}

.om-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(110, 193, 228, 0.18);
  color: var(--om-dark);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.om-chip-light {
  background: rgba(255,255,255,0.14);
  color: #fff;
}

.om-hero-copy h1 {
  margin: 16px 0 18px;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--om-dark);
}

.om-hero-copy p {
  max-width: 620px;
  font-size: 19px;
  line-height: 1.7;
  margin: 0 0 28px;
}

.om-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.om-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.om-stat {
  padding: 18px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(110, 193, 228, 0.18);
  border-radius: var(--om-radius-md);
  box-shadow: var(--om-shadow-soft);
}

.om-stat strong {
  display: block;
  color: var(--om-dark);
  font-size: 26px;
  margin-bottom: 6px;
}

.om-stat span { font-size: 14px; line-height: 1.5; }

.om-hero-visual {
  position: relative;
  min-height: 620px;
}

.om-blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(6px);
}

.om-blob-a {
  inset: 54px 24px 0 24px;
  background: radial-gradient(circle at 30% 30%, rgba(110, 193, 228, 0.55), rgba(110, 193, 228, 0.2) 56%, rgba(110, 193, 228, 0.04) 80%);
}

.om-blob-b {
  width: 320px;
  height: 320px;
  right: -26px;
  bottom: 16px;
  background: radial-gradient(circle, rgba(110, 193, 228, 0.22), rgba(110, 193, 228, 0.03) 70%);
}

.om-dashboard {
  position: absolute;
  inset: 80px 0 50px 0;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 26px;
  box-shadow: 0 32px 90px rgba(17, 44, 84, 0.18);
  overflow: hidden;
}

.om-dashboard-shot-wrap {
  background: rgba(255,255,255,0.92);
}

.om-dashboard-shot {
  padding: 16px;
  background: linear-gradient(180deg, rgba(110,193,228,0.08), rgba(255,255,255,0.02));
}

.om-dashboard-shot img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  border: 1px solid rgba(11,31,58,0.08);
  box-shadow: 0 18px 44px rgba(11,31,58,0.12);
}

.om-browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 64px;
  padding: 0 22px;
  background: linear-gradient(135deg, #6ec1e4, #35b2dd 70%, #1da5d4);
}

.om-browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.8);
}

.om-browser-tabs {
  width: 100%;
  margin-left: 18px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0.35), rgba(255,255,255,0.05));
}

.om-dashboard-body {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  padding: 22px;
}

.om-sidebar-card,
.om-chart-card,
.om-analytics-card {
  background: #fff;
  border: 1px solid rgba(11,31,58,0.08);
  border-radius: 20px;
  box-shadow: var(--om-shadow-soft);
}

.om-sidebar-card {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.om-mini-card {
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #eff5ff, #e6efff);
}

.om-mini-card-accent {
  background: linear-gradient(135deg, #6ec1e4, #35b2dd);
}

.om-mini-lines {
  flex: 1;
  min-height: 180px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(17,44,84,0.08), rgba(17,44,84,0.08)) 0 18px / 80% 10px no-repeat,
    linear-gradient(180deg, rgba(17,44,84,0.08), rgba(17,44,84,0.08)) 0 48px / 68% 10px no-repeat,
    linear-gradient(180deg, rgba(17,44,84,0.08), rgba(17,44,84,0.08)) 0 78px / 74% 10px no-repeat,
    linear-gradient(180deg, rgba(17,44,84,0.08), rgba(17,44,84,0.08)) 0 108px / 60% 10px no-repeat,
    linear-gradient(180deg, rgba(17,44,84,0.08), rgba(17,44,84,0.08)) 0 138px / 70% 10px no-repeat;
}

.om-donut {
  width: 92px;
  height: 92px;
  margin: 0 auto;
  border-radius: 50%;
  background: conic-gradient(#6ec1e4 0 42%, #35b2dd 42% 75%, #edf9fe 75% 100%);
  position: relative;
}

.om-donut::after {
  content: "";
  position: absolute;
  inset: 20px;
  background: #fff;
  border-radius: 50%;
}

.om-main-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.om-chart-card {
  position: relative;
  min-height: 284px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(110,193,228,0.12), rgba(255,255,255,0) 30%),
    #fff;
}

.om-chart-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  background-image: linear-gradient(rgba(11,31,58,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(11,31,58,0.08) 1px, transparent 1px);
  background-size: 100% 52px, 64px 100%;
  border-radius: 16px;
}

.om-chart-svg {
  position: absolute;
  inset: 40px 28px 28px 28px;
  width: calc(100% - 56px);
  height: calc(100% - 68px);
  fill: none;
  stroke: #35b2dd;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.om-chart-svg .second {
  stroke: #6ec1e4;
  opacity: .95;
}

.om-chart-tooltip {
  position: absolute;
  top: 78px;
  right: 140px;
  width: 92px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #6ec1e4, #35b2dd);
  box-shadow: 0 18px 34px rgba(53,178,221,0.26);
}

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

.om-analytics-card {
  min-height: 112px;
  padding: 20px;
}

.om-analytics-card strong {
  display: block;
  font-size: 14px;
  color: var(--om-text);
  margin-bottom: 10px;
}

.om-analytics-card span {
  display: block;
  font-size: 30px;
  line-height: 1;
  color: var(--om-dark);
  font-weight: 800;
}

.om-analytics-card-ring {
  background: radial-gradient(circle at 78% 38%, rgba(110,193,228,0.22), transparent 26%), #fff;
}

.om-floating-card {
  position: absolute;
  max-width: 300px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(11,31,58,0.08);
  box-shadow: var(--om-shadow-soft);
  font-weight: 700;
  color: var(--om-dark);
}

.om-floating-card-top { left: -18px; top: 138px; }
.om-floating-card-bottom { right: -12px; bottom: 20px; }

.om-trust-band {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 14px 0 22px;
  background: linear-gradient(180deg, #f5fcfe 0%, #f7fcfe 100%);
}

.om-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.om-trust-grid > div {
  position: relative;
  min-height: 132px;
  padding: 20px 22px;
  background: #ffffff;
  border: 1px solid rgba(110,193,228,0.18);
  border-radius: 18px;
  box-shadow: var(--om-shadow-soft);
}

.om-trust-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  color: var(--om-dark);
}

.om-section { padding: 82px 0; }
.om-section-soft { background: linear-gradient(180deg, #fff 0%, #f6f8fc 100%); }

.om-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 34px;
}

.om-section-head-center {
  text-align: center;
  align-items: center;
  flex-direction: column;
}

.om-section-head h2 {
  margin: 12px 0 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--om-dark);
}

.om-section-head p {
  margin: 0;
  max-width: 660px;
  font-size: 18px;
  line-height: 1.7;
}

.om-feature-grid,
.om-vertical-grid,
.om-steps-grid,
.om-faq-grid {
  display: grid;
  gap: 22px;
}

.om-feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.om-vertical-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.om-steps-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.om-faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.om-feature-card,
.om-vertical-card,
.om-step-card,
.om-faq-item,
.om-pricing-card,
.om-article-card {
  background: #fff;
  border: 1px solid rgba(110,193,228,0.16);
  border-radius: 24px;
  box-shadow: var(--om-shadow-soft);
}

.om-feature-card,
.om-step-card,
.om-faq-item,
.om-article-card { padding: 28px; }

.om-icon-wrap {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 26px;
  background: linear-gradient(135deg, rgba(254,188,103,0.25), rgba(255,255,255,1));
  margin-bottom: 18px;
}

.om-feature-card h3,
.om-vertical-card h3,
.om-step-card h3,
.om-faq-item h3,
.om-pricing-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.2;
  color: var(--om-dark);
}

.om-feature-card p,
.om-vertical-card p,
.om-step-card p,
.om-faq-item p,
.om-pricing-copy p,
.om-footer-top p,
.om-entry-content {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
}

.om-vertical-card {
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.om-vertical-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -50px auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(254,188,103,0.22), transparent 70%);
}

.om-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--om-primary-strong);
}

.om-vertical-card a {
  display: inline-flex;
  margin-top: 20px;
  font-weight: 800;
  color: var(--om-dark);
}

.om-vertical-card-highlight {
  background: linear-gradient(135deg, #0f2750, #16396f 58%, #1f4d8d);
  color: rgba(255,255,255,0.84);
}

.om-vertical-card-highlight h3,
.om-vertical-card-highlight a { color: #fff; }
.om-vertical-card-highlight .om-kicker { color: #ffd59c; }

.om-pricing-wrap {
  display: grid;
  grid-template-columns: .95fr 1fr;
  gap: 28px;
  align-items: center;
}

.om-pricing-copy h2 {
  margin: 14px 0 16px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  color: var(--om-dark);
}

.om-pricing-card {
  position: relative;
  padding: 34px;
  background: linear-gradient(180deg, #fff7eb 0%, #ffffff 100%);
}

.om-pricing-badge {
  position: absolute;
  top: -14px;
  right: 20px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: var(--om-dark);
  color: #fff;
}

.om-price {
  margin: 18px 0 24px;
  font-size: clamp(44px, 7vw, 74px);
  line-height: .95;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--om-dark);
}

.om-price small {
  font-size: .34em;
  font-weight: 800;
  color: var(--om-text);
}

.om-price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 12px;
}

.om-price-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.6;
}

.om-price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
  color: var(--om-primary-strong);
}

.om-step-card span {
  display: inline-flex;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-weight: 900;
  color: var(--om-dark);
  background: linear-gradient(135deg, rgba(254,188,103,0.22), rgba(255,255,255,1));
}



.om-site-footer {
  padding: 0;
  background: linear-gradient(135deg, #0b1f3a, #143563 58%, #1e4d89);
  color: rgba(255,255,255,0.88);
  margin-top: 0;
}

.om-footer-card,
.om-footer-top,
.om-footer-actions,
.om-footer-bottom {
  display: none;
}

.om-footer-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 56px 32px 30px;
}

.om-footer-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.om-footer-brand img {
  width: min(320px, 70vw);
  height: auto;
}

.om-footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.14);
  margin-bottom: 30px;
}

.om-footer-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.om-footer-row-top {
  margin-bottom: 24px;
}

.om-footer-row-bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.om-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px 28px;
}

.om-footer-links a {
  color: rgba(255,255,255,0.88);
  font-size: 16px;
  font-weight: 500;
}

.om-footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.om-footer-socials a {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.om-footer-socials a:hover {
  transform: translateY(-2px);
  background: rgba(110,193,228,0.22);
  border-color: rgba(110,193,228,0.45);
}

.om-footer-socials svg {
  width: 20px;
  height: 20px;
}

.om-footer-fiscal {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  font-weight: 600;
}

.om-footer-fiscal img {
  width: 48px;
  height: auto;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
}

.om-copyright {
  margin: 0;
  color: rgba(255,255,255,0.84);
  font-size: 16px;
  text-align: right;
}

@media (max-width: 980px) {
  .om-footer-row {
    flex-direction: column;
    align-items: stretch;
  }

  .om-footer-socials,
  .om-footer-links {
    justify-content: center;
  }

  .om-footer-fiscal {
    justify-content: center;
  }

  .om-copyright {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .om-footer-inner {
    padding: 42px 18px 26px;
  }

  .om-footer-brand {
    margin-bottom: 24px;
  }

  .om-footer-divider {
    margin-bottom: 24px;
  }

  .om-footer-row-top {
    margin-bottom: 18px;
  }

  .om-footer-links {
    gap: 12px 20px;
  }

  .om-footer-links a,
  .om-copyright,
  .om-footer-fiscal {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .om-header-bar { padding: 14px; }
  .om-brand img { width: 176px; }
  .om-hero { padding-top: 30px; }
  .om-hero-grid { gap: 30px; }
  .om-hero-copy p,
  .om-section-head p,
  .om-pricing-copy p { font-size: 16px; }
  .om-hero-visual { min-height: 440px; }
  .om-dashboard-body { grid-template-columns: 1fr; }
  .om-sidebar-card { display: none; }
  .om-chart-card { min-height: 220px; }
  .om-dashboard-shot img { min-height: 300px; }
  .om-footer-card { padding: 24px; }
  .om-section { padding: 64px 0; }
}

@media (max-width: 540px) {
  .om-shell { width: min(100% - 20px, 1180px); }
  .om-hero-copy h1 { font-size: 38px; }
  .om-hero-visual { min-height: 360px; }
  .om-dashboard { inset: 44px 0 18px 0; }
  .om-browser-bar { height: 54px; }
  .om-dashboard-shot { padding: 10px; }
  .om-dashboard-shot img { min-height: 220px; border-radius: 14px; }
  .om-chart-tooltip { width: 66px; height: 34px; top: 60px; right: 52px; }
  .om-feature-card, .om-vertical-card, .om-step-card, .om-faq-item, .om-pricing-card, .om-article-card { padding: 22px; }
  .om-btn { width: 100%; }
}



/* Motion system */
.om-nav-list a,
.om-footer-links a,
.om-brand img,
.om-chip,
.om-stat,
.om-trust-grid > div,
.om-feature-card,
.om-vertical-card,
.om-step-card,
.om-faq-item,
.om-pricing-card,
.om-article-card,
.om-floating-card,
.om-dashboard,
.om-dashboard-shot img,
.om-sidebar-card,
.om-chart-card,
.om-analytics-card,
.om-icon-wrap,
.om-step-card span {
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease, opacity .28s ease;
}

.om-nav-list a:hover,
.om-footer-links a:hover {
  color: var(--om-primary);
  transform: translateY(-1px);
}

.om-stat:hover,
.om-trust-grid > div:hover,
.om-feature-card:hover,
.om-vertical-card:hover,
.om-step-card:hover,
.om-faq-item:hover,
.om-pricing-card:hover,
.om-article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 56px rgba(11, 31, 58, 0.14);
  border-color: rgba(110,193,228,0.34);
}

.om-feature-card:hover .om-icon-wrap,
.om-step-card:hover span,
.om-article-card:hover .om-icon-wrap {
  transform: translateY(-3px) scale(1.04);
}

.om-pricing-card:hover .om-price-tag {
  transform: translateY(-2px) scale(1.01);
}

.om-dashboard:hover {
  transform: translateY(-6px);
  box-shadow: 0 38px 98px rgba(17, 44, 84, 0.22);
}

.om-dashboard-shot img:hover {
  transform: scale(1.015);
}

.om-floating-card {
  backdrop-filter: blur(10px);
}

.om-floating-card-top {
  animation: omFloatUp 5.8s ease-in-out infinite;
}

.om-floating-card-bottom {
  animation: omFloatDown 6.6s ease-in-out infinite;
}

.om-blob-a {
  animation: omBlobA 10s ease-in-out infinite;
}

.om-blob-b {
  animation: omBlobB 12s ease-in-out infinite;
}

@keyframes omFloatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes omFloatDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@keyframes omBlobA {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(8px,-10px,0) scale(1.03); }
}

@keyframes omBlobB {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(-10px,10px,0) scale(0.98); }
}

/* Entrance reveal */
.om-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}

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

.om-reveal-delay-1 { transition-delay: .08s; }
.om-reveal-delay-2 { transition-delay: .16s; }
.om-reveal-delay-3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .om-reveal,
  .om-nav-list a,
  .om-footer-links a,
  .om-brand img,
  .om-chip,
  .om-stat,
  .om-trust-grid > div,
  .om-feature-card,
  .om-vertical-card,
  .om-step-card,
  .om-faq-item,
  .om-pricing-card,
  .om-article-card,
  .om-floating-card,
  .om-dashboard,
  .om-dashboard-shot img,
  .om-sidebar-card,
  .om-chart-card,
  .om-analytics-card,
  .om-icon-wrap,
  .om-step-card span {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}


/* Onboarding page shell */
.om-onboarding-page {
  background:
    radial-gradient(circle at 10% 10%, rgba(110,193,228,0.12), transparent 30%),
    radial-gradient(circle at 90% 15%, rgba(53,178,221,0.12), transparent 28%),
    linear-gradient(180deg, #f7fcfe 0%, #eef8fc 100%);
  min-height: 60vh;
}

.om-onboarding-hero {
  padding: 50px 0 70px;
}

.om-onboarding-head {
  margin-bottom: 28px;
}


.om-onboarding-standalone-body {
  background: linear-gradient(180deg, #eff8fc 0%, #f6fbfd 100%);
}

.om-onboarding-standalone {
  min-height: 100vh;
  padding: 28px 0 40px;
}

.om-onboarding-standalone__shell {
  width: min(1240px, calc(100% - 28px));
  margin: 0 auto;
}

.om-onboarding-standalone__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  margin-bottom: 18px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(110,193,228,0.24);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(11,31,58,0.06);
}

.om-onboarding-standalone__brand img {
  width: 240px;
  max-width: 100%;
  height: auto;
}

.om-onboarding-standalone__hero {
  padding: 22px 0 10px;
}

.om-onboarding-standalone .ot-onboarding {
  margin-top: 6px;
}

@media (max-width: 768px) {
  .om-onboarding-standalone {
    padding: 20px 0 28px;
  }

  .om-onboarding-standalone__brand {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
    border-radius: 20px;
  }

  .om-onboarding-standalone__brand img {
    width: 190px;
  }
}


/* Omega Resto */
.om-resto-page {
  --omr-primary: #e44747;
  --omr-primary-strong: #b91c2b;
  --omr-primary-dark: #5c1320;
  --omr-soft: #fff2f2;
  --omr-soft-2: #ffe0e0;
  --omr-line: rgba(185, 28, 43, 0.14);
  --omr-text: #69414a;
  color: var(--omr-text);
  background: linear-gradient(180deg, #fff9f8 0%, #fff4f3 100%);
}

.om-resto-page .om-section-head h2,
.om-resto-page h1,
.om-resto-page h2,
.om-resto-page h3,
.om-resto-page strong,
.om-resto-page b {
  color: var(--omr-primary-dark);
}

.om-resto-page .om-chip {
  background: rgba(228, 71, 71, 0.14);
  color: var(--omr-primary-dark);
}

.om-resto-page .om-btn-primary,
.om-resto-btn-primary {
  background: linear-gradient(135deg, var(--omr-primary), var(--omr-primary-strong));
  color: #fff;
}

.om-resto-page .om-btn-secondary,
.om-resto-btn-secondary {
  background: rgba(255,255,255,0.92);
  border-color: var(--omr-line);
  color: var(--omr-primary-dark);
}

.om-resto-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  font-weight: 700;
}

.om-resto-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.16);
  background: linear-gradient(135deg, #d93b43, #bf2836);
  box-shadow: 0 16px 30px rgba(191, 40, 54, 0.24);
  font-weight: 700;
}

.om-resto-btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(191, 40, 54, 0.3);
}

.om-resto-hero {
  position: relative;
  overflow: hidden;
  padding: 62px 0 46px;
  background:
    radial-gradient(circle at 88% 16%, rgba(228,71,71,0.26), transparent 24%),
    radial-gradient(circle at 14% 10%, rgba(255,164,96,0.18), transparent 24%),
    linear-gradient(180deg, #fff8f7 0%, #fff1f0 100%);
}

.om-resto-hero::before {
  content: "";
  position: absolute;
  inset: -180px auto auto 56%;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228,71,71,0.18) 0%, rgba(228,71,71,0.08) 40%, rgba(228,71,71,0) 72%);
  pointer-events: none;
}

.om-resto-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 42px;
  align-items: center;
}

.om-resto-copy h1 {
  margin: 16px 0 18px;
  font-size: clamp(40px, 5.2vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.om-resto-copy p {
  margin: 0 0 26px;
  font-size: 18px;
  line-height: 1.75;
  max-width: 640px;
}

.om-resto-bullets {
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 28px;
}

.om-resto-bullets li {
  position: relative;
  padding-left: 30px;
  font-weight: 600;
  color: var(--omr-primary-dark);
}

.om-resto-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
  color: var(--omr-primary);
}

.om-resto-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.om-resto-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--omr-line);
  box-shadow: 0 14px 28px rgba(92, 19, 32, 0.08);
  font-size: 14px;
  font-weight: 700;
  color: var(--omr-primary-dark);
}

.om-resto-visual {
  position: relative;
  min-height: 620px;
}

.om-resto-glow {
  position: absolute;
  inset: 18px 20px 40px 40px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255,255,255,0.7), rgba(255,255,255,0.18));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}

.om-resto-window {
  position: absolute;
  inset: 56px 26px 70px 0;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 28px;
  box-shadow: 0 34px 90px rgba(92,19,32,0.16);
  overflow: hidden;
}

.om-resto-window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 64px;
  padding: 0 20px;
  background: linear-gradient(135deg, var(--omr-primary), var(--omr-primary-strong));
}

.om-resto-window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.84);
}

.om-resto-kitchen-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(228,71,71,0.08), rgba(255,255,255,0));
}

.om-resto-kitchen-column {
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(92,19,32,0.08);
  box-shadow: 0 18px 34px rgba(92,19,32,0.08);
}

.om-resto-kitchen-column strong {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
}

.om-resto-ticket {
  display: grid;
  gap: 9px;
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff7f7, #fffefe);
  border: 1px solid rgba(228,71,71,0.14);
}

.om-resto-ticket span {
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(92,19,32,0.12);
  font-size: 14px;
}

.om-resto-ticket span:last-child { border-bottom: 0; padding-bottom: 0; }
.om-resto-ticket-accent { background: linear-gradient(180deg, #fff0f0, #fff8f8); }
.om-resto-ticket-soft { background: linear-gradient(180deg, #fff7f1, #fffdf9); }

.om-resto-floating {
  position: absolute;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(92,19,32,0.14);
  backdrop-filter: blur(12px);
}

.om-resto-floating-pos {
  right: -6px;
  bottom: 22px;
  width: 250px;
  padding: 18px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(228,71,71,0.16);
}

.om-resto-pos-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.om-resto-pos-top strong {
  font-size: 18px;
}

.om-resto-pos-top span {
  font-size: 13px;
  color: var(--omr-primary);
  font-weight: 800;
}

.om-resto-pos-line,
.om-resto-pos-total {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
}

.om-resto-pos-line {
  border-bottom: 1px solid rgba(92,19,32,0.08);
}

.om-resto-pos-total {
  margin-top: 6px;
  font-weight: 900;
  color: var(--omr-primary-dark);
}

.om-resto-floating-online {
  left: -14px;
  top: 118px;
  display: grid;
  gap: 6px;
  max-width: 260px;
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(92,19,32,0.96), rgba(185,28,43,0.9));
  color: #fff;
}

.om-resto-floating-online span {
  color: rgba(255,255,255,0.76);
}

.om-resto-section-soft {
  background: linear-gradient(180deg, #fff 0%, #fff5f4 100%);
}

.om-resto-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.om-resto-flow-card,
.om-resto-check-card,
.om-resto-ready-card {
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--omr-line);
  border-radius: 24px;
  box-shadow: 0 20px 48px rgba(92,19,32,0.08);
}

.om-resto-flow-card {
  padding: 24px;
  overflow: hidden;
}

.om-resto-flow-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.om-resto-flow-card p,
.om-resto-ready-card p,
.om-resto-system-copy p,
.om-resto-cta-card p {
  margin: 0;
  line-height: 1.75;
}

.om-resto-flow-visual {
  margin: 0 auto 20px;
  min-height: 170px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border-radius: 20px;
  border: 1px solid rgba(92,19,32,0.08);
  background: linear-gradient(180deg, #fff6f6, #fffefe);
  overflow: hidden;
}

.om-resto-flow-image {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  aspect-ratio: 16 / 9;
  min-height: 0;
  height: clamp(210px, 18vw, 250px);
  padding: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #fff5f4 100%);
  cursor: zoom-in;
  text-decoration: none;
}

.om-resto-flow-image::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 16px;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(92,19,32,0.05);
}

.om-resto-flow-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  border-radius: 14px;
  object-fit: contain;
  object-position: center center;
  background: #fff;
  transition: transform 220ms ease;
}

.om-resto-flow-image:hover img {
  transform: scale(1.018);
}

.om-resto-flow-image-pos img {
  object-position: center top;
}

.om-resto-flow-image-kds img {
  object-position: center center;
  background: #05070d;
}

.om-resto-flow-image-online img {
  object-position: center top;
}

.om-resto-zoom-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(92,19,32,0.82);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(92,19,32,0.18);
}

.om-resto-zoom-badge::before {
  content: "+";
  font-size: 16px;
  line-height: 1;
}

.om-resto-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
}

.om-resto-lightbox[hidden] {
  display: none;
}

.om-resto-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 8, 14, 0.72);
  backdrop-filter: blur(5px);
}

.om-resto-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  margin: 16px auto;
  padding: 22px;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.28);
}

.om-resto-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(92,19,32,0.08);
  color: var(--omr-primary-dark);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.om-resto-lightbox-close:hover {
  background: rgba(92,19,32,0.14);
}

#om-resto-lightbox-image {
  display: block;
  width: 100%;
  max-height: min(78vh, 880px);
  object-fit: contain;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff8f7 0%, #ffffff 100%);
}

#om-resto-lightbox-caption {
  margin: 12px 8px 0;
  color: var(--omr-primary-dark);
  font-weight: 700;
}

.om-resto-flow-mesas {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
}

.om-resto-flow-mesas span {
  display: grid;
  place-items: center;
  min-height: 56px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(228,71,71,0.12);
  font-weight: 800;
  color: var(--omr-primary-dark);
}

.om-resto-flow-mesas .is-active {
  background: linear-gradient(135deg, var(--omr-primary), var(--omr-primary-strong));
  color: #fff;
}

.om-resto-flow-kds {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
}

.om-resto-flow-kds div {
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(92,19,32,0.08), rgba(92,19,32,0.08)) 14px 18px / calc(100% - 28px) 10px no-repeat,
    linear-gradient(180deg, rgba(228,71,71,0.12), rgba(228,71,71,0.12)) 14px 42px / calc(100% - 28px) 46px no-repeat,
    linear-gradient(180deg, rgba(92,19,32,0.08), rgba(92,19,32,0.08)) 14px 100px / calc(100% - 28px) 10px no-repeat,
    #fff;
  border: 1px solid rgba(228,71,71,0.12);
}

.om-resto-flow-online {
  position: relative;
  padding: 18px;
}

.om-resto-mini-product {
  width: 92px;
  height: 92px;
  border-radius: 22px;
  background: radial-gradient(circle at 35% 28%, rgba(255,255,255,0.68), rgba(255,255,255,0) 34%), linear-gradient(135deg, #ffb37d, var(--omr-primary));
  box-shadow: 0 16px 32px rgba(228,71,71,0.18);
  margin-bottom: 16px;
}

.om-resto-mini-lines {
  height: 56px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(92,19,32,0.1), rgba(92,19,32,0.1)) 0 0 / 85% 10px no-repeat,
    linear-gradient(180deg, rgba(92,19,32,0.08), rgba(92,19,32,0.08)) 0 22px / 100% 10px no-repeat,
    linear-gradient(180deg, rgba(228,71,71,0.12), rgba(228,71,71,0.12)) 0 44px / 68% 10px no-repeat;
}

.om-resto-system-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.om-resto-system-copy h2 {
  margin: 14px 0 14px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
}

.om-resto-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.om-resto-check-card {
  position: relative;
  padding: 20px 20px 20px 52px;
  font-weight: 800;
  color: var(--omr-primary-dark);
}

.om-resto-check-card::before {
  content: "✓";
  position: absolute;
  left: 20px;
  top: 18px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(228,71,71,0.12);
  color: var(--omr-primary);
  font-size: 12px;
}

.om-resto-ready-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.om-resto-ready-card {
  padding: 26px;
}

.om-resto-ready-card-main {
  background: linear-gradient(180deg, #fff4f4 0%, #ffffff 100%);
}

.om-resto-ready-card h2 {
  margin: 14px 0 10px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
}

.om-resto-ready-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}

.om-resto-cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 36px;
  border-radius: 30px;
  background: linear-gradient(135deg, #661323, #9e1c2d 58%, #d93b3b);
  color: rgba(255,255,255,0.9);
  box-shadow: 0 30px 70px rgba(92,19,32,0.18);
}

.om-resto-cta-card h2 {
  margin: 16px 0 12px;
  color: #fff;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.06;
}

.om-resto-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 250px;
}

.om-resto-page .om-resto-flow-card:hover,
.om-resto-page .om-resto-check-card:hover,
.om-resto-page .om-resto-ready-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(92,19,32,0.12);
  border-color: rgba(185,28,43,0.22);
}

@media (max-width: 1120px) {

  .om-resto-lightbox-dialog {
    width: min(980px, calc(100vw - 24px));
    max-height: calc(100vh - 24px);
    margin: 12px auto;
    padding: 18px;
  }

  #om-resto-lightbox-image {
    max-height: calc(100vh - 110px);
  }
  .om-resto-hero-grid,
  .om-resto-system-grid,
  .om-resto-ready-grid,
  .om-resto-cta-card {
    grid-template-columns: 1fr;
  }

  .om-resto-ready-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .om-resto-ready-card-main {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .om-resto-flow-grid,
  .om-resto-check-grid {
    grid-template-columns: 1fr;
  }

  .om-resto-visual {
    min-height: 540px;
  }

  .om-resto-window {
    inset: 36px 10px 84px 0;
  }

  .om-resto-floating-pos {
    right: 0;
  }

  .om-resto-floating-online {
    left: 10px;
    top: 82px;
  }
}

@media (max-width: 768px) {
  .om-resto-hero {
    padding-top: 34px;
  }

  .om-resto-copy p {
    font-size: 16px;
  }

  .om-resto-badges {
    display: grid;
    grid-template-columns: 1fr;
  }

  .om-resto-kitchen-board {
    grid-template-columns: 1fr;
  }

  .om-resto-ready-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .om-resto-copy h1 {
    font-size: 36px;
  }

  .om-resto-visual {
    min-height: 460px;
  }

  .om-resto-window {
    inset: 18px 0 92px 0;
    border-radius: 22px;
  }

  .om-resto-window-bar {
    height: 56px;
  }

  .om-resto-kitchen-board {
    padding: 12px;
  }

  .om-resto-kitchen-column {
    padding: 12px;
  }

  .om-resto-ticket {
    padding: 12px;
  }

  .om-resto-floating-online {
    position: static;
    max-width: none;
    margin: 12px 0 0;
  }

  .om-resto-floating-pos {
    width: auto;
    left: 14px;
    right: 14px;
    bottom: 10px;
  }

  .om-resto-cta-card {
    padding: 26px;
  }

  .om-resto-cta-actions {
    min-width: 0;
  }
}

/* Omega Resto header/footer accents */
.om-site-header-resto .om-nav-list a:hover,
.om-site-header-resto .om-nav-list .current-menu-item > a,
.om-site-header-resto .om-nav-list .current_page_item > a {
  color: #cf1628;
}

.om-site-header-resto .om-btn-primary,
.om-site-header-resto .om-mobile-cta {
  background: linear-gradient(135deg, #ef4444, #cf1628);
  box-shadow: 0 16px 32px rgba(207, 22, 40, 0.24);
}

.om-site-header-resto .om-mobile-menu {
  border-color: rgba(207, 22, 40, 0.18);
}

.om-site-footer-resto {
  background: linear-gradient(135deg, #5f0a14, #8d1021 55%, #c81e32);
}

.om-site-footer-resto .om-footer-socials a:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.42);
}

.om-site-footer-resto .om-footer-links a:hover {
  color: #ffd8dd;
}


/* Omega Membresías header/footer accents */
.om-site-header-memb .om-nav-list a:hover,
.om-site-header-memb .om-nav-list .current-menu-item > a,
.om-site-header-memb .om-nav-list .current_page_item > a {
  color: #138d63;
}

.om-site-header-memb .om-btn-primary,
.om-site-header-memb .om-mobile-cta {
  background: linear-gradient(135deg, #2dc57c, #138d63);
  box-shadow: 0 16px 32px rgba(19, 141, 99, 0.24);
}

.om-site-header-memb .om-mobile-menu {
  border-color: rgba(19, 141, 99, 0.18);
}

.om-site-footer-memb {
  background: linear-gradient(135deg, #0d5e41, #138d63 55%, #31b474);
}

.om-site-footer-memb .om-footer-socials a:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.42);
}

.om-site-footer-memb .om-footer-links a:hover {
  color: #dcfff0;
}


@media (max-width: 640px) {
  .om-resto-flow-image {
    padding: 10px;
  }

  .om-resto-zoom-badge {
    right: 16px;
    bottom: 16px;
    padding: 7px 11px;
    font-size: 12px;
  }

  .om-resto-lightbox-dialog {
    padding: 14px;
    border-radius: 20px;
  }
}

body.om-lightbox-open { overflow: hidden; }



/* =========================
   Omega Retail Vertical
========================= */
.om-site-header-retail .om-header-bar {
  border-color: rgba(79, 146, 255, 0.20);
}

.om-retail-page {
  --om-retail-primary: #4f92ff;
  --om-retail-strong: #245fcb;
  --om-retail-dark: #13356f;
  --om-retail-soft: #eff5ff;
  --om-retail-line: rgba(79,146,255,0.16);
  --om-retail-shadow: 0 26px 60px rgba(36,95,203,0.14);
  color: #45607f;
}

.om-retail-page h1,
.om-retail-page h2,
.om-retail-page h3,
.om-retail-page strong,
.om-retail-page b { color: var(--om-retail-dark); }

.om-retail-page .om-chip {
  background: rgba(79,146,255,0.16);
  color: var(--om-retail-dark);
}

.om-retail-page .om-btn-primary,
.om-retail-btn-primary {
  background: linear-gradient(135deg, var(--om-retail-primary), var(--om-retail-strong));
  color: #fff;
}

.om-retail-page .om-btn-secondary,
.om-retail-btn-secondary,
.om-retail-btn-ghost {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
  color: #fff;
}

.om-retail-btn-demo {
  background: linear-gradient(135deg, #6ca6ff, #3e7df0);
  color: #fff;
}

.om-retail-hero {
  position: relative;
  padding: 58px 0 68px;
  overflow: hidden;
  background: linear-gradient(135deg, #14356f 0%, #1c4a98 48%, #3f86f5 100%);
}

.om-retail-hero::before {
  content: "";
  position: absolute;
  inset: auto -160px -220px auto;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.22), rgba(255,255,255,0) 68%);
}

.om-retail-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 44px;
  align-items: center;
}

.om-retail-copy { color: rgba(255,255,255,0.92); }

.om-retail-copy h1 {
  margin: 18px 0 18px;
  color: #fff;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.om-retail-copy p {
  margin: 0 0 26px;
  max-width: 640px;
  font-size: 19px;
  line-height: 1.72;
}

.om-retail-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
}

.om-retail-bullets li {
  position: relative;
  padding-left: 36px;
  font-size: 18px;
  line-height: 1.6;
}

.om-retail-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.16);
  color: #fff;
  font-weight: 900;
}

.om-retail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.om-retail-badges span {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-weight: 700;
}

.om-retail-visual {
  position: relative;
  min-height: 620px;
}

.om-retail-glow {
  position: absolute;
  inset: 42px 20px 20px 20px;
  border-radius: 34px;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.22), rgba(255,255,255,0.06) 44%, rgba(255,255,255,0) 72%);
  filter: blur(8px);
}

.om-retail-window {
  position: absolute;
  inset: 74px 0 90px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.82);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--om-retail-shadow);
}

.om-retail-window-bar {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 22px;
  background: linear-gradient(135deg, #4f92ff, #245fcb 70%, #194d9e);
}

.om-retail-window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.84);
}

.om-retail-browser {
  padding: 20px;
  background: linear-gradient(180deg, rgba(79,146,255,0.08), rgba(255,255,255,0.02));
}

.om-retail-browser-top {
  display: grid;
  grid-template-columns: 1fr 130px;
  gap: 14px;
  margin-bottom: 16px;
}

.om-retail-search,
.om-retail-filter-pill {
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fbff, #edf4ff);
  border: 1px solid rgba(19,53,111,0.08);
}

.om-retail-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.om-retail-tabs span {
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #f3f7ff;
  color: var(--om-retail-dark);
  font-weight: 700;
  font-size: 14px;
}

.om-retail-tabs .is-active {
  background: linear-gradient(135deg, #4f92ff, #245fcb);
  color: #fff;
}

.om-retail-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.om-retail-product-card {
  padding: 14px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(19,53,111,0.08);
  box-shadow: 0 18px 30px rgba(36,95,203,0.08);
}

.om-retail-product-card strong,
.om-retail-product-card small,
.om-retail-product-card b {
  display: block;
}

.om-retail-product-card strong {
  font-size: 16px;
  margin: 0 0 6px;
}

.om-retail-product-card small {
  margin-bottom: 8px;
  color: #6982a3;
}

.om-retail-product-card b {
  font-size: 18px;
}

.om-retail-thumb {
  height: 126px;
  border-radius: 18px;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}

.om-retail-thumb-shirt {
  background: linear-gradient(180deg, #e9f1ff, #d6e4ff);
}
.om-retail-thumb-shirt::before {
  content: "";
  position: absolute;
  left: 50%; top: 18px;
  width: 76px; height: 88px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #4f92ff, #245fcb);
  clip-path: polygon(20% 0, 36% 0, 42% 10%, 58% 10%, 64% 0, 80% 0, 100% 24%, 86% 38%, 80% 28%, 80% 100%, 20% 100%, 20% 28%, 14% 38%, 0 24%);
  border-radius: 10px;
}

.om-retail-thumb-ring {
  background: radial-gradient(circle at 50% 38%, rgba(255,255,255,0.96), rgba(215,228,255,0.92) 40%, #dfe9ff 100%);
}
.om-retail-thumb-ring::before {
  content: "";
  position: absolute;
  left: 50%; top: 28px;
  width: 74px; height: 74px;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 12px solid #dfb851;
  box-shadow: inset 0 0 0 4px rgba(255,255,255,0.45);
}
.om-retail-thumb-ring::after {
  content: "";
  position: absolute;
  left: 50%; top: 18px;
  width: 34px; height: 34px;
  transform: translateX(-50%) rotate(45deg);
  background: linear-gradient(135deg, #9fd7ff, #4f92ff);
  border-radius: 8px;
  box-shadow: 0 10px 16px rgba(79,146,255,0.25);
}

.om-retail-thumb-lamp {
  background: linear-gradient(180deg, #eef4ff, #dae6ff);
}
.om-retail-thumb-lamp::before {
  content: "";
  position: absolute;
  left: 50%; top: 20px;
  width: 86px; height: 42px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #5f9bff, #2b67d8);
  clip-path: polygon(12% 0, 88% 0, 100% 100%, 0 100%);
  border-radius: 10px;
}
.om-retail-thumb-lamp::after {
  content: "";
  position: absolute;
  left: 50%; top: 58px;
  width: 8px; height: 44px;
  transform: translateX(-50%);
  background: #2c5fbe;
  box-shadow: 0 52px 0 18px rgba(44,95,190,0.18);
  border-radius: 999px;
}

.om-retail-floating {
  position: absolute;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 22px 44px rgba(14,52,117,0.18);
  border: 1px solid rgba(255,255,255,0.76);
}

.om-retail-floating strong,
.om-retail-floating span {
  display: block;
}

.om-retail-floating strong { font-size: 18px; margin-bottom: 6px; }
.om-retail-floating span { color: #5f7392; }

.om-retail-floating-variants {
  left: -18px;
  top: 182px;
}

.om-retail-floating-wholesale {
  right: -12px;
  bottom: 34px;
}

.om-retail-section-soft {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

.om-retail-flow-grid,
.om-retail-check-grid,
.om-retail-ready-grid {
  display: grid;
  gap: 24px;
}

.om-retail-flow-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.om-retail-check-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.om-retail-ready-grid { grid-template-columns: 1.1fr .9fr .9fr .9fr; align-items: stretch; }

.om-retail-flow-card,
.om-retail-check-card,
.om-retail-ready-card,
.om-retail-cta-card {
  border-radius: 30px;
  background: #fff;
  border: 1px solid var(--om-retail-line);
  box-shadow: 0 20px 44px rgba(79,146,255,0.08);
}

.om-retail-flow-card,
.om-retail-ready-card {
  padding: 28px;
}

.om-retail-flow-card h3,
.om-retail-ready-card strong {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.2;
}

.om-retail-flow-card p,
.om-retail-ready-card p,
.om-retail-system-copy p,
.om-retail-cta-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.78;
  color: #55708f;
}

.om-retail-flow-visual {
  height: 232px;
  border-radius: 24px;
  margin-bottom: 22px;
  border: 1px solid rgba(79,146,255,0.12);
  background: linear-gradient(180deg, #f9fbff, #eef4ff);
  position: relative;
  overflow: hidden;
}

.om-retail-flow-image {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(220px, 18vw, 252px);
  padding: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  cursor: zoom-in;
  text-decoration: none;
}

.om-retail-flow-image::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(79,146,255,0.08);
  pointer-events: none;
}

.om-retail-flow-image img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: contain;
  object-position: center center;
  background: #fff;
  transition: transform 220ms ease;
}

.om-retail-flow-image:hover img {
  transform: scale(1.018);
}

.om-retail-flow-image-catalog img {
  object-position: center top;
}

.om-retail-flow-image-pos img {
  object-position: center top;
  background: #f7f9ff;
}

.om-retail-flow-image-panel img {
  object-position: center top;
  background: #f7f9ff;
}

.om-retail-zoom-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(20,66,145,0.84);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(36,95,203,0.18);
}

.om-retail-zoom-badge::before {
  content: "+";
  font-size: 16px;
  line-height: 1;
}

.om-retail-page .om-resto-lightbox-close {
  background: rgba(79,146,255,0.1);
  color: var(--om-retail-dark);
}

.om-retail-page .om-resto-lightbox-close:hover {
  background: rgba(79,146,255,0.18);
}

.om-retail-page #om-resto-lightbox-image {
  background: linear-gradient(180deg, #f5f9ff 0%, #ffffff 100%);
}

.om-retail-page #om-resto-lightbox-caption {
  color: var(--om-retail-dark);
}

.om-retail-scene-store,
.om-retail-scene-variants,
.om-retail-scene-panel {
  padding: 18px;
}

.om-retail-scene-header {
  height: 18px;
  width: 68%;
  border-radius: 999px;
  background: rgba(79,146,255,0.18);
  margin-bottom: 16px;
}

.om-retail-scene-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.om-retail-scene-products span,
.om-retail-panel-metrics i {
  display: block;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(19,53,111,0.08);
  box-shadow: 0 16px 26px rgba(36,95,203,0.06);
}

.om-retail-scene-products span { height: 112px; }
.om-retail-scene-products span:nth-child(1) { background: linear-gradient(180deg, #eff5ff, #dce8ff); }
.om-retail-scene-products span:nth-child(2) { background: linear-gradient(180deg, #f3f8ff, #e1ebff); }
.om-retail-scene-products span:nth-child(3) { background: linear-gradient(180deg, #edf4ff, #dae5ff); }

.om-retail-scene-line,
.om-retail-panel-list em {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: rgba(79,146,255,0.16);
}

.om-retail-scene-line { width: 56%; }
.om-retail-scene-line.is-long { width: 78%; margin-bottom: 10px; }

.om-retail-chip-row,
.om-retail-size-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.om-retail-chip-row span,
.om-retail-size-row span {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(19,53,111,0.08);
  color: var(--om-retail-dark);
  font-weight: 700;
}

.om-retail-swatch-row {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.om-retail-swatch-row b {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: block;
  box-shadow: inset 0 0 0 4px rgba(255,255,255,0.42), 0 10px 18px rgba(36,95,203,0.14);
}

.om-retail-swatch-row b:nth-child(1) { background: #1f1f23; }
.om-retail-swatch-row b:nth-child(2) { background: #7aa3ff; }
.om-retail-swatch-row b:nth-child(3) { background: #d8b27b; }
.om-retail-swatch-row b:nth-child(4) { background: #f0d8d8; }

.om-retail-panel-top {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.om-retail-panel-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(79,146,255,0.55);
}

.om-retail-panel-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.om-retail-panel-metrics i { height: 90px; }

.om-retail-panel-list {
  display: grid;
  gap: 12px;
}

.om-retail-panel-list em:nth-child(1) { width: 84%; }
.om-retail-panel-list em:nth-child(2) { width: 66%; }
.om-retail-panel-list em:nth-child(3) { width: 72%; }

.om-retail-system-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.om-retail-system-copy h2 {
  margin: 14px 0 14px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.om-retail-check-card {
  min-height: 78px;
  padding: 0 24px 0 64px;
  display: flex;
  align-items: center;
  position: relative;
  font-size: 18px;
  font-weight: 800;
  color: var(--om-retail-dark);
}

.om-retail-check-card::before {
  content: "✓";
  position: absolute;
  left: 24px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(79,146,255,0.14);
  color: var(--om-retail-primary);
  font-weight: 900;
}

.om-retail-ready-card-main {
  background: linear-gradient(180deg, #f7faff 0%, #edf4ff 100%);
}

.om-retail-ready-card-main h2 {
  margin: 18px 0 16px;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.om-retail-cta-card {
  padding: 42px 44px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, #14356f 0%, #1c4a98 50%, #3f86f5 100%);
  color: rgba(255,255,255,0.94);
  overflow: hidden;
  position: relative;
}

.om-retail-cta-card::before {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.16), rgba(255,255,255,0) 70%);
}

.om-retail-cta-card h2,
.om-retail-cta-card p,
.om-retail-cta-card .om-chip-light { position: relative; z-index: 1; }

.om-retail-cta-card h2 {
  margin: 16px 0 16px;
  color: #fff;
  font-size: clamp(36px, 4vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.om-retail-cta-actions {
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1100px) {
  .om-retail-hero-grid,
  .om-retail-system-grid,
  .om-retail-cta-card,
  .om-retail-ready-grid {
    grid-template-columns: 1fr;
  }

  .om-retail-flow-grid,
  .om-retail-check-grid {
    grid-template-columns: 1fr 1fr;
  }

  .om-retail-visual { min-height: 560px; }
}

@media (max-width: 780px) {
  .om-retail-hero { padding: 34px 0 44px; }
  .om-retail-visual { min-height: 420px; }
  .om-retail-window { inset: 40px 0 76px; }
  .om-retail-browser-top { grid-template-columns: 1fr; }
  .om-retail-product-grid,
  .om-retail-flow-grid,
  .om-retail-check-grid,
  .om-retail-ready-grid { grid-template-columns: 1fr; }
  .om-retail-product-grid { gap: 12px; }
  .om-retail-floating-variants {
    left: 8px;
    top: 10px;
  }
  .om-retail-floating-wholesale {
    right: 8px;
    bottom: 8px;
  }
  .om-retail-cta-card { padding: 32px 24px; }
}


/* Omega Membresías */
.om-memb-page {
  background: linear-gradient(180deg, #f3fcf8 0%, #f9fdfb 100%);
}

.om-memb-page .om-section-head h2,
.om-memb-page h1,
.om-memb-page h2,
.om-memb-page h3,
.om-memb-page strong,
.om-memb-page b {
  color: #10392c;
}

.om-memb-page .om-chip {
  background: rgba(45, 197, 124, 0.14);
  color: #106545;
}

.om-memb-btn-primary,
.om-memb-page .om-btn-primary {
  background: linear-gradient(135deg, #2dc57c, #138d63);
  color: #fff;
  box-shadow: 0 16px 32px rgba(19, 141, 99, 0.22);
}

.om-memb-btn-secondary,
.om-memb-page .om-btn-secondary {
  background: rgba(255,255,255,0.92);
  border-color: rgba(19, 141, 99, 0.18);
  color: #10392c;
}

.om-memb-btn-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.24);
}

.om-memb-btn-demo {
  background: linear-gradient(135deg, rgba(35, 190, 117, 0.82), rgba(19, 141, 99, 0.92));
  color: #fff;
  border-color: rgba(255,255,255,0.12);
}

.om-memb-hero {
  position: relative;
  padding: 58px 0 42px;
  background: linear-gradient(180deg, #ebfbf3 0%, #f6fdf9 100%);
  overflow: hidden;
}

.om-memb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 14% 18%, rgba(126, 232, 179, 0.26), transparent 32%),
              radial-gradient(circle at 84% 22%, rgba(28, 184, 120, 0.20), transparent 34%),
              linear-gradient(180deg, rgba(255,255,255,0.25) 0%, rgba(242,252,247,0.76) 100%);
}

.om-memb-bullets li::before {
  color: #2dc57c;
}

.om-memb-badges span {
  background: rgba(255,255,255,0.84);
  border-color: rgba(19, 141, 99, 0.18);
  color: #14553f;
}

.om-memb-glow {
  background: radial-gradient(circle, rgba(49,180,116,0.34) 0%, rgba(49,180,116,0.08) 54%, rgba(49,180,116,0) 74%);
}

.om-memb-window-main {
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(241,251,245,0.94));
  border-color: rgba(19, 141, 99, 0.12);
}

.om-memb-window-bar {
  background: linear-gradient(90deg, rgba(24,166,109,0.94), rgba(48,195,121,0.94));
}

.om-memb-dashboard-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.om-memb-dashboard-head strong {
  display: block;
  font-size: 22px;
  color: #10392c;
}

.om-memb-dashboard-head p {
  margin: 6px 0 0;
  color: #497160;
  font-size: 14px;
}

.om-memb-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(19, 141, 99, 0.12);
  color: #106545;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  border: 1px solid rgba(19, 141, 99, 0.14);
}

.om-memb-pill-soft {
  background: rgba(45, 197, 124, 0.10);
}

.om-memb-pill-alert {
  background: rgba(255, 199, 94, 0.18);
  color: #8a5c00;
  border-color: rgba(255, 199, 94, 0.28);
}

.om-memb-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.om-memb-mini-stat {
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f4fbf7);
  border: 1px solid rgba(19, 141, 99, 0.12);
  box-shadow: 0 14px 28px rgba(16, 57, 44, 0.06);
}

.om-memb-mini-stat span {
  display: block;
  font-size: 13px;
  color: #5b786b;
  margin-bottom: 6px;
}

.om-memb-mini-stat strong {
  font-size: 28px;
  color: #10392c;
}

.om-memb-client-list {
  display: grid;
  gap: 12px;
}

.om-memb-client-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(19, 141, 99, 0.10);
}

.om-memb-client-row strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.om-memb-client-row span {
  color: #5e7a6f;
  font-size: 13px;
}

.om-memb-floating {
  border-color: rgba(19, 141, 99, 0.14);
  background: rgba(255,255,255,0.94);
}

.om-memb-floating-checkin {
  left: -14px;
  bottom: 18px;
  width: min(320px, 56vw);
}

.om-memb-floating-renewal {
  top: 112px;
  right: -18px;
  background: linear-gradient(135deg, rgba(18, 122, 83, 0.92), rgba(44, 186, 116, 0.92));
  color: #fff;
}

.om-memb-floating-renewal span {
  color: rgba(255,255,255,0.84);
}

.om-memb-floating-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.om-memb-floating-top span {
  color: #4f7263;
  font-size: 13px;
}

.om-memb-checkin-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(19, 141, 99, 0.10);
  font-size: 14px;
}

.om-memb-checkin-line:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.om-memb-checkin-line span {
  color: #5b786b;
}

.om-memb-section-soft {
  background: linear-gradient(180deg, #f8fffb 0%, #f2fbf7 100%);
}

.om-memb-flow-card,
.om-memb-check-card,
.om-memb-ready-card {
  border-color: rgba(19, 141, 99, 0.10);
  box-shadow: 0 18px 42px rgba(16, 57, 44, 0.06);
}

.om-memb-flow-visual {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 18px;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff, #f3fbf7);
  border: 1px solid rgba(19, 141, 99, 0.10);
  min-height: 250px;
}

.om-memb-flow-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #106545;
  font-weight: 800;
}

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

.om-memb-plan-card {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(19, 141, 99, 0.10);
}

.om-memb-plan-card strong,
.om-memb-profile-card strong,
.om-memb-history-list strong {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
}

.om-memb-plan-card span,
.om-memb-profile-card span,
.om-memb-history-list span,
.om-memb-profile-card small {
  color: #5f7b70;
  font-size: 13px;
}

.om-memb-plan-card-wide {
  grid-column: 1 / -1;
}

.om-memb-profile-card {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(19, 141, 99, 0.10);
}

.om-memb-progress {
  margin: 14px 0 10px;
  height: 12px;
  border-radius: 999px;
  background: rgba(19, 141, 99, 0.10);
  overflow: hidden;
}

.om-memb-progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2dc57c, #138d63);
}

.om-memb-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.om-memb-tag-row span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(19, 141, 99, 0.10);
  color: #106545;
  font-size: 12px;
  font-weight: 700;
}

.om-memb-history-list {
  display: grid;
  gap: 12px;
}

.om-memb-history-list > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(19, 141, 99, 0.10);
}

.om-memb-check-grid .om-resto-check-card::before {
  color: #2dc57c;
}

.om-memb-ready-card-main {
  background: linear-gradient(180deg, rgba(45, 197, 124, 0.10), rgba(255,255,255,0.96));
}

.om-memb-cta-card {
  background: linear-gradient(135deg, #0d5e41, #138d63 55%, #31b474);
}

.om-memb-cta-actions .om-btn {
  min-width: 260px;
}

@media (max-width: 980px) {
  .om-memb-stat-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .om-memb-floating-checkin,
  .om-memb-floating-renewal {
    position: static;
    width: 100%;
  }

  .om-memb-cta-actions .om-btn {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .om-memb-stat-strip,
  .om-memb-plan-grid {
    grid-template-columns: 1fr;
  }

  .om-memb-dashboard-head,
  .om-memb-client-row,
  .om-memb-history-list > div {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* =========================
   Responsive polish 1.5.0
========================= */
.om-main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.om-header-cta {
  display: flex;
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .om-site-header {
    padding-top: 12px;
  }

  .om-header-bar {
    gap: 14px;
  }

  .om-brand img {
    width: 190px;
  }

  .om-main-nav,
  .om-header-cta {
    display: none;
  }

  .om-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    border: 1px solid rgba(11, 31, 58, 0.08);
    background: rgba(255, 255, 255, 0.9);
  }

  .om-mobile-menu {
    display: block;
  }

  .om-section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .om-hero-grid,
  .om-pricing-wrap,
  .om-trust-grid {
    grid-template-columns: 1fr;
  }

  .om-feature-grid,
  .om-vertical-grid,
  .om-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .om-faq-grid {
    grid-template-columns: 1fr;
  }

  .om-hero-metrics,
  .om-lower-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .om-shell {
    width: min(100% - 24px, 1180px);
  }

  .om-site-header {
    padding-top: 10px;
  }

  .om-header-bar {
    padding: 12px 14px;
    border-radius: 18px;
  }

  .om-brand img {
    width: 164px;
  }

  .om-section {
    padding: 58px 0;
  }

  .om-feature-grid,
  .om-vertical-grid,
  .om-steps-grid,
  .om-hero-metrics,
  .om-lower-cards,
  .om-trust-grid {
    grid-template-columns: 1fr;
  }

  .om-hero-actions,
  .om-resto-cta-actions,
  .om-retail-cta-actions,
  .om-memb-cta-actions {
    width: 100%;
  }

  .om-resto-cta-actions .om-btn,
  .om-retail-cta-actions .om-btn,
  .om-memb-cta-actions .om-btn {
    width: 100%;
  }

  .om-footer-inner {
    padding: 36px 18px 24px;
  }
}

@media (max-width: 640px) {
  .om-floating-card,
  .om-resto-floating,
  .om-retail-floating,
  .om-memb-floating {
    position: static;
    width: 100%;
    max-width: none;
    margin: 12px 0 0;
  }

  .om-resto-floating-pos,
  .om-resto-floating-online,
  .om-retail-floating-variants,
  .om-retail-floating-wholesale,
  .om-memb-floating-checkin,
  .om-memb-floating-renewal {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
  }

  .om-btn {
    width: 100%;
  }

  .om-hero-copy h1,
  .om-retail-copy h1,
  .om-resto-copy h1,
  .om-memb-page h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .om-hero-copy p,
  .om-retail-copy p,
  .om-resto-copy p,
  .om-section-head p {
    font-size: 16px;
  }

  .om-retail-flow-card,
  .om-resto-flow-card,
  .om-resto-check-card,
  .om-retail-check-card,
  .om-resto-ready-card,
  .om-retail-ready-card,
  .om-memb-ready-card {
    padding: 22px;
  }
}

@media (max-width: 480px) {
  .om-shell {
    width: min(100% - 18px, 1180px);
  }

  .om-header-bar {
    padding: 10px 12px;
  }

  .om-brand img {
    width: 148px;
  }
}


/* =========================
   Mobile menu + Resto overflow fix 1.5.1
========================= */
.om-mobile-menu[hidden] {
  display: none !important;
}

.om-menu-toggle {
  position: relative;
  flex-direction: column;
  gap: 5px;
}

.om-menu-toggle span {
  transition: transform .22s ease, opacity .18s ease, background .18s ease;
}

.om-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.om-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.om-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.om-resto-page {
  overflow-x: hidden;
}

.om-resto-hero-grid > *,
.om-resto-system-grid > *,
.om-resto-ready-grid > *,
.om-resto-cta-card > * {
  min-width: 0;
}

@media (max-width: 1100px) {
  .om-mobile-menu {
    overflow: hidden;
  }
}

@media (max-width: 640px) {
  .om-resto-page .om-shell {
    width: min(100% - 18px, 1180px);
  }

  .om-resto-copy {
    min-width: 0;
  }

  .om-resto-copy h1 {
    overflow-wrap: anywhere;
  }

  .om-resto-hero-grid {
    gap: 24px;
  }

  .om-resto-copy p,
  .om-resto-bullets,
  .om-resto-badges {
    max-width: 100%;
  }

  .om-resto-cta-card,
  .om-resto-flow-card,
  .om-resto-check-card,
  .om-resto-ready-card {
    overflow: hidden;
  }
}


.om-section-clients {
  background: linear-gradient(180deg, #ffffff 0%, #f6fbfe 100%);
}

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

.om-client-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(241,249,253,0.96));
  border: 1px solid rgba(110, 193, 228, 0.18);
  border-radius: 28px;
  box-shadow: var(--om-shadow-soft);
}

.om-client-card-top {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 20px;
  align-items: center;
}

.om-client-logo-wrap {
  display: grid;
  place-items: center;
  width: 132px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(110, 193, 228, 0.18);
  box-shadow: 0 14px 28px rgba(11,31,58,0.08);
  overflow: hidden;
}

.om-client-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.om-client-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(110, 193, 228, 0.16);
  color: var(--om-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.om-client-copy h3 {
  margin: 10px 0 4px;
  color: var(--om-dark);
  font-size: 32px;
  line-height: 1.05;
}

.om-client-category {
  margin: 0 0 8px;
  color: var(--om-primary-strong);
  font-weight: 700;
  font-size: 18px;
}

.om-client-domain {
  font-weight: 700;
  color: var(--om-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
  word-break: break-word;
}

.om-client-description {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
}

.om-client-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.om-client-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(110, 193, 228, 0.2);
  color: var(--om-dark);
  font-weight: 700;
  font-size: 14px;
}

.om-client-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
}

.om-client-card-placeholder {
  justify-content: center;
  background: linear-gradient(180deg, rgba(235,248,252,0.96), rgba(255,255,255,0.98));
}

.om-client-card-placeholder h3 {
  margin: 0;
  color: var(--om-dark);
  font-size: 34px;
  line-height: 1.08;
}

.om-client-card-placeholder p {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
}

@media (max-width: 980px) {
  .om-clients-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .om-client-card {
    padding: 22px;
    border-radius: 22px;
  }

  .om-client-card-top {
    grid-template-columns: 1fr;
  }

  .om-client-logo-wrap {
    width: 110px;
  }

  .om-client-copy h3,
  .om-client-card-placeholder h3 {
    font-size: 28px;
  }

  .om-client-actions .om-btn {
    width: 100%;
  }
}
