/* Ordero product landing — Toast-inspired IA, Ordero brand */
:root {
  --o-navy: #0b1b33;
  --o-navy-2: #12243f;
  --o-ink: #0f172a;
  --o-teal: #0d7a82;
  --o-teal-2: #12b3be;
  --o-teal-deep: #0a5c63;
  --o-paper: #ffffff;
  --o-fog: #f4f7fb;
  --o-muted: #475569;
  --o-mute-2: #94a3b8;
  --o-line: #e2e8f0;
  --o-dark: #070f1c;
  --o-card: #111c30;
  --o-font: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --o-radius: 24px;
  --o-radius-sm: 14px;
  --o-pill: 999px;
  --o-header: 72px;
  --o-gutter: clamp(16px, 4vw, 56px);
  --o-max: 1180px;
  --o-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --o-focus: 0 0 0 2px var(--o-paper), 0 0 0 4px var(--o-teal);
  --o-z-base: 10;
  --o-z-header: 50;
  --o-z-overlay: 60;
}

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

html {
  scroll-behavior: smooth;
}

html.js {
  scroll-padding-top: calc(var(--o-header) + 16px);
}

body.o-body {
  margin: 0;
  font-family: var(--o-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--o-ink);
  background: var(--o-paper);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

:focus-visible {
  outline: none;
  box-shadow: var(--o-focus);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.o-skip {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 80;
  background: var(--o-navy);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
}

.o-skip:focus {
  top: 12px;
}

.o-wrap {
  width: min(var(--o-max), calc(100% - var(--o-gutter) * 2));
  margin-inline: auto;
}

.o-kicker {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--o-teal);
}

.o-h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.o-lead {
  margin: 12px 0 0;
  color: var(--o-muted);
  font-size: 1.05rem;
  max-width: 52ch;
}

/* ---------- Header ---------- */
.site-header.o-header {
  position: sticky;
  top: 0;
  z-index: var(--o-z-header);
  height: var(--o-header);
  background: var(--o-paper);
  border-bottom: 1px solid var(--o-line);
}

.site-header.o-header.is-scrolled {
  border-bottom-color: var(--o-line);
  box-shadow: 0 8px 24px rgba(11, 27, 51, 0.06);
}

.o-header-inner {
  height: var(--o-header);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}

.o-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-height: 44px;
  flex-shrink: 0;
}

.o-brand img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
}

.o-brand-name {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
  color: var(--o-navy);
  text-transform: lowercase;
}

.site-nav.o-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.site-nav.o-nav > a:not(.o-btn) {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  text-decoration: none;
  color: var(--o-ink);
  font-weight: 600;
  font-size: 0.94rem;
  border-radius: 10px;
  transition: background 180ms var(--o-ease), color 180ms var(--o-ease);
}

.site-nav.o-nav > a:not(.o-btn):hover,
.site-nav.o-nav > a.is-active {
  background: var(--o-fog);
  color: var(--o-navy);
}

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

.o-nav-extra {
  display: none;
}

.o-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  min-width: 44px;
  padding: 0 20px;
  border-radius: var(--o-pill);
  border: 1.5px solid transparent;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: background 180ms var(--o-ease), color 180ms var(--o-ease), border-color 180ms var(--o-ease), transform 180ms var(--o-ease);
}

.o-btn:hover {
  transform: translateY(-1px);
}

.o-btn-ghost {
  background: #fff;
  color: var(--o-teal-deep);
  border-color: var(--o-teal);
}

.o-btn-ghost:hover {
  background: #f0fbfd;
}

.o-btn-primary {
  background: var(--o-teal-deep);
  color: #fff;
  border-color: var(--o-teal-deep);
}

.o-btn-primary:hover {
  background: #084850;
  border-color: #084850;
}

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

.o-btn-dark:hover {
  background: #163056;
}

.nav-toggle.o-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px;
}

.o-toggle span {
  display: block;
  height: 2px;
  background: var(--o-navy);
  margin: 6px 0;
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.o-hero {
  position: relative;
  isolation: isolate;
  color: #fff;
  background:
    radial-gradient(1200px 500px at 80% 20%, rgba(18, 179, 190, 0.28), transparent 55%),
    radial-gradient(900px 480px at 10% 80%, rgba(11, 27, 51, 0.4), transparent 50%),
    linear-gradient(160deg, #071222 0%, #0b1b33 48%, #0e2a3f 100%);
  border-bottom-left-radius: 36px;
  border-bottom-right-radius: 36px;
  overflow: hidden;
  min-height: min(88vh, 820px);
}

.o-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 15, 28, 0.72) 0%, rgba(7, 15, 28, 0.35) 48%, rgba(7, 15, 28, 0.15) 100%);
  z-index: 1;
}

.o-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 40px;
  align-items: center;
  padding: 48px 0 72px;
}

.o-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px 0 8px;
  border-radius: var(--o-pill);
  background: rgba(15, 23, 42, 0.55);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  cursor: pointer;
}

.o-badge svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.o-badge svg circle {
  fill: var(--o-teal-2);
}

.o-hero h1 {
  margin: 18px 0 0;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.o-mark {
  position: relative;
  display: inline-block;
}

.o-mark::after {
  content: "";
  position: absolute;
  inset: -6% -10%;
  border: 3px solid var(--o-teal-2);
  border-radius: 50% 42% 55% 48%;
  transform: rotate(-6deg);
  pointer-events: none;
}

.o-hero .o-sub {
  margin: 18px 0 0;
  max-width: 44ch;
  font-size: 1.12rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}

.o-email {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: 520px;
  padding: 6px;
  background: #fff;
  border-radius: var(--o-pill);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.o-email input {
  flex: 1;
  min-width: 0;
  min-height: 48px;
  border: 0;
  background: transparent;
  padding: 0 18px;
  color: var(--o-ink);
}

.o-email input::placeholder {
  color: #64748b;
}

.o-email input:focus {
  outline: none;
}

.o-email .o-btn {
  flex-shrink: 0;
  min-height: 48px;
  padding-inline: 22px;
}

.o-email:focus-within {
  box-shadow: var(--o-focus), 0 18px 40px rgba(0, 0, 0, 0.22);
}

.o-hero-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.o-hero-note a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.o-hero-note a:hover {
  text-decoration: underline;
}

.o-device {
  background: linear-gradient(180deg, #1a2b45, #0e1a2c);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 16px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.o-device-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #cbd5e1;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.o-device-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
}

.o-floor {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.o-table {
  min-height: 58px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #e2e8f0;
  background: #1e334f;
}

.o-table small {
  font-weight: 500;
  color: #94a3b8;
}

.o-table.is-busy {
  background: rgba(15, 154, 164, 0.28);
  color: #7ee7ef;
  border: 1px solid rgba(18, 179, 190, 0.45);
}

.o-table.is-open {
  background: #16253a;
  border: 1px dashed rgba(148, 163, 184, 0.35);
}

.o-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.o-kpi {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 10px;
}

.o-kpi span {
  display: block;
  font-size: 0.7rem;
  color: #94a3b8;
}

.o-kpi strong {
  font-size: 1.05rem;
  color: #fff;
}

/* ---------- Trust ---------- */
.o-trust {
  background: var(--o-dark);
  color: #cbd5e1;
  padding: 22px 0;
}

.o-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 28px;
}

.o-trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 120px;
}

.o-trust-item strong {
  color: #fff;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.o-trust-item span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
}

/* ---------- Platform ---------- */
.o-band-dark {
  background: var(--o-dark);
  color: #fff;
  padding: 88px 0;
}

.o-band-dark .o-lead {
  color: #94a3b8;
}

.o-seg {
  margin: 28px 0 32px;
  display: inline-flex;
  padding: 4px;
  background: #1a2436;
  border-radius: var(--o-pill);
}

.o-seg button {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--o-pill);
  background: transparent;
  color: #94a3b8;
  font-weight: 700;
  cursor: pointer;
}

.o-seg button[aria-selected="true"] {
  background: var(--o-teal-deep);
  color: #fff;
}

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

.o-card {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 18px;
  border-radius: 22px;
  background: var(--o-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 200ms var(--o-ease), border-color 200ms var(--o-ease);
}

.o-card:hover {
  transform: translateY(-4px);
  border-color: rgba(18, 179, 190, 0.45);
}

.o-card-visual {
  flex: 1;
  border-radius: 16px;
  background: linear-gradient(160deg, #1a314c, #0f2136);
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  min-height: 120px;
}

.o-chip {
  position: absolute;
  left: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(7, 15, 28, 0.82);
  font-size: 0.72rem;
  line-height: 1.35;
  color: #e2e8f0;
}

.o-card h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
}

.o-card p {
  margin: 0;
  color: #94a3b8;
  font-size: 0.9rem;
}

.o-vis-pos::before,
.o-vis-kds::before,
.o-vis-pay::before,
.o-vis-menu::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.o-vis-pos {
  background:
    radial-gradient(circle at 30% 40%, rgba(18, 179, 190, 0.35), transparent 40%),
    linear-gradient(160deg, #1a314c, #0f2136);
}

.o-vis-kds {
  background:
    repeating-linear-gradient(180deg, transparent 0 22px, rgba(255, 255, 255, 0.04) 22px 23px),
    linear-gradient(160deg, #1e2a22, #0f2136);
}

.o-vis-pay {
  background:
    radial-gradient(circle at 70% 30%, rgba(34, 197, 94, 0.28), transparent 36%),
    linear-gradient(160deg, #1a314c, #0f2136);
}

.o-vis-menu {
  background:
    radial-gradient(circle at 50% 80%, rgba(250, 204, 21, 0.18), transparent 40%),
    linear-gradient(160deg, #1a314c, #0f2136);
}

/* ---------- Insight ---------- */
.o-insight {
  padding: 88px 0;
  background: var(--o-fog);
}

.o-insight-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.o-steps {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.o-steps li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
}

.o-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--o-navy);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
}

.o-panel {
  background: #fff;
  border-radius: 24px;
  padding: 20px;
  border: 1px solid var(--o-line);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}

.o-ticket {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--o-line);
  font-size: 0.92rem;
}

.o-ticket:last-child {
  border-bottom: 0;
}

.o-tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: var(--o-pill);
  background: #ecfeff;
  color: var(--o-teal-deep);
  font-size: 0.75rem;
  font-weight: 700;
}

/* ---------- Mid-shift ---------- */
.o-shift {
  padding: 88px 0;
  background: var(--o-paper);
}

.o-shift-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  margin-top: 36px;
}

.o-acc {
  display: grid;
  gap: 8px;
}

.o-acc button {
  width: 100%;
  text-align: left;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--o-line);
  background: #fff;
  color: var(--o-ink);
  font-weight: 700;
  cursor: pointer;
}

.o-acc button[aria-expanded="true"] {
  background: var(--o-navy);
  color: #fff;
  border-color: var(--o-navy);
}

.o-acc-panel {
  padding: 8px 8px 20px;
  color: var(--o-muted);
  line-height: 1.65;
}

.o-acc-panel[hidden] {
  display: none;
}

html:not(.js) .o-acc-panel {
  display: block;
}

.o-shift-visual {
  border-radius: 24px;
  min-height: 360px;
  background:
    radial-gradient(600px 240px at 80% 20%, rgba(18, 179, 190, 0.2), transparent),
    linear-gradient(160deg, #0b1b33, #16324f);
  color: #fff;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.o-shift-visual h3 {
  margin: 0 0 8px;
  font-size: 1.6rem;
}

.o-shift-visual p {
  margin: 0;
  color: #cbd5e1;
  max-width: 42ch;
}

/* ---------- Pricing ---------- */
.o-price {
  padding: 88px 0;
  background: var(--o-fog);
}

.o-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.o-plan {
  background: #fff;
  border: 1px solid var(--o-line);
  border-radius: 22px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.o-plan.is-hot {
  border-color: var(--o-teal);
  box-shadow: 0 16px 40px rgba(15, 154, 164, 0.12);
  transform: translateY(-6px);
}

.o-plan h3 {
  margin: 0;
  font-size: 1.2rem;
}

.o-amount {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--o-navy);
}

.o-amount span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--o-muted);
}

.o-plan ul {
  margin: 8px 0 16px;
  padding: 0;
  list-style: none;
  color: var(--o-muted);
  font-size: 0.94rem;
}

.o-plan li {
  padding: 6px 0 6px 22px;
  position: relative;
}

.o-plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--o-teal);
}

.o-plan .o-btn {
  margin-top: auto;
}

.o-popular {
  align-self: flex-start;
  background: #ecfeff;
  color: var(--o-teal-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--o-pill);
}

.o-price-note {
  margin: 18px 0 0;
  color: var(--o-muted);
  font-size: 0.9rem;
}

/* ---------- Types ---------- */
.o-types {
  padding: 88px 0;
  background: var(--o-dark);
  color: #fff;
}

.o-types .o-lead {
  color: #94a3b8;
}

.o-type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.o-type {
  min-height: 88px;
  padding: 18px;
  border-radius: 16px;
  background: var(--o-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: border-color 180ms var(--o-ease), transform 180ms var(--o-ease);
}

.o-type:hover {
  border-color: var(--o-teal);
  transform: translateY(-2px);
}

/* ---------- CTA ---------- */
.o-cta {
  padding: 88px 0;
  background: var(--o-navy);
  color: #fff;
}

.o-cta-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.o-cta .o-lead,
.o-cta .o-hero-note {
  color: #cbd5e1;
}

.o-cta .o-email {
  margin-top: 0;
}

/* ---------- Footer ---------- */
.site-footer.o-footer {
  background: #050b14;
  color: #94a3b8;
  padding: 48px 0 28px;
}

.o-foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}

.o-foot-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  margin-bottom: 12px;
}

.o-foot-brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.o-footer h4 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.o-footer a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  min-height: 32px;
  padding: 4px 0;
}

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

.o-copy {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
}

.o-copy a {
  display: inline;
  min-height: auto;
}

/* ---------- Reveal ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: o-reveal-fallback 0.4s var(--o-ease) 0.7s forwards;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
  animation: none;
  transition: opacity 0.55s var(--o-ease), transform 0.55s var(--o-ease);
  transition-delay: var(--d, 0ms);
}

@keyframes o-reveal-fallback {
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .o-hero-grid,
  .o-insight-grid,
  .o-shift-grid,
  .o-cta-box,
  .o-foot-grid {
    grid-template-columns: 1fr;
  }

  .o-products,
  .o-type-grid {
    grid-template-columns: 1fr 1fr;
  }

  .o-price-grid {
    grid-template-columns: 1fr;
  }

  .o-plan.is-hot {
    transform: none;
  }
}

@media (max-width: 820px) {
  .o-header-inner {
    display: flex;
    justify-content: space-between;
  }

  .nav-toggle.o-toggle {
    display: block;
  }

  .site-nav.o-nav {
    position: fixed;
    inset: var(--o-header) 12px auto 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--o-line);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    z-index: var(--o-z-overlay);
  }

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

  .o-nav-actions {
    display: none;
  }

  .o-nav-extra {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--o-line);
  }

  .o-hero-grid {
    padding: 32px 0 56px;
  }

  .o-email {
    flex-direction: column;
    border-radius: 22px;
    align-items: stretch;
  }

  .o-email .o-btn {
    width: 100%;
  }

  .o-products,
  .o-type-grid,
  .o-kpis,
  .o-floor {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .o-trust-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .o-hero {
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .js .reveal,
  .o-card,
  .o-btn,
  .o-type {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .o-mark::after {
    transform: none;
  }
}
