/* ==========================================================================
   Star Logics — main stylesheet
   ========================================================================== */

:root {
  /* Brand */
  --brand-800: #460165;
  --brand-700: #58017E;
  --brand-600: #7406A8;
  --brand-500: #930BD6;
  --brand-400: #B04CE8;
  --brand-300: #CE8BF5;
  --brand-100: #F1E4FB;
  --brand-50: #F9F3FE;

  /* Neutrals */
  --ink-950: #0D0617;
  --ink-900: #160B24;
  --ink-800: #22142F;
  --text: #1A1325;
  --text-2: #595066;
  --text-3: #8C8599;
  --line: #E9E4F0;
  --bg: #FFFFFF;
  --bg-soft: #F8F6FB;

  --success: #16A34A;
  --success-bg: #E8F7EE;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;

  --shadow-sm: 0 1px 2px rgba(22, 11, 36, .06), 0 1px 1px rgba(22, 11, 36, .04);
  --shadow: 0 16px 36px -16px rgba(22, 11, 36, .22);
  --shadow-lg: 0 40px 80px -30px rgba(20, 2, 40, .6);

  --font-head: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --header-h: 76px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-head);
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--ink-900);
}

p {
  margin: 0;
}

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

:focus-visible {
  outline: 3px solid var(--brand-400);
  outline-offset: 3px;
  border-radius: 6px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 10px;
  background: #fff;
  color: var(--brand-700);
  font-weight: 600;
  transition: top .2s;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-family: var(--font-head);
  font-size: .96rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s, background-color .2s, border-color .2s, color .2s;
}

.btn .icon {
  width: 18px;
  height: 18px;
}

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

.btn-lg {
  padding: 15px 26px;
  font-size: 1rem;
}

.btn-sm {
  padding: 10px 16px;
  font-size: .9rem;
  border-radius: 10px;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  box-shadow: 0 10px 24px -10px rgba(147, 11, 214, .75);
}

.btn-primary:hover {
  box-shadow: 0 16px 32px -12px rgba(147, 11, 214, .85);
}

.btn-ghost-light {
  color: #fff;
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .22);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, .12);
}

.btn-outline {
  color: var(--brand-700);
  background: #fff;
  border-color: var(--line);
}

.btn-outline:hover {
  border-color: var(--brand-300);
}

.btn-white {
  color: var(--brand-700);
  background: #fff;
}

.btn-white:hover {
  box-shadow: 0 12px 28px -12px rgba(0, 0, 0, .45);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  color: #fff;
  border-bottom: 1px solid transparent;
  transition: background-color .3s, border-color .3s, backdrop-filter .3s;
}

.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(13, 6, 23, .86);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-color: rgba(255, 255, 255, .08);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.brand-mark {
  width: 38px;
  height: 38px;
}

.brand-text {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -.02em;
}

.brand-text span {
  font-weight: 600;
  color: var(--brand-300);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.nav-links {
  display: flex;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 8px 13px;
  border-radius: 9px;
  font-size: .94rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .72);
  transition: color .2s, background-color .2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 11px;
  background: rgba(255, 255, 255, .05);
  color: #fff;
  cursor: pointer;
}

.nav-toggle .icon {
  width: 22px;
  height: 22px;
}

.nav-toggle .icon-close,
.menu-open .nav-toggle .icon-open {
  display: none;
}

.menu-open .nav-toggle .icon-close {
  display: block;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: calc(var(--header-h) + 72px);
  background: var(--ink-950);
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 20%, transparent 75%);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero-glow.g1 {
  width: 560px;
  height: 560px;
  top: -180px;
  right: -140px;
  background: rgba(147, 11, 214, .5);
}

.hero-glow.g2 {
  width: 440px;
  height: 440px;
  bottom: 0;
  left: -200px;
  background: rgba(88, 1, 126, .55);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 100%;
  gap: 10px;
  padding: 5px 16px 5px 5px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  font-size: .86rem;
  color: rgba(255, 255, 255, .82);
}

.eyebrow-tag {
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  font-size: .75rem;
  font-weight: 600;
  color: #fff;
}

.hero h1 {
  margin: 24px 0 20px;
  font-size: clamp(2.35rem, 5vw, 3.85rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.035em;
  color: #fff;
}

.grad {
  background: linear-gradient(90deg, #E2B6FF, var(--brand-400) 55%, #F3E3FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 560px;
  font-size: 1.14rem;
  color: rgba(255, 255, 255, .7);
}

.hero-lead strong {
  font-weight: 600;
  color: #fff;
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  font-size: .93rem;
  color: rgba(255, 255, 255, .75);
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-points .icon {
  width: 18px;
  height: 18px;
  color: var(--brand-300);
}

/* Product mockup */
.hero-visual {
  position: relative;
  padding: 28px 8px 44px 20px;
}

.mock {
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, .1);
  transform: perspective(1800px) rotateY(-7deg) rotateX(3deg);
  transform-origin: left center;
}

.mock-top {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 16px;
  background: #F6F3FA;
  border-bottom: 1px solid var(--line);
}

.mock-top i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #F87171;
}

.mock-top i:nth-child(2) {
  background: #FBBF24;
}

.mock-top i:nth-child(3) {
  background: #34D399;
}

.mock-top p {
  margin-left: 10px;
  font-size: .76rem;
  font-weight: 500;
  color: var(--text-3);
}

.mock-body {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.mock-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.kpi {
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.kpi small,
.kpi em {
  display: block;
  font-size: .68rem;
  font-style: normal;
  color: var(--text-3);
}

.kpi strong {
  display: block;
  margin: 2px 0 1px;
  font-family: var(--font-head);
  font-size: 1.02rem;
  white-space: nowrap;
  color: var(--ink-900);
}

.up {
  color: var(--success) !important;
  font-weight: 600;
}

.mock-chart {
  padding: 13px 14px 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .76rem;
  font-weight: 600;
  color: var(--text-2);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--brand-50);
  font-size: .66rem;
  font-weight: 600;
  color: var(--brand-600);
}

.chip-live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
}

.bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 104px;
  margin-top: 12px;
}

.bars i {
  flex: 1;
  height: var(--h);
  border-radius: 6px 6px 3px 3px;
  background: linear-gradient(180deg, var(--brand-300), var(--brand-100));
}

.bars i.hi {
  background: linear-gradient(180deg, var(--brand-500), var(--brand-700));
}

.bar-labels {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.bar-labels span {
  flex: 1;
  text-align: center;
  font-size: .62rem;
  color: var(--text-3);
}

.mock-list {
  display: grid;
  gap: 7px;
}

.tx {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: 10px;
  background: var(--bg-soft);
}

.tx-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--brand-600);
}

.tx-icon .icon {
  width: 15px;
  height: 15px;
}

.tx div {
  flex: 1;
  min-width: 0;
}

.tx b {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  color: var(--ink-900);
}

.tx small {
  display: block;
  font-size: .65rem;
  color: var(--text-3);
}

.tx .amt {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  white-space: nowrap;
}

.st {
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--success-bg);
  font-size: .62rem;
  font-weight: 600;
  color: var(--success);
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px 9px 9px;
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  box-shadow: 0 22px 44px -18px rgba(0, 0, 0, .55);
  animation: float 6s ease-in-out infinite;
}

.float-card b {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink-900);
}

.float-card small {
  display: block;
  font-size: .7rem;
  color: var(--text-3);
}

.fc-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--brand-50);
  color: var(--brand-600);
}

.fc-icon .icon {
  width: 18px;
  height: 18px;
}

.fc-icon.ok {
  background: var(--success-bg);
  color: var(--success);
}

.fc-1 {
  top: 0;
  right: -6px;
}

.fc-2 {
  bottom: 0;
  left: -8px;
  animation-delay: -3s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 36px;
  margin-top: 72px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.strip-label {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
}

.hero-strip ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 36px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-strip li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
}

.hero-strip .icon {
  color: var(--brand-300);
}

/* ---------- Sections ---------- */
.section {
  padding-block: clamp(72px, 10vw, 116px);
}

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

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head > p {
  margin-top: 16px;
  font-size: 1.07rem;
  color: var(--text-2);
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-500);
}

.label::before {
  content: "";
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.label-light {
  color: var(--brand-300);
}

.h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -.03em;
}

.lead {
  margin-top: 20px;
  font-size: 1.14rem;
  font-weight: 500;
  color: var(--text);
}

.mv-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--brand-50);
  color: var(--brand-600);
}

.mv-icon .icon {
  width: 23px;
  height: 23px;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-copy > p:not(.lead) {
  margin-top: 16px;
  color: var(--text-2);
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 32px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.facts div {
  padding: 16px 18px;
  background: #fff;
}

.facts dt {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-3);
}

.facts dd {
  margin: 4px 0 0;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink-900);
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mv-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
}

.mv-card h3 {
  margin: 18px 0 8px;
  font-size: 1.18rem;
}

.mv-card p {
  font-size: .95rem;
  color: var(--text-2);
}

.mv-dark {
  grid-column: 1 / -1;
  padding: 36px;
  border-color: transparent;
  background: radial-gradient(130% 150% at 100% 0%, var(--brand-500) 0%, var(--brand-800) 45%, var(--ink-900) 100%);
  color: #fff;
}

.mv-dark h3 {
  font-size: 1.5rem;
  color: #fff;
}

.mv-dark p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .8);
}

.mv-dark .mv-icon {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

/* ---------- Solutions ---------- */
.flagship-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-700));
}

.product-card:hover,
.service-card:hover,
.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-100);
  box-shadow: var(--shadow);
}

.product-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  color: #fff;
  box-shadow: 0 12px 24px -12px rgba(147, 11, 214, .75);
}

.product-icon .icon {
  width: 26px;
  height: 26px;
}

.tag {
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--brand-50);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-600);
}

.product-card h3 {
  margin: 24px 0 10px;
  font-size: 1.6rem;
}

.product-card > p {
  color: var(--text-2);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .94rem;
  font-weight: 500;
}

.check-list li::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--brand-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237406A8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 11px no-repeat;
}

.product-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  margin-top: auto;
  padding-top: 30px;
}

.link-arrow,
.link-muted {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
}

.link-arrow {
  color: var(--brand-600);
}

.link-muted {
  font-size: .9rem;
  color: var(--text-3);
}

.link-muted:hover {
  color: var(--brand-600);
}

.link-arrow .icon,
.link-muted .icon {
  width: 17px;
  height: 17px;
  transition: transform .2s;
}

.link-arrow:hover .icon {
  transform: translateX(4px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.service-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}

.service-card h3 {
  margin: 20px 0 8px;
  font-size: 1.18rem;
}

.service-card p {
  font-size: .95rem;
  color: var(--text-2);
}

/* ---------- Restozay spotlight ---------- */
.rz {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.rz::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -220px;
  left: -240px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(147, 11, 214, .09), transparent 65%);
}

.rz-grid {
  display: grid;
  grid-template-columns: .95fr 1.25fr;
  gap: 56px;
  align-items: center;
}

.rz-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 4px 0 22px;
}

.rz-logo {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  color: #fff;
  box-shadow: 0 12px 24px -12px rgba(147, 11, 214, .75);
}

.rz-logo .icon {
  width: 25px;
  height: 25px;
}

.rz-name {
  font-family: var(--font-head);
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--ink-900);
}

.rz-by {
  display: block;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--text-3);
}

.rz-copy .lead {
  font-weight: 400;
  color: var(--text-2);
}

.rz-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 30px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.rz-stats div {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  padding: 16px 12px;
  background: #fff;
  text-align: center;
}

.rz-stats dd {
  margin: 0;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--brand-600);
}

.rz-stats dt {
  margin-top: 4px;
  font-size: .74rem;
  line-height: 1.35;
  color: var(--text-2);
}

.rz-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.rz-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.rz-feature {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}

.rz-feature:hover {
  transform: translateY(-3px);
  border-color: var(--brand-100);
  box-shadow: var(--shadow);
}

.rz-feature .mv-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
}

.rz-feature .mv-icon .icon {
  width: 20px;
  height: 20px;
}

.rz-feature h3 {
  margin: 14px 0 4px;
  font-size: .98rem;
}

.rz-feature p {
  font-size: .86rem;
  line-height: 1.5;
  color: var(--text-2);
}

.rz-extras {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px 28px;
  align-items: center;
  margin-top: 48px;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
}

.rz-extras h3 {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
}

.rz-extras ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rz-extras li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: .84rem;
  font-weight: 500;
}

.rz-extras li .icon {
  width: 15px;
  height: 15px;
  color: var(--brand-600);
}

.text-link {
  font-weight: 600;
  color: var(--brand-600);
  text-decoration: underline;
  text-decoration-color: var(--brand-300);
  text-underline-offset: 3px;
}

.text-link:hover {
  text-decoration-color: currentColor;
}

/* ---------- Payments ---------- */
.section-dark {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink-950);
  color: #fff;
}

.section-dark::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -240px;
  right: -220px;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(147, 11, 214, .38), transparent 65%);
}

.section-dark .h2 {
  color: #fff;
}

.section-dark .lead {
  font-weight: 400;
  color: rgba(255, 255, 255, .7);
}

.pay-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.pay-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 24px;
  margin-top: 36px;
}

.pay-point {
  display: flex;
  gap: 14px;
}

.pp-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  color: var(--brand-300);
}

.pp-icon .icon {
  width: 19px;
  height: 19px;
}

.pay-point h3 {
  margin-bottom: 3px;
  font-size: 1rem;
  color: #fff;
}

.pay-point p {
  font-size: .92rem;
  color: rgba(255, 255, 255, .6);
}

.pay-cta {
  margin-top: 40px;
}

.pay-visual {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 20px 0 44px;
}

.pay-device {
  width: 100%;
  max-width: 380px;
  padding: 22px;
  border-radius: 28px;
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow-lg), 0 0 0 10px rgba(255, 255, 255, .05);
}

.pd-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--ink-900);
}

.pd-amount {
  margin-top: 16px;
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-800));
  color: #fff;
}

.pd-amount small {
  display: block;
  font-size: .78rem;
  opacity: .75;
}

.pd-amount strong {
  display: block;
  margin-top: 2px;
  font-family: var(--font-head);
  font-size: 2rem;
  letter-spacing: -.02em;
}

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

.pm {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 11px 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: .74rem;
  font-weight: 600;
  color: var(--text-2);
}

.pm.active {
  border-color: var(--brand-500);
  background: var(--brand-50);
  color: var(--brand-600);
}

.pd-lines {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  font-size: .82rem;
  color: var(--text-2);
}

.pd-lines div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.pd-lines .total {
  padding-top: 10px;
  border-top: 1px dashed var(--line);
  font-weight: 700;
  color: var(--ink-900);
}

.pd-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 12px;
  border-radius: 14px;
  background: var(--success-bg);
}

.ok-ring {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--success);
  color: #fff;
}

.ok-ring .icon {
  width: 18px;
  height: 18px;
  stroke-width: 3;
}

.pd-success b {
  display: block;
  font-size: .85rem;
  color: #0F5132;
}

.pd-success small {
  display: block;
  font-size: .72rem;
  color: #3B7A57;
}

.pay-float {
  bottom: 0;
  right: 0;
}

/* ---------- Industries ---------- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.industry-card {
  padding: 28px;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s, background-color .3s;
}

.industry-card:hover {
  transform: translateY(-4px);
  border-color: var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.ind-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--brand-600);
  box-shadow: var(--shadow-sm);
}

.ind-icon .icon {
  width: 24px;
  height: 24px;
}

.industry-card h3 {
  margin: 20px 0 8px;
  font-size: 1.14rem;
}

.industry-card p {
  font-size: .94rem;
  color: var(--text-2);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.tags li {
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: .74rem;
  font-weight: 500;
  color: var(--text-2);
}

/* ---------- Why us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: .9fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.why-intro {
  position: sticky;
  top: calc(var(--header-h) + 32px);
}

.why-intro p {
  margin: 16px 0 28px;
  font-size: 1.05rem;
  color: var(--text-2);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.feature h3 {
  margin: 16px 0 6px;
  font-size: 1.08rem;
}

.feature p {
  font-size: .94rem;
  color: var(--text-2);
}

.process {
  margin-top: 96px;
}

.process-title {
  margin-bottom: 40px;
  text-align: center;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  position: relative;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 49px;
  right: -21px;
  width: 22px;
  height: 2px;
  background: var(--brand-300);
}

.step-no {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
}

.steps h4 {
  margin: 16px 0 6px;
  font-size: 1.08rem;
}

.steps p {
  font-size: .93rem;
  color: var(--text-2);
}

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
}

.testi-card {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
}

.quote-mark {
  height: 40px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--brand-400);
}

.testi-card blockquote {
  flex: 1;
  margin: 12px 0 28px;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.65;
  color: var(--text);
}

.testi-card figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.testi-card figcaption b {
  display: block;
  font-family: var(--font-head);
  color: var(--ink-900);
}

.testi-card figcaption small {
  font-size: .88rem;
  color: var(--text-3);
}

.avatar {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-400), var(--brand-700));
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
}

.avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.team-card {
  padding: 36px 24px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}

.team-avatar {
  width: 108px;
  height: 108px;
  margin: 0 auto 20px;
  font-size: 1.75rem;
  box-shadow: 0 0 0 6px var(--brand-50);
}

.team-card h3 {
  font-size: 1.15rem;
}

.team-card p {
  margin-top: 4px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--brand-600);
}

.social-btn {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text-2);
  transition: background-color .2s, border-color .2s, color .2s;
}

.social-btn .icon {
  width: 17px;
  height: 17px;
}

.social-btn:hover {
  border-color: var(--brand-600);
  background: var(--brand-600);
  color: #fff;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 32px;
  align-items: start;
}

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

.info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform .2s var(--ease), border-color .2s, box-shadow .2s;
}

.info-card:hover {
  transform: translateX(4px);
  border-color: var(--brand-300);
  box-shadow: var(--shadow-sm);
}

.info-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--brand-50);
  color: var(--brand-600);
}

.info-card small {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-3);
}

.info-card b {
  display: block;
  margin-top: 1px;
  font-weight: 600;
  color: var(--ink-900);
}

.map {
  height: 240px;
  margin-top: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
}

.map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
}

.contact-form h3 {
  font-size: 1.4rem;
}

.form-note {
  margin-top: 6px;
  font-size: .95rem;
  color: var(--text-2);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink-900);
}

.field .opt {
  font-weight: 400;
  color: var(--text-3);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font-size: .96rem;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #ABA5B6;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field select {
  padding-right: 42px;
  -webkit-appearance: none;
  appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23595066' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") right 14px center / 18px no-repeat;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand-500);
  box-shadow: 0 0 0 4px rgba(147, 11, 214, .12);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.form-status {
  min-height: 1.4em;
  margin-top: 14px;
  font-size: .92rem;
  color: var(--success);
}

/* ---------- Footer ---------- */
.site-footer {
  padding-top: 64px;
  background: var(--ink-950);
  color: rgba(255, 255, 255, .62);
}

.footer-cta {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px 32px;
  overflow: hidden;
  padding: 44px 48px;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--brand-500), var(--brand-700) 60%, var(--brand-800));
}

.footer-cta::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -80px;
  top: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .2), transparent 70%);
}

.footer-cta h2 {
  font-size: clamp(1.45rem, 3vw, 2.05rem);
  font-weight: 800;
  color: #fff;
}

.footer-cta p {
  margin-top: 6px;
  color: rgba(255, 255, 255, .82);
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding: 64px 0 48px;
}

.site-footer h4 {
  margin-bottom: 18px;
  font-size: .95rem;
  color: #fff;
}

.site-footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: .94rem;
}

.site-footer ul a {
  transition: color .2s;
}

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

.footer-brand p {
  max-width: 340px;
  margin: 18px 0 22px;
  font-size: .94rem;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  background: rgba(255, 255, 255, .05);
  color: #fff;
  transition: background-color .2s, border-color .2s;
}

.footer-social a:hover {
  border-color: var(--brand-500);
  background: var(--brand-600);
}

.footer-social .icon {
  width: 18px;
  height: 18px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact .icon {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--brand-300);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  padding: 24px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .87rem;
}

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  color: #fff;
  box-shadow: 0 12px 28px -10px rgba(88, 1, 126, .7);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s, visibility .3s, transform .3s var(--ease);
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

/* ---------- Scroll reveal ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--delay, 0ms);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1024px) {
  .nav-toggle {
    display: grid;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    margin: 0;
    padding: 12px 24px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: var(--ink-950);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .25s, visibility .25s, transform .25s var(--ease);
  }

  .menu-open .nav-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-links {
    flex-direction: column;
  }

  .nav-links a {
    padding: 13px 14px;
    font-size: 1rem;
  }

  .nav-cta {
    padding: 14px;
    font-size: 1rem;
  }

  .hero-grid,
  .about-grid,
  .rz-grid,
  .pay-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .rz-grid {
    gap: 40px;
  }

  .hero-grid {
    gap: 40px;
  }

  .hero-visual {
    width: 100%;
    max-width: 600px;
    margin-inline: auto;
  }

  .why-grid,
  .about-grid,
  .pay-grid {
    gap: 48px;
  }

  .why-intro {
    position: static;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps li::after {
    display: none;
  }
}

@media (max-width: 820px) {

  .flagship-grid,
  .service-grid,
  .rz-extras {
    grid-template-columns: 1fr;
  }

  .rz-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .rz-extras h3:not(:first-child) {
    margin-top: 8px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-cta {
    padding: 36px 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .container {
    padding-inline: 18px;
  }

  .hero {
    padding-top: calc(var(--header-h) + 44px);
  }

  .eyebrow {
    gap: 8px;
    padding-right: 12px;
    font-size: .76rem;
  }

  .eyebrow-tag {
    font-size: .68rem;
  }

  .hero-actions .btn {
    flex: 1 1 100%;
  }

  .hero-visual {
    padding: 24px 0 44px;
  }

  .mock {
    transform: none;
  }

  .mock-kpis {
    grid-template-columns: repeat(2, 1fr);
  }

  .kpi:nth-child(3) {
    display: none;
  }

  .fc-1 {
    right: 4px;
  }

  .fc-2 {
    left: 4px;
    bottom: 0;
  }

  .hero-strip {
    margin-top: 48px;
  }

  .about-cards,
  .facts,
  .check-list,
  .pay-points,
  .industry-grid,
  .feature-grid,
  .steps,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    gap: 12px;
  }

  .team-card {
    padding: 24px 10px 20px;
  }

  .team-avatar {
    width: 76px;
    height: 76px;
    margin-bottom: 14px;
    font-size: 1.3rem;
    box-shadow: 0 0 0 5px var(--brand-50);
  }

  .team-card h3 {
    font-size: 1rem;
  }

  .team-card p {
    font-size: .82rem;
  }

  .social-btn {
    margin-top: 12px;
  }

  .mv-dark,
  .mv-card,
  .product-card,
  .testi-card,
  .contact-form {
    padding: 26px 22px;
  }

  .pay-float {
    display: none;
  }

  .rz-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .rz-features {
    grid-template-columns: 1fr;
  }

  .rz-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
  }

  .rz-feature h3 {
    margin-top: 0;
  }

  .rz-extras {
    padding: 22px 18px;
  }

  .rz-extras li {
    padding: 6px 10px;
    border-radius: 14px;
    font-size: .8rem;
  }

  .form-actions .btn,
  .footer-cta-actions .btn,
  .rz-actions .btn {
    flex: 1 1 100%;
  }

  .footer-cta {
    padding: 30px 22px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
