:root {
  --rabito-primary: #174f37;
  --rabito-primary-dark: #0d3b28;
  --rabito-primary-rgb: 23, 79, 55;
  --rabito-mint: #c9f2d2;
  --rabito-accent: #efaa44;
  --rabito-cream: #fffaf0;
  --rabito-surface: #ffffff;
  --rabito-surface-soft: #f4f8f4;
  --rabito-bg: #f8faf7;
  --rabito-ink: #14231c;
  --rabito-text: #53645b;
  --rabito-muted: #7c8a82;
  --rabito-border: #dfe9e2;
  --rabito-shadow: 0 24px 70px rgba(23, 79, 55, .11);
  --rabito-shadow-sm: 0 10px 30px rgba(23, 79, 55, .08);
  --rabito-radius: 22px;
  --rabito-radius-sm: 14px;
  --rabito-container: 1180px;
  --rabito-content: 790px;
  --rabito-header-height: 82px;
  --rabito-font: "Vazirmatn", Tahoma, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--rabito-header-height) + 22px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--rabito-ink);
  background: var(--rabito-bg);
  font-family: var(--rabito-font);
  font-size: 15px;
  line-height: 1.9;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: var(--rabito-primary);
  text-decoration: none;
}

a:hover {
  color: var(--rabito-primary-dark);
}

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

img {
  height: auto;
}

figure {
  margin: 0;
}

p {
  margin: 0 0 1.25em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 .65em;
  color: var(--rabito-ink);
  font-weight: 800;
  line-height: 1.45;
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.65rem, 3.4vw, 2.65rem);
}

h3 {
  font-size: 1.12rem;
}

ul,
ol {
  margin: 0 0 1.4em;
}

::selection {
  color: #fff;
  background: var(--rabito-primary);
}

.rabito-container {
  width: min(calc(100% - 40px), var(--rabito-container));
  margin-inline: auto;
}

.rabito-container--content {
  max-width: var(--rabito-content);
}

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

.screen-reader-text:focus {
  z-index: 99999;
  top: 12px;
  right: 12px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  clip: auto;
  color: #fff;
  border-radius: 10px;
  background: var(--rabito-primary);
}

:focus-visible {
  outline: 3px solid rgba(239, 170, 68, .65);
  outline-offset: 3px;
}

.rabito-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.site-main {
  min-height: 55vh;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--rabito-header-height);
  border-bottom: 1px solid rgba(223, 233, 226, .72);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: box-shadow .2s ease, background .2s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 10px 32px rgba(23, 79, 55, .09);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: 100%;
}

.site-branding {
  width: 180px;
  flex: 0 0 auto;
}

.custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.custom-logo,
.site-branding__image {
  display: block;
  width: 180px;
  max-width: 180px;
  height: 58px;
  object-fit: contain;
}

.main-navigation {
  min-width: 0;
}

.primary-menu,
.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-menu li,
.main-navigation li {
  position: relative;
}

.primary-menu a,
.main-navigation a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 12px;
  color: #304239;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: color .18s ease, background .18s ease;
}

.primary-menu a:hover,
.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
  color: var(--rabito-primary);
  background: rgba(201, 242, 210, .42);
}

.main-navigation .sub-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  min-width: 210px;
  padding: 10px;
  visibility: hidden;
  opacity: 0;
  border: 1px solid var(--rabito-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--rabito-shadow-sm);
  transform: translateY(8px);
  transition: .18s ease;
}

.main-navigation li:hover > .sub-menu,
.main-navigation li:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.header-login {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 7px 9px;
  color: var(--rabito-primary);
  font-size: 12px;
  font-weight: 700;
}

.header-login .rabito-icon {
  width: 19px;
  height: 19px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--rabito-primary);
  border: 1px solid var(--rabito-border);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  place-items: center;
}

.menu-toggle__close {
  display: none;
}

.site-header.nav-open .menu-toggle__open {
  display: none;
}

.site-header.nav-open .menu-toggle__close {
  display: block;
}

.rabito-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 11px 20px;
  color: #fff;
  border: 1px solid var(--rabito-primary);
  border-radius: 14px;
  background: var(--rabito-primary);
  box-shadow: 0 10px 24px rgba(23, 79, 55, .14);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, color .18s ease, background .18s ease;
}

.rabito-button:hover {
  color: #fff;
  background: var(--rabito-primary-dark);
  box-shadow: 0 14px 30px rgba(23, 79, 55, .2);
  transform: translateY(-2px);
}

.rabito-button--small {
  min-height: 42px;
  padding: 9px 16px;
  border-radius: 12px;
  font-size: 12px;
}

.rabito-button--large {
  min-height: 54px;
  padding: 14px 25px;
  font-size: 14px;
}

.rabito-button--ghost {
  color: var(--rabito-primary);
  border-color: #bed7c6;
  background: rgba(255, 255, 255, .65);
  box-shadow: none;
}

.rabito-button--ghost:hover {
  color: var(--rabito-primary-dark);
  border-color: var(--rabito-primary);
  background: #fff;
}

.rabito-button--light {
  color: var(--rabito-primary);
  border-color: #fff;
  background: #fff;
  box-shadow: none;
}

.rabito-button--light:hover {
  color: var(--rabito-primary);
  background: var(--rabito-mint);
}

.rabito-button--outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, .5);
  background: transparent;
  box-shadow: none;
}

.rabito-button--outline-light:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
}

.rabito-button--block {
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--rabito-primary);
  font-size: 12px;
  font-weight: 800;
}

.eyebrow::before {
  width: 24px;
  height: 3px;
  content: "";
  border-radius: 99px;
  background: var(--rabito-accent);
}

.eyebrow--light {
  color: var(--rabito-mint);
}

.hero-section {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 18%, rgba(201, 242, 210, .55), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f4f9f3 100%);
}

.hero-section::after {
  position: absolute;
  right: -5%;
  bottom: -260px;
  width: 720px;
  height: 420px;
  content: "";
  opacity: .45;
  border-radius: 50%;
  background: var(--rabito-mint);
  filter: blur(3px);
}

.hero-section__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr);
  align-items: center;
  gap: 70px;
  min-height: 690px;
  padding-block: 70px 85px;
}

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

.hero-copy h1 {
  max-width: 590px;
  margin-bottom: 20px;
  color: var(--rabito-primary-dark);
  letter-spacing: -.04em;
}

.hero-copy > p {
  max-width: 580px;
  margin-bottom: 28px;
  color: var(--rabito-text);
  font-size: 16px;
  line-height: 2.05;
}

.hero-copy__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-copy__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 0;
  margin: 0;
  color: #4f6158;
  list-style: none;
  font-size: 12px;
  font-weight: 700;
}

.hero-copy__checks li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-copy__checks .rabito-icon {
  width: 17px;
  height: 17px;
  padding: 3px;
  color: #fff;
  border-radius: 50%;
  background: #2f8a5b;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 540px;
  place-items: center;
}

.hero-visual__halo {
  position: absolute;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(23, 79, 55, .09);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, .86) 0 48%, transparent 49%),
    repeating-radial-gradient(circle at center, rgba(23, 79, 55, .05) 0 2px, transparent 2px 32px);
}

.phone-shell {
  position: relative;
  z-index: 2;
  width: 310px;
  padding: 13px;
  border: 7px solid #20372c;
  border-radius: 43px;
  background: #20372c;
  box-shadow: 0 36px 72px rgba(16, 50, 34, .26);
  transform: rotate(-2deg);
}

.phone-shell::after {
  position: absolute;
  top: 112px;
  left: -10px;
  width: 3px;
  height: 48px;
  content: "";
  border-radius: 4px;
  background: #15241d;
}

.phone-shell__speaker {
  position: absolute;
  z-index: 5;
  top: 8px;
  left: 50%;
  width: 68px;
  height: 18px;
  border-radius: 0 0 12px 12px;
  background: #20372c;
  transform: translateX(-50%);
}

.menu-preview {
  overflow: hidden;
  padding: 30px 15px 15px;
  color: var(--rabito-ink);
  border-radius: 30px;
  background: #fbf8ef;
  font-family: var(--rabito-font);
  text-align: right;
}

.menu-preview__top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
}

.menu-preview__top img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.menu-preview__top div {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.menu-preview__top strong {
  color: var(--rabito-primary);
  font-size: 12px;
}

.menu-preview__top span {
  color: #7c897f;
  font-size: 8px;
}

.menu-preview__signal {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #36a56b;
  box-shadow: 0 0 0 3px #d8f2e1;
}

.menu-preview__search {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 35px;
  padding: 8px 10px;
  color: #8a948d;
  border: 1px solid #e2e7df;
  border-radius: 10px;
  background: #fff;
  font-size: 8px;
}

.menu-preview__search .rabito-icon {
  width: 13px;
  height: 13px;
}

.menu-preview__categories {
  display: flex;
  gap: 5px;
  padding: 12px 0 10px;
  overflow: hidden;
}

.menu-preview__categories span {
  display: inline-flex;
  min-width: 43px;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  color: #647169;
  border: 1px solid #e5e9e3;
  border-radius: 99px;
  background: #fff;
  font-size: 7px;
  white-space: nowrap;
}

.menu-preview__categories .is-active {
  color: #fff;
  border-color: var(--rabito-primary);
  background: var(--rabito-primary);
}

.menu-preview__items {
  display: grid;
  gap: 8px;
}

.menu-preview__items article {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 72px;
  padding: 9px;
  border: 1px solid #e5e9e3;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(23, 79, 55, .04);
}

.menu-preview__thumb {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  color: #855717;
  border-radius: 11px;
  background: #f6c36d;
  place-items: center;
}

.menu-preview__thumb--cake {
  color: var(--rabito-primary);
  background: var(--rabito-mint);
}

.menu-preview__thumb .rabito-icon {
  width: 21px;
  height: 21px;
}

.menu-preview__items article > div {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.menu-preview__items strong {
  color: #24362d;
  font-size: 9px;
}

.menu-preview__items small {
  color: #89938d;
  font-size: 6.5px;
}

.menu-preview__items b {
  margin-top: 5px;
  color: var(--rabito-primary);
  font-size: 7px;
}

.menu-preview__items button {
  display: grid;
  width: 27px;
  height: 27px;
  padding: 0;
  color: #fff;
  border: 0;
  border-radius: 8px;
  background: var(--rabito-primary);
  font-size: 18px;
  line-height: 1;
  place-items: center;
}

.menu-preview__cart {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 46px;
  padding: 8px 11px;
  margin-top: 12px;
  color: #fff;
  border-radius: 12px;
  background: var(--rabito-primary);
  font-size: 7px;
}

.menu-preview__cart span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.menu-preview__cart span b {
  display: grid;
  width: 18px;
  height: 18px;
  color: var(--rabito-primary);
  border-radius: 50%;
  background: var(--rabito-mint);
  place-items: center;
}

.menu-preview__cart > strong {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 7px;
}

.menu-preview__cart .rabito-icon {
  width: 11px;
  height: 11px;
}

.floating-chip {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 176px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 15px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--rabito-shadow-sm);
  backdrop-filter: blur(10px);
}

.floating-chip > .rabito-icon {
  width: 38px;
  height: 38px;
  padding: 9px;
  color: var(--rabito-primary);
  border-radius: 11px;
  background: var(--rabito-mint);
}

.floating-chip span {
  display: flex;
  flex-direction: column;
}

.floating-chip b {
  font-size: 10px;
}

.floating-chip small {
  color: var(--rabito-muted);
  font-size: 8px;
}

.floating-chip--order {
  right: -8px;
  bottom: 84px;
}

.floating-chip--speed {
  top: 92px;
  left: -4px;
}

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -34px;
}

.trust-strip .rabito-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 18px;
  border: 1px solid var(--rabito-border);
  border-radius: 20px;
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--rabito-shadow-sm);
}

.trust-strip .rabito-container > div {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  padding: 3px 18px;
  border-left: 1px solid var(--rabito-border);
}

.trust-strip .rabito-container > div:last-child {
  border-left: 0;
}

.trust-strip .rabito-icon {
  width: 38px;
  height: 38px;
  padding: 9px;
  color: var(--rabito-primary);
  border-radius: 12px;
  background: #eaf8ed;
}

.trust-strip span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  color: var(--rabito-muted);
  font-size: 9px;
}

.trust-strip strong {
  color: var(--rabito-ink);
  font-size: 11px;
}

.section {
  padding-block: 105px;
}

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

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

.section-heading h2 {
  margin-bottom: 12px;
  color: var(--rabito-primary-dark);
}

.section-heading p {
  margin: 0;
  color: var(--rabito-text);
  font-size: 14px;
}

.section-heading--row {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  text-align: right;
}

.section-heading--row h2 {
  margin-bottom: 0;
}

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

.feature-card {
  position: relative;
  min-height: 220px;
  padding: 24px 21px;
  overflow: hidden;
  border: 1px solid var(--rabito-border);
  border-radius: var(--rabito-radius);
  background: #fff;
  box-shadow: 0 8px 25px rgba(23, 79, 55, .045);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.feature-card::after {
  position: absolute;
  top: -38px;
  left: -38px;
  width: 95px;
  height: 95px;
  content: "";
  opacity: 0;
  border-radius: 50%;
  background: var(--rabito-mint);
  transition: opacity .2s ease;
}

.feature-card:hover {
  border-color: #bcdcc5;
  box-shadow: 0 16px 36px rgba(23, 79, 55, .09);
  transform: translateY(-4px);
}

.feature-card:hover::after {
  opacity: .35;
}

.feature-card__icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 19px;
  color: var(--rabito-primary);
  border-radius: 15px;
  background: #e8f8eb;
  place-items: center;
}

.feature-card:nth-child(4n+2) .feature-card__icon,
.feature-card:nth-child(4n+3) .feature-card__icon {
  color: #99600c;
  background: #fff0d7;
}

.feature-card h3 {
  margin-bottom: 8px;
  color: var(--rabito-primary-dark);
  font-size: 14px;
}

.feature-card p {
  margin: 0;
  color: var(--rabito-text);
  font-size: 11px;
  line-height: 2;
}

.section-link {
  margin-top: 30px;
  text-align: center;
}

.section-link a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--rabito-primary);
  font-size: 13px;
  font-weight: 800;
}

.section-link .rabito-icon,
.text-link .rabito-icon {
  width: 18px;
  height: 18px;
  transition: transform .18s ease;
}

.section-link a:hover .rabito-icon,
.text-link:hover .rabito-icon {
  transform: translateX(-4px);
}

.section--showcase {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--rabito-primary);
}

.section--showcase::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .12;
  background-image: radial-gradient(circle, var(--rabito-mint) 1.4px, transparent 1.4px);
  background-size: 28px 28px;
}

.showcase-grid {
  position: relative;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: 70px;
}

.showcase-copy h2 {
  color: #fff;
}

.showcase-copy > p {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 28px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #40534a;
  font-size: 12px;
  font-weight: 700;
}

.check-list .rabito-icon {
  width: 20px;
  height: 20px;
  padding: 4px;
  color: #fff;
  border-radius: 50%;
  background: #2f8a5b;
}

.check-list--light li {
  color: rgba(255, 255, 255, .84);
}

.check-list--light .rabito-icon {
  color: var(--rabito-primary);
  background: var(--rabito-mint);
}

.dashboard-mockup {
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, .13);
  border-radius: 20px;
  background: #f6f8f5;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .22);
  transform: perspective(1200px) rotateY(5deg);
}

.dashboard-mockup__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 39px;
  padding: 0 13px;
  color: #79857e;
  border-bottom: 1px solid #e3e9e4;
  background: #fff;
  font-size: 7px;
}

.dashboard-mockup__bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef9b8c;
}

.dashboard-mockup__bar i:nth-child(2) {
  background: #f3ca68;
}

.dashboard-mockup__bar i:nth-child(3) {
  background: #75c98e;
}

.dashboard-mockup__bar span {
  margin-right: auto;
  margin-left: auto;
}

.dashboard-mockup__body {
  display: grid;
  grid-template-columns: 126px 1fr;
  min-height: 330px;
}

.dashboard-mockup aside {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 20px 13px;
  color: rgba(255, 255, 255, .7);
  background: #123e2b;
  font-size: 7px;
}

.dashboard-mockup aside img {
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
  border-radius: 12px;
}

.dashboard-mockup aside b,
.dashboard-mockup aside span {
  padding: 8px 10px;
  border-radius: 8px;
}

.dashboard-mockup aside b {
  color: #fff;
  background: rgba(201, 242, 210, .15);
}

.dashboard-mockup__content {
  padding: 26px 22px;
}

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

.dashboard-mockup__stats span {
  display: flex;
  min-height: 70px;
  padding: 12px;
  flex-direction: column;
  border: 1px solid #e1e8e2;
  border-radius: 11px;
  background: #fff;
}

.dashboard-mockup__stats small {
  color: #819087;
  font-size: 7px;
}

.dashboard-mockup__stats b {
  margin-top: 7px;
  color: var(--rabito-primary);
  font-size: 16px;
}

.dashboard-mockup__chart {
  margin-top: 14px;
  padding: 15px;
  color: #2e8a59;
  border: 1px solid #e1e8e2;
  border-radius: 12px;
  background: #fff;
}

.dashboard-mockup__chart > span {
  color: #4e6056;
  font-size: 8px;
  font-weight: 700;
}

.dashboard-mockup__chart svg {
  width: 100%;
  height: 170px;
}

.section--steps {
  background: #fff;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: steps;
}

.steps-grid article {
  position: relative;
  min-height: 220px;
  padding: 30px 28px;
  overflow: hidden;
  border: 1px solid var(--rabito-border);
  border-radius: var(--rabito-radius);
  background: var(--rabito-bg);
}

.steps-grid article::after {
  position: absolute;
  top: 38px;
  right: calc(100% - 24px);
  width: 60px;
  height: 1px;
  content: "";
  opacity: .4;
  background: var(--rabito-primary);
}

.steps-grid article:last-child::after {
  display: none;
}

.steps-grid article > span {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 25px;
  color: #fff;
  border-radius: 15px;
  background: var(--rabito-primary);
  box-shadow: 0 10px 24px rgba(23, 79, 55, .17);
  font-weight: 800;
  place-items: center;
}

.steps-grid h3 {
  color: var(--rabito-primary-dark);
  font-size: 15px;
}

.steps-grid p {
  margin: 0;
  color: var(--rabito-text);
  font-size: 11px;
}

.section--demo {
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(201, 242, 210, .4), transparent 48%),
    var(--rabito-cream);
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
}

.demo-visual {
  position: relative;
  min-height: 480px;
}

.demo-visual::before {
  position: absolute;
  top: 20px;
  right: 40px;
  width: 360px;
  height: 360px;
  content: "";
  border-radius: 50%;
  background: var(--rabito-mint);
}

.demo-visual__card {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 90px;
  width: 310px;
  padding: 13px;
  border: 5px solid #20372c;
  border-radius: 38px;
  background: #20372c;
  box-shadow: var(--rabito-shadow);
  transform: rotate(4deg);
}

.menu-preview--compact {
  padding-top: 20px;
}

.demo-visual__qr {
  position: absolute;
  z-index: 3;
  right: 10px;
  bottom: 28px;
  display: flex;
  width: 134px;
  height: 150px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--rabito-primary);
  border: 8px solid #fff;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--rabito-shadow-sm);
  transform: rotate(-7deg);
}

.demo-visual__qr .rabito-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 7px;
}

.demo-visual__qr b {
  font-size: 11px;
}

.demo-visual__qr span {
  color: var(--rabito-muted);
  font-size: 8px;
}

.demo-copy h2 {
  color: var(--rabito-primary-dark);
}

.demo-copy > p {
  color: var(--rabito-text);
  font-size: 14px;
}

.demo-home-heading {
  margin-bottom: 34px;
}

.demo-home-heading .rabito-button {
  flex: 0 0 auto;
}

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

.demo-home-card {
  position: relative;
  min-width: 0;
  padding: 9px 9px 15px;
  color: var(--rabito-primary-dark);
  border: 1px solid rgba(23, 79, 55, .11);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(28, 53, 41, .08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.demo-home-card:hover {
  color: var(--rabito-primary-dark);
  border-color: rgba(23, 79, 55, .25);
  box-shadow: 0 20px 42px rgba(28, 53, 41, .14);
  transform: translateY(-7px);
}

.demo-home-card > span {
  display: grid;
  gap: 2px;
  padding: 13px 5px 0;
}

.demo-home-card > span small {
  color: var(--rabito-muted);
  font-size: 9px;
}

.demo-home-card > span strong {
  font-size: 13px;
}

.demo-home-card > .rabito-icon {
  position: absolute;
  bottom: 17px;
  left: 14px;
  width: 17px;
  height: 17px;
}

.rabito-demo-preview {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 238px;
  padding: 14px 11px 38px;
  flex-direction: column;
  gap: 8px;
  color: #26352e;
  border: 1px solid color-mix(in srgb, var(--demo-accent) 15%, transparent);
  border-radius: 17px;
  background:
    radial-gradient(circle at 85% 0, color-mix(in srgb, var(--demo-accent) 13%, transparent), transparent 34%),
    var(--demo-surface);
}

.rabito-demo-preview__top {
  display: flex;
  align-items: center;
  gap: 7px;
}

.rabito-demo-preview__top > i {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--demo-accent);
}

.rabito-demo-preview__top > span {
  display: grid;
  flex: 1;
  gap: 4px;
}

.rabito-demo-preview__top b,
.rabito-demo-preview__top small,
.rabito-demo-preview__hero strong,
.rabito-demo-preview__hero span,
.rabito-demo-preview__items b,
.rabito-demo-preview__items em {
  display: block;
  border-radius: 20px;
  background: currentColor;
  opacity: .18;
}

.rabito-demo-preview__top b {
  width: 48%;
  height: 4px;
  opacity: .55;
}

.rabito-demo-preview__top small {
  width: 68%;
  height: 3px;
}

.rabito-demo-preview__top > em {
  width: 16px;
  height: 16px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .4;
}

.rabito-demo-preview__hero {
  display: grid;
  min-height: 48px;
  padding: 12px;
  align-content: center;
  gap: 6px;
  color: #fff;
  border-radius: 13px;
  background: var(--demo-accent);
}

.rabito-demo-preview__hero strong {
  width: 44%;
  height: 5px;
  opacity: .9;
}

.rabito-demo-preview__hero span {
  width: 68%;
  height: 3px;
  opacity: .45;
}

.rabito-demo-preview__search {
  height: 22px;
  border: 1px solid color-mix(in srgb, var(--demo-accent) 13%, transparent);
  border-radius: 8px;
  background: color-mix(in srgb, #fff 80%, var(--demo-surface));
}

.rabito-demo-preview__chips {
  display: flex;
  gap: 4px;
}

.rabito-demo-preview__chips i {
  width: 34%;
  height: 14px;
  border-radius: 20px;
  background: color-mix(in srgb, var(--demo-accent) 12%, #fff);
}

.rabito-demo-preview__chips i:first-child {
  background: var(--demo-accent);
}

.rabito-demo-preview__items {
  display: grid;
  gap: 6px;
}

.rabito-demo-preview__items > span {
  display: grid;
  min-height: 46px;
  padding: 6px;
  grid-template-columns: 37px 1fr 10px;
  align-items: center;
  gap: 7px;
  border: 1px solid color-mix(in srgb, var(--demo-accent) 10%, transparent);
  border-radius: 10px;
  background: color-mix(in srgb, #fff 88%, var(--demo-surface));
  box-shadow: 0 5px 15px rgba(29, 43, 36, .045);
}

.rabito-demo-preview__items i {
  width: 37px;
  height: 34px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--demo-accent) 75%, #fff), var(--demo-accent));
}

.rabito-demo-preview__items b {
  width: 70%;
  height: 4px;
}

.rabito-demo-preview__items em {
  width: 10px;
  height: 10px;
  background: var(--demo-accent);
  opacity: 1;
}

.rabito-demo-preview__nav {
  position: absolute;
  right: 9px;
  bottom: 8px;
  left: 9px;
  display: flex;
  height: 25px;
  align-items: center;
  justify-content: space-around;
  border-radius: 9px;
  background: color-mix(in srgb, #fff 90%, var(--demo-surface));
  box-shadow: 0 3px 14px rgba(20, 36, 28, .08);
}

.rabito-demo-preview__nav i {
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .32;
}

.rabito-demo-preview--editorial {
  border-radius: 7px;
}

.rabito-demo-preview--editorial .rabito-demo-preview__hero,
.rabito-demo-preview--editorial .rabito-demo-preview__items > span {
  border-radius: 4px;
}

.rabito-demo-preview--midnight {
  color: #f5e8c9;
  background:
    radial-gradient(circle at 80% 0, rgba(216, 181, 106, .18), transparent 38%),
    #111816;
}

.rabito-demo-preview--midnight .rabito-demo-preview__search,
.rabito-demo-preview--midnight .rabito-demo-preview__items > span,
.rabito-demo-preview--midnight .rabito-demo-preview__nav {
  border-color: rgba(216, 181, 106, .18);
  background: #1a2421;
}

.rabito-demo-preview--midnight .rabito-demo-preview__chips i {
  background: #25322e;
}

.rabito-demo-preview--midnight .rabito-demo-preview__chips i:first-child {
  background: var(--demo-accent);
}

.rabito-demo-preview--vivid .rabito-demo-preview__hero {
  background: linear-gradient(135deg, #4f46e5, #ec4899);
}

.rabito-demo-preview--vivid .rabito-demo-preview__top > i {
  border-radius: 50%;
  background: linear-gradient(135deg, #4f46e5, #ec4899);
}

.rabito-demo-preview--classic {
  border-color: #d9cba9;
  background:
    linear-gradient(rgba(255, 255, 255, .34), rgba(255, 255, 255, .34)),
    #fbf3df;
  box-shadow: inset 0 0 0 4px rgba(88, 129, 94, .07);
}

.rabito-demo-preview--classic .rabito-demo-preview__hero {
  background: linear-gradient(135deg, #58815e, #8aa27d);
}

.page-hero--demo-gallery {
  padding-block: 90px 80px;
  text-align: center;
  background:
    radial-gradient(circle at 25% 15%, rgba(201, 242, 210, .78), transparent 30%),
    linear-gradient(145deg, #f8fbf7, #fff9ee);
}

.page-hero--demo-gallery h1 {
  max-width: 760px;
  margin-inline: auto;
}

.page-hero--demo-gallery p {
  max-width: 720px;
  margin-inline: auto;
}

.page-hero--demo-gallery .eyebrow {
  justify-content: center;
}

.demo-gallery-hero__meta {
  display: flex;
  margin-top: 28px;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.demo-gallery-hero__meta span {
  display: inline-flex;
  min-height: 38px;
  padding: 7px 12px;
  align-items: center;
  gap: 7px;
  color: var(--rabito-primary-dark);
  border: 1px solid rgba(23, 79, 55, .1);
  border-radius: 40px;
  background: rgba(255, 255, 255, .72);
  font-size: 10px;
  font-weight: 750;
}

.demo-gallery-hero__meta .rabito-icon {
  width: 17px;
  height: 17px;
  color: var(--rabito-primary);
}

.demo-gallery-section {
  background: #f6f8f5;
}

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

.demo-template-card {
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(23, 79, 55, .1);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(29, 54, 42, .08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.demo-template-card:hover {
  box-shadow: 0 22px 55px rgba(29, 54, 42, .13);
  transform: translateY(-5px);
}

.demo-template-card__preview {
  position: relative;
  display: block;
  padding: 18px 18px 0;
  background: linear-gradient(155deg, #eef4ee, #fbf8f1);
}

.demo-template-card__preview .rabito-demo-preview {
  min-height: 315px;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 15px 38px rgba(24, 45, 34, .16);
}

.demo-template-card__open {
  position: absolute;
  bottom: 16px;
  left: 31px;
  display: grid;
  width: 38px;
  height: 38px;
  color: #fff;
  border-radius: 50%;
  background: var(--rabito-primary);
  box-shadow: 0 8px 20px rgba(23, 79, 55, .24);
  opacity: 0;
  place-items: center;
  transform: translateY(7px);
  transition: opacity .2s ease, transform .2s ease;
}

.demo-template-card__preview:hover .demo-template-card__open {
  opacity: 1;
  transform: translateY(0);
}

.demo-template-card__open .rabito-icon {
  width: 18px;
  height: 18px;
}

.demo-template-card__body {
  padding: 22px;
}

.demo-template-card__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.demo-template-card__heading span {
  color: var(--rabito-muted);
  font-size: 9px;
}

.demo-template-card__heading h2 {
  margin: 3px 0 0;
  color: var(--rabito-primary-dark);
  font-size: 20px;
}

.demo-template-card__heading > i {
  width: 13px;
  height: 42px;
  flex: 0 0 auto;
  border: 4px solid color-mix(in srgb, var(--template-accent) 20%, #fff);
  border-radius: 20px;
  background: var(--template-accent);
}

.demo-template-card__body > p {
  min-height: 48px;
  margin: 12px 0 18px;
  color: var(--rabito-text);
  font-size: 11px;
}

.demo-template-card__actions {
  display: flex;
  padding-top: 15px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--rabito-border);
}

.demo-preview-switch {
  padding: 0;
  color: var(--rabito-primary);
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.demo-preview-switch.is-active {
  color: var(--rabito-accent-dark);
}

.demo-template-card__actions a {
  color: var(--rabito-muted);
  font-size: 10px;
  font-weight: 700;
}

.demo-live-section {
  background: #fff;
}

.demo-live-browser {
  overflow: hidden;
  border: 1px solid rgba(23, 79, 55, .14);
  border-radius: 26px;
  background: #edf3ed;
  box-shadow: 0 24px 75px rgba(25, 49, 37, .13);
}

.demo-live-browser__bar {
  display: grid;
  min-height: 58px;
  padding: 0 20px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--rabito-muted);
  border-bottom: 1px solid rgba(23, 79, 55, .1);
  background: #fff;
  font-size: 9px;
}

.demo-live-browser__bar > span {
  display: flex;
  gap: 6px;
}

.demo-live-browser__bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d9e4db;
}

.demo-live-browser__bar b {
  color: var(--rabito-primary-dark);
  font-size: 10px;
}

.demo-live-browser__bar em {
  justify-self: end;
  font-style: normal;
  direction: ltr;
}

.demo-live-browser__stage {
  display: grid;
  min-height: 760px;
  padding: 34px;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(201, 242, 210, .72), transparent 36%),
    linear-gradient(135deg, #eef4ee, #f9f6ee);
}

.demo-live-device {
  overflow: hidden;
  width: 390px;
  max-width: 100%;
  height: 690px;
  padding: 9px;
  border: 5px solid #1d2f27;
  border-radius: 42px;
  background: #1d2f27;
  box-shadow: 0 28px 65px rgba(15, 31, 23, .28);
}

.demo-live-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 29px;
  background: #fff;
}

.demo-live-placeholder {
  display: grid;
  width: min(100%, 680px);
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 55px;
}

.demo-live-placeholder strong {
  color: var(--rabito-primary-dark);
  font-size: 19px;
}

.demo-live-placeholder p {
  margin: 8px 0 0;
  color: var(--rabito-text);
}

.demo-gallery-cta {
  color: #fff;
  background: var(--rabito-primary);
}

.demo-gallery-cta h2,
.demo-gallery-cta p {
  color: #fff;
}

.page-hero--demo-single {
  padding-block: 65px;
  text-align: center;
  background: #f6f9f5;
}

.page-hero--demo-single .eyebrow {
  justify-content: center;
}

.page-hero--demo-single p {
  max-width: 620px;
  margin-inline: auto;
}

.demo-single-back {
  display: inline-flex;
  margin-bottom: 24px;
  align-items: center;
  gap: 6px;
  color: var(--rabito-primary);
  font-size: 10px;
  font-weight: 800;
}

.demo-single-back .rabito-icon {
  width: 15px;
  height: 15px;
  transform: rotate(180deg);
}

.demo-single-placeholder {
  display: grid;
  max-width: 850px;
  margin: 0 auto;
  grid-template-columns: 300px 1fr;
  align-items: center;
  gap: 70px;
}

.demo-single-placeholder h2 {
  color: var(--rabito-primary-dark);
}

.demo-single-placeholder p {
  color: var(--rabito-text);
}

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

.audience-grid article {
  min-height: 200px;
  padding: 25px 22px;
  border: 1px solid var(--rabito-border);
  border-radius: 20px;
  background: #fff;
  text-align: center;
  transition: transform .2s ease, border-color .2s ease;
}

.audience-grid article:hover {
  border-color: #bcdcc5;
  transform: translateY(-4px);
}

.audience-grid article > span {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 17px;
  border-radius: 17px;
  background: #eff8f0;
  font-size: 27px;
  place-items: center;
}

.audience-grid h3 {
  color: var(--rabito-primary-dark);
  font-size: 14px;
}

.audience-grid p {
  margin: 0;
  color: var(--rabito-text);
  font-size: 10px;
}

.section--pricing {
  position: relative;
  overflow: hidden;
  background: #f0f7f1;
}

.section--pricing::after {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 360px;
  height: 360px;
  content: "";
  opacity: .6;
  border-radius: 50%;
  background: var(--rabito-mint);
  filter: blur(1px);
}

.pricing-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 470px;
  align-items: center;
  gap: 90px;
}

.pricing-copy {
  max-width: 560px;
}

.pricing-copy h2 {
  color: var(--rabito-primary-dark);
}

.pricing-copy > p {
  color: var(--rabito-text);
}

.support-note {
  display: flex;
  max-width: 470px;
  align-items: center;
  gap: 13px;
  padding: 15px 17px;
  margin-top: 26px;
  border: 1px solid #cfe4d4;
  border-radius: 15px;
  background: rgba(255, 255, 255, .65);
}

.support-note > .rabito-icon {
  width: 41px;
  height: 41px;
  padding: 9px;
  color: var(--rabito-primary);
  border-radius: 12px;
  background: var(--rabito-mint);
}

.support-note span {
  display: flex;
  flex-direction: column;
}

.support-note b {
  color: var(--rabito-primary);
  font-size: 11px;
}

.support-note small {
  color: var(--rabito-muted);
  font-size: 9px;
}

.pricing-card {
  position: relative;
  padding: 34px;
  border: 1px solid #cbe1d1;
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--rabito-shadow);
}

.pricing-card__label {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 6px 10px;
  color: #85530b;
  border-radius: 99px;
  background: #fff0d5;
  font-size: 8px;
  font-weight: 800;
}

.pricing-card h3,
.pricing-card h2 {
  margin-bottom: 7px;
  color: var(--rabito-primary-dark);
}

.pricing-card__price {
  padding-bottom: 23px;
  margin: 20px 0 22px;
  color: var(--rabito-primary);
  border-bottom: 1px solid var(--rabito-border);
  font-size: clamp(1.25rem, 3vw, 1.85rem);
  font-weight: 900;
}

.pricing-card ul {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0 0 26px;
  list-style: none;
}

.pricing-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #43564c;
  font-size: 11px;
  font-weight: 700;
}

.pricing-card li .rabito-icon {
  width: 19px;
  height: 19px;
  padding: 4px;
  color: #fff;
  border-radius: 50%;
  background: #2e8a59;
}

.section--faq {
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  align-items: start;
  gap: 85px;
}

.faq-copy {
  position: sticky;
  top: calc(var(--rabito-header-height) + 30px);
}

.faq-copy h2 {
  color: var(--rabito-primary-dark);
}

.faq-copy p {
  color: var(--rabito-text);
  font-size: 12px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--rabito-border);
  border-radius: 15px;
  background: var(--rabito-bg);
  transition: border-color .18s ease, background .18s ease;
}

.faq-list details[open] {
  border-color: #bcdcc5;
  background: #fff;
  box-shadow: 0 8px 24px rgba(23, 79, 55, .05);
}

.faq-list summary {
  position: relative;
  padding: 18px 20px 18px 52px;
  color: #24382d;
  font-size: 12px;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  left: 19px;
  width: 24px;
  height: 24px;
  content: "+";
  color: var(--rabito-primary);
  border-radius: 8px;
  background: var(--rabito-mint);
  font-size: 17px;
  line-height: 24px;
  text-align: center;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding: 0 20px 18px;
  margin: 0;
  color: var(--rabito-text);
  font-size: 11px;
}

.section--blog {
  background: var(--rabito-surface-soft);
}

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

.post-card {
  overflow: hidden;
  border: 1px solid var(--rabito-border);
  border-radius: 20px;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}

.post-card:hover {
  box-shadow: var(--rabito-shadow-sm);
  transform: translateY(-4px);
}

.post-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #eaf4eb;
}

.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.post-card:hover .post-card__image img {
  transform: scale(1.035);
}

.post-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  color: var(--rabito-primary);
  background:
    radial-gradient(circle at 25% 20%, rgba(201, 242, 210, .9), transparent 40%),
    #eff7ef;
  place-items: center;
}

.post-card__placeholder .rabito-icon {
  width: 58px;
  height: 58px;
}

.post-card__body {
  padding: 22px;
}

.post-card__meta {
  margin-bottom: 8px;
  color: var(--rabito-muted);
  font-size: 9px;
}

.post-card h2 {
  margin-bottom: 8px;
  font-size: 14px;
}

.post-card h2 a {
  color: var(--rabito-primary-dark);
}

.post-card p {
  display: -webkit-box;
  margin-bottom: 14px;
  overflow: hidden;
  color: var(--rabito-text);
  font-size: 10px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.post-card__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
}

.post-card__more .rabito-icon {
  width: 15px;
  height: 15px;
}

.final-cta {
  padding: 70px 0;
  color: #fff;
  background:
    radial-gradient(circle at 12% 25%, rgba(201, 242, 210, .16), transparent 26%),
    var(--rabito-primary-dark);
}

.final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.final-cta__inner > div:first-child {
  max-width: 680px;
}

.final-cta span {
  color: var(--rabito-mint);
  font-size: 11px;
  font-weight: 800;
}

.final-cta h2 {
  margin: 6px 0 7px;
  color: #fff;
}

.final-cta p {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
}

.final-cta__actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.site-footer {
  color: rgba(255, 255, 255, .73);
  background: #0a2d1d;
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1.35fr .75fr .8fr 1.1fr;
  gap: 58px;
  padding-block: 70px 55px;
}

.site-footer__brand .custom-logo-link {
  padding: 8px;
  border-radius: 12px;
  background: #fff;
}

.site-footer__brand .custom-logo,
.site-footer__brand .site-footer__logo {
  width: 150px;
  height: auto;
}

.site-footer__brand > p {
  max-width: 280px;
  margin-top: 20px;
  font-size: 10px;
}

.site-footer__social {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.site-footer__social a {
  display: grid;
  width: 38px;
  height: 38px;
  color: var(--rabito-mint);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 11px;
  background: rgba(255, 255, 255, .05);
  font-size: 10px;
  font-weight: 800;
  place-items: center;
}

.site-footer__social a:hover {
  color: var(--rabito-primary-dark);
  border-color: var(--rabito-mint);
  background: var(--rabito-mint);
}

.site-footer__social .rabito-icon {
  width: 18px;
  height: 18px;
}

.site-footer__column h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 13px;
}

.site-footer__column ul,
.footer-menu {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer__column a,
.site-footer__column span {
  color: rgba(255, 255, 255, .68);
  font-size: 10px;
}

.site-footer__column a:hover {
  color: var(--rabito-mint);
}

.site-footer .footer-menu .sub-menu {
  display: none;
}

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

.footer-contact .rabito-icon {
  width: 16px;
  height: 16px;
  margin-top: 5px;
  color: var(--rabito-mint);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .09);
}

.site-footer__bottom .rabito-container {
  display: flex;
  min-height: 65px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .5);
  font-size: 9px;
}

.site-footer__bottom div div {
  display: flex;
  gap: 16px;
}

.site-footer__bottom a {
  color: rgba(255, 255, 255, .58);
  font-size: 9px;
}

.back-to-top {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 45px;
  height: 45px;
  padding: 0;
  visibility: hidden;
  color: #fff;
  opacity: 0;
  border: 0;
  border-radius: 14px;
  background: var(--rabito-primary);
  box-shadow: var(--rabito-shadow-sm);
  cursor: pointer;
  transform: translateY(10px);
  transition: .2s ease;
  place-items: center;
}

.back-to-top.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.back-to-top .rabito-icon {
  width: 20px;
  height: 20px;
}

.page-hero {
  position: relative;
  padding: 95px 0 85px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(201, 242, 210, .55), transparent 30%),
    #f1f7f1;
  text-align: center;
}

.page-hero::after {
  position: absolute;
  bottom: -70px;
  left: 15%;
  width: 160px;
  height: 160px;
  content: "";
  opacity: .5;
  border-radius: 50%;
  background: var(--rabito-mint);
}

.page-hero h1 {
  max-width: 880px;
  margin-inline: auto;
  color: var(--rabito-primary-dark);
}

.page-hero p,
.archive-description {
  max-width: 720px;
  margin: 0 auto;
  color: var(--rabito-text);
  font-size: 14px;
}

.page-hero--simple {
  padding-block: 75px;
}

.page-hero--features {
  text-align: right;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 80px;
}

.page-hero__grid h1,
.page-hero__grid p {
  margin-right: 0;
  margin-left: 0;
}

.page-hero__grid .rabito-button {
  margin-top: 20px;
}

.feature-orbit {
  position: relative;
  display: grid;
  min-height: 360px;
  place-items: center;
}

.feature-orbit::before,
.feature-orbit::after {
  position: absolute;
  content: "";
  border: 1px dashed rgba(23, 79, 55, .2);
  border-radius: 50%;
}

.feature-orbit::before {
  width: 330px;
  height: 330px;
}

.feature-orbit::after {
  width: 245px;
  height: 245px;
}

.feature-orbit > img {
  position: relative;
  z-index: 2;
  width: 150px;
  height: 150px;
  border-radius: 35px;
  box-shadow: var(--rabito-shadow);
}

.feature-orbit > span {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 54px;
  height: 54px;
  color: var(--rabito-primary);
  border: 5px solid #fff;
  border-radius: 17px;
  background: var(--rabito-mint);
  box-shadow: var(--rabito-shadow-sm);
  place-items: center;
}

.feature-orbit__one {
  top: 26px;
  right: 70px;
}

.feature-orbit__two {
  top: 80px;
  left: 23px;
}

.feature-orbit__three {
  right: 35px;
  bottom: 52px;
}

.feature-orbit__four {
  bottom: 16px;
  left: 98px;
}

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

.feature-detail-list {
  display: grid;
  gap: 110px;
}

.feature-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
}

.feature-detail--reverse > div:first-child {
  order: 2;
}

.feature-detail h2 {
  color: var(--rabito-primary-dark);
}

.feature-detail > div:first-child > p {
  color: var(--rabito-text);
  font-size: 13px;
}

.feature-detail__visual {
  display: grid;
  min-height: 380px;
  padding: 45px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .75), transparent 34%),
    var(--rabito-mint);
  place-items: center;
}

.feature-detail__visual--phone {
  overflow: hidden;
}

.phone-shell--small {
  width: 270px;
  transform: rotate(3deg);
}

.mini-dashboard {
  display: grid;
  width: 100%;
  gap: 12px;
}

.mini-dashboard > div,
.advanced-stack > span {
  display: grid;
  grid-template-columns: 45px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 15px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 9px 24px rgba(23, 79, 55, .06);
}

.mini-dashboard span,
.advanced-stack > span > .rabito-icon {
  display: grid;
  width: 45px;
  height: 45px;
  padding: 11px;
  color: var(--rabito-primary);
  border-radius: 13px;
  background: #dff4e4;
  place-items: center;
}

.mini-dashboard b,
.advanced-stack b {
  color: var(--rabito-primary-dark);
  font-size: 11px;
}

.mini-dashboard strong {
  color: var(--rabito-primary);
  font-size: 11px;
}

.advanced-stack {
  display: grid;
  width: 100%;
  gap: 12px;
}

.advanced-stack > span {
  grid-template-columns: 45px 1fr;
}

.advanced-stack b,
.advanced-stack small {
  grid-column: 2;
}

.advanced-stack small {
  margin-top: -10px;
  color: var(--rabito-muted);
  font-size: 8px;
}

.content-layout {
  padding-block: 70px 100px;
}

.entry-content {
  color: #33473c;
  font-size: 14px;
  line-height: 2.15;
}

.entry-content > * {
  max-width: var(--rabito-content);
  margin-inline: auto;
}

.entry-content > .alignwide {
  width: min(100%, var(--rabito-container));
  max-width: var(--rabito-container);
}

.entry-content > .alignfull,
.full-width-content > .alignfull {
  width: 100vw;
  max-width: none;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin-top: 1.8em;
  color: var(--rabito-primary-dark);
}

.entry-content a {
  text-decoration: underline;
  text-decoration-color: rgba(23, 79, 55, .35);
  text-underline-offset: 4px;
}

.entry-content blockquote {
  padding: 18px 22px;
  color: var(--rabito-primary-dark);
  border-right: 4px solid var(--rabito-primary);
  border-radius: 12px 0 0 12px;
  background: #eef7ef;
}

.entry-content table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}

.entry-content th,
.entry-content td {
  padding: 12px;
  border: 1px solid var(--rabito-border);
  text-align: right;
}

.entry-featured,
.single-post__featured {
  overflow: hidden;
  margin-bottom: 35px;
  border-radius: var(--rabito-radius);
}

.full-width-content {
  overflow: hidden;
}

.archive-layout {
  padding-block: 80px 110px;
}

.posts-grid--archive {
  margin-bottom: 45px;
}

.navigation.pagination {
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.page-numbers {
  display: grid;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  color: var(--rabito-primary);
  border: 1px solid var(--rabito-border);
  border-radius: 11px;
  background: #fff;
  place-items: center;
  font-size: 11px;
}

.page-numbers.current,
.page-numbers:hover {
  color: #fff;
  border-color: var(--rabito-primary);
  background: var(--rabito-primary);
}

.single-post__header {
  padding: 85px 0 150px;
  background:
    radial-gradient(circle at 15% 20%, rgba(201, 242, 210, .7), transparent 32%),
    #eff7ef;
  text-align: center;
}

.single-post__header h1 {
  color: var(--rabito-primary-dark);
}

.single-post__header > div > p {
  color: var(--rabito-text);
  font-size: 14px;
}

.single-post__meta {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 18px;
  color: var(--rabito-muted);
  font-size: 9px;
}

.single-post__meta a {
  color: var(--rabito-primary);
}

.single-post > .rabito-container {
  position: relative;
  padding-bottom: 100px;
}

.single-post__featured {
  margin-top: -90px;
  box-shadow: var(--rabito-shadow);
}

.single-post .entry-content {
  margin-top: 55px;
}

.single-post__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding-top: 25px;
  margin-top: 45px;
  border-top: 1px solid var(--rabito-border);
}

.single-post__tags a {
  padding: 6px 10px;
  border-radius: 9px;
  background: #eaf5eb;
  font-size: 9px;
}

.post-navigation-custom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 40px;
}

.post-navigation-custom a {
  display: flex;
  min-height: 64px;
  align-items: center;
  padding: 12px 16px;
  color: var(--rabito-primary);
  border: 1px solid var(--rabito-border);
  border-radius: 13px;
  background: #fff;
  font-size: 10px;
  font-weight: 700;
}

.post-navigation-custom div:last-child a {
  justify-content: flex-end;
  text-align: left;
}

.comments-area {
  padding-top: 45px;
  margin-top: 50px;
  border-top: 1px solid var(--rabito-border);
}

.comments-title,
.comment-reply-title {
  color: var(--rabito-primary-dark);
  font-size: 17px;
}

.comment-list {
  display: grid;
  gap: 14px;
  padding: 0;
  list-style: none;
}

.comment-list .comment-body {
  padding: 18px;
  border: 1px solid var(--rabito-border);
  border-radius: 14px;
  background: #fff;
}

.comment-meta {
  font-size: 9px;
}

.comment-content {
  margin-top: 12px;
  color: var(--rabito-text);
  font-size: 11px;
}

.comment-form {
  display: grid;
  gap: 13px;
}

.comment-form p {
  margin: 0;
}

.comment-form label {
  display: block;
  margin-bottom: 5px;
  font-size: 10px;
  font-weight: 700;
}

.comment-form input:not([type="checkbox"]),
.comment-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--rabito-border);
  border-radius: 11px;
  background: #fff;
}

.comment-form .submit {
  padding: 12px 20px;
  color: #fff;
  border: 0;
  border-radius: 12px;
  background: var(--rabito-primary);
  cursor: pointer;
}

.empty-state,
.not-found-page {
  text-align: center;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 65px 25px;
  border: 1px dashed #cbdcd0;
  border-radius: 20px;
  background: #fff;
}

.empty-state > span {
  display: grid;
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  color: var(--rabito-primary);
  border-radius: 20px;
  background: var(--rabito-mint);
  place-items: center;
}

.empty-state h2 {
  color: var(--rabito-primary-dark);
}

.empty-state p {
  color: var(--rabito-text);
  font-size: 11px;
}

.search-form {
  display: flex;
  max-width: 440px;
  margin: 20px auto;
}

.search-form label {
  flex: 1;
}

.search-field {
  width: 100%;
  height: 48px;
  padding: 10px 15px;
  border: 1px solid var(--rabito-border);
  border-radius: 0 12px 12px 0;
  background: #fff;
}

.search-submit {
  display: grid;
  width: 50px;
  height: 48px;
  padding: 0;
  color: #fff;
  border: 0;
  border-radius: 12px 0 0 12px;
  background: var(--rabito-primary);
  cursor: pointer;
  place-items: center;
}

.not-found-page {
  display: grid;
  min-height: 72vh;
  padding: 80px 0;
  place-items: center;
}

.not-found-page img {
  margin: 0 auto 8px;
  border-radius: 28px;
}

.not-found-page span {
  color: var(--rabito-accent);
  font-size: 21px;
  font-weight: 900;
}

.not-found-page h1 {
  color: var(--rabito-primary-dark);
}

.not-found-page p {
  color: var(--rabito-text);
}

.feature-detail-list + * {
  clear: both;
}

.pricing-page__grid {
  display: grid;
  grid-template-columns: 430px 1fr;
  align-items: start;
  gap: 70px;
}

.pricing-card--featured {
  position: sticky;
  top: calc(var(--rabito-header-height) + 25px);
}

.pricing-card__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.pricing-card__title h2 {
  margin-bottom: 4px;
  font-size: 21px;
}

.pricing-card__title p {
  margin: 0;
  color: var(--rabito-muted);
  font-size: 9px;
}

.pricing-card__title img {
  border-radius: 18px;
}

.pricing-card__note {
  margin: 14px 0 0;
  color: var(--rabito-muted);
  font-size: 8px;
  text-align: center;
}

.pricing-includes {
  padding-top: 16px;
}

.pricing-includes h2 {
  color: var(--rabito-primary-dark);
}

.pricing-includes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.pricing-includes__grid span {
  display: flex;
  min-height: 66px;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  color: #405349;
  border: 1px solid var(--rabito-border);
  border-radius: 13px;
  background: #fff;
  font-size: 10px;
  font-weight: 700;
}

.pricing-includes__grid .rabito-icon {
  width: 20px;
  height: 20px;
  padding: 4px;
  color: #fff;
  border-radius: 50%;
  background: #2e8a59;
}

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

.requirements-grid article {
  padding: 25px;
  border: 1px solid var(--rabito-border);
  border-radius: 18px;
  background: #fff;
}

.requirements-grid article > span {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--rabito-primary);
  border-radius: 14px;
  background: var(--rabito-mint);
  place-items: center;
}

.requirements-grid h3 {
  color: var(--rabito-primary-dark);
  font-size: 14px;
}

.requirements-grid p {
  margin: 0;
  color: var(--rabito-text);
  font-size: 10px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: start;
  gap: 55px;
}

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

.contact-card {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 80px;
  padding: 15px;
  color: var(--rabito-ink);
  border: 1px solid var(--rabito-border);
  border-radius: 16px;
  background: #fff;
  transition: transform .18s ease, border-color .18s ease;
}

a.contact-card:hover {
  color: var(--rabito-ink);
  border-color: #b9d8c2;
  transform: translateX(-3px);
}

.contact-card > span {
  display: grid;
  width: 45px;
  height: 45px;
  flex: 0 0 auto;
  color: var(--rabito-primary);
  border-radius: 13px;
  background: var(--rabito-mint);
  place-items: center;
}

.contact-card > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.contact-card small {
  color: var(--rabito-muted);
  font-size: 9px;
}

.contact-card b {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
}

.contact-help {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  margin-top: 12px;
  color: #fff;
  border-radius: 18px;
  background: var(--rabito-primary);
}

.contact-help img {
  border-radius: 20px;
}

.contact-help h2 {
  margin-bottom: 4px;
  color: #fff;
  font-size: 14px;
}

.contact-help p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 9px;
}

.contact-form-card {
  padding: 32px;
  border: 1px solid var(--rabito-border);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--rabito-shadow-sm);
}

.contact-form-card > h2 {
  margin-bottom: 5px;
  color: var(--rabito-primary-dark);
}

.contact-form-card > p {
  margin-bottom: 23px;
  color: var(--rabito-muted);
  font-size: 9px;
}

.contact-form {
  display: grid;
  gap: 15px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: #35483e;
  font-size: 10px;
  font-weight: 700;
}

.contact-form__label {
  display: inline;
  color: #35483e;
  font-style: normal;
}

.contact-form__label em {
  color: #bb3c3c;
  font-style: normal;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 11px 13px;
  color: var(--rabito-ink);
  border: 1px solid #d9e4dc;
  border-radius: 11px;
  background: #fbfcfb;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.contact-form input {
  height: 47px;
}

.contact-form textarea {
  min-height: 145px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #77b489;
  box-shadow: 0 0 0 4px rgba(119, 180, 137, .14);
}

.contact-form__trap {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-alert {
  padding: 12px 14px;
  margin-bottom: 18px;
  border-radius: 11px;
  font-size: 10px;
}

.form-alert--success {
  color: #1d603d;
  border: 1px solid #b9dfc4;
  background: #e7f7eb;
}

.form-alert--error {
  color: #8a3030;
  border: 1px solid #efc5c5;
  background: #fff0f0;
}

.page-hero--demo {
  padding-block: 70px;
}

.menu-demo-page {
  min-height: 620px;
}

.menu-demo-page__live {
  min-height: 300px;
}

.menu-demo-page__placeholder {
  display: grid;
  grid-template-columns: 400px 1fr;
  align-items: center;
  gap: 90px;
  max-width: 950px;
  margin: 0 auto;
}

.phone-shell--demo {
  width: 310px;
  margin: 0 auto;
  transform: none;
}

.menu-demo-page__copy h2 {
  color: var(--rabito-primary-dark);
}

.menu-demo-page__copy p {
  color: var(--rabito-text);
}

.demo-admin-note {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 950px;
  padding: 12px 16px;
  margin: 0 auto 45px;
  color: #75500f;
  border: 1px solid #edcf98;
  border-radius: 12px;
  background: #fff4df;
  font-size: 10px;
}

.demo-admin-note code {
  direction: ltr;
}

/* WordPress core alignments and captions */
.alignleft {
  float: left;
  margin: .5em 1.5em 1em 0;
}

.alignright {
  float: right;
  margin: .5em 0 1em 1.5em;
}

.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text,
.gallery-caption {
  margin-top: 7px;
  color: var(--rabito-muted);
  font-size: 9px;
  text-align: center;
}

.sticky {
  border-color: #b9d9c1;
}

.bypostauthor {
  border-right: 3px solid var(--rabito-primary);
}

/* Widgets */
.widget {
  margin-bottom: 30px;
}

.widget-title {
  font-size: 15px;
}

/* WooCommerce baseline */
.woocommerce .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  color: #fff;
  border-radius: 12px;
  background: var(--rabito-primary);
  font-family: var(--rabito-font);
}

.woocommerce .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  color: #fff;
  background: var(--rabito-primary-dark);
}

.woocommerce ul.products li.product,
.woocommerce div.product {
  overflow: hidden;
  border: 1px solid var(--rabito-border);
  border-radius: 18px;
  background: #fff;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price {
  padding-inline: 15px;
}

.woocommerce-message,
.woocommerce-info {
  border-top-color: var(--rabito-primary);
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--rabito-primary);
}

@media (max-width: 1120px) {
  .site-header__inner {
    gap: 15px;
  }

  .site-branding {
    width: 150px;
  }

  .custom-logo,
  .site-branding__image {
    width: 150px;
    max-width: 150px;
  }

  .primary-menu a,
  .main-navigation a {
    padding-inline: 8px;
    font-size: 11px;
  }

  .hero-section__grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, .9fr);
    gap: 35px;
  }

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

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

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

  .site-footer__main {
    grid-template-columns: 1.2fr .8fr .8fr 1fr;
    gap: 35px;
  }
}

@media (max-width: 960px) {
  :root {
    --rabito-header-height: 72px;
  }

  .site-branding {
    width: auto;
  }

  .custom-logo,
  .site-branding__image {
    width: 145px;
    max-width: 145px;
    height: 50px;
  }

  .menu-toggle {
    display: grid;
  }

  .main-navigation {
    position: fixed;
    z-index: 999;
    top: var(--rabito-header-height);
    right: 0;
    left: 0;
    max-height: calc(100vh - var(--rabito-header-height));
    padding: 14px 20px 24px;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    border-top: 1px solid var(--rabito-border);
    background: rgba(255, 255, 255, .99);
    box-shadow: 0 20px 35px rgba(23, 79, 55, .12);
    transform: translateY(-12px);
    transition: .2s ease;
  }

  .site-header.nav-open .main-navigation {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-menu,
  .main-navigation ul {
    display: grid;
    width: min(100%, 720px);
    gap: 4px;
    margin-inline: auto;
  }

  .primary-menu a,
  .main-navigation a {
    min-height: 48px;
    padding: 10px 14px;
    font-size: 13px;
  }

  .main-navigation .sub-menu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0 12px;
    visibility: visible;
    opacity: 1;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .hero-section__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 75px;
  }

  .hero-copy {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
  }

  .hero-copy h1,
  .hero-copy > p {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-copy__actions,
  .hero-copy__checks {
    justify-content: center;
  }

  .hero-visual {
    min-height: 570px;
  }

  .trust-strip {
    margin-top: 0;
    padding-top: 25px;
    background: #f4f9f3;
  }

  .trust-strip .rabito-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip .rabito-container > div {
    border-bottom: 1px solid var(--rabito-border);
  }

  .trust-strip .rabito-container > div:nth-child(2) {
    border-left: 0;
  }

  .trust-strip .rabito-container > div:nth-child(3),
  .trust-strip .rabito-container > div:nth-child(4) {
    padding-top: 14px;
    border-bottom: 0;
  }

  .showcase-grid,
  .demo-grid,
  .pricing-grid,
  .page-hero__grid,
  .feature-detail,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .showcase-grid,
  .demo-grid,
  .pricing-grid,
  .feature-detail {
    gap: 55px;
  }

  .showcase-copy,
  .pricing-copy {
    max-width: 680px;
  }

  .dashboard-mockup {
    transform: none;
  }

  .demo-visual {
    width: min(100%, 560px);
    margin: 0 auto;
  }

  .demo-copy {
    max-width: 650px;
  }

  .pricing-card {
    width: min(100%, 560px);
  }

  .faq-grid {
    grid-template-columns: 280px 1fr;
    gap: 45px;
  }

  .site-footer__main {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .site-footer__column:last-child {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-detail--reverse > div:first-child {
    order: initial;
  }

  .feature-detail__visual {
    min-height: 340px;
  }

  .pricing-page__grid {
    grid-template-columns: 360px 1fr;
    gap: 40px;
  }

  .menu-demo-page__placeholder {
    grid-template-columns: 350px 1fr;
    gap: 45px;
  }

  .demo-live-placeholder,
  .demo-single-placeholder {
    grid-template-columns: 280px 1fr;
    gap: 42px;
  }
}

@media (max-width: 760px) {
  .rabito-container {
    width: min(calc(100% - 28px), var(--rabito-container));
  }

  .site-header__actions .rabito-button {
    display: none;
  }

  .header-login span {
    display: none;
  }

  .section {
    padding-block: 75px;
  }

  .hero-section__grid {
    padding-block: 60px;
  }

  .hero-copy > p {
    font-size: 14px;
  }

  .hero-visual {
    min-height: 520px;
    transform: scale(.92);
  }

  .floating-chip--order {
    right: 0;
  }

  .floating-chip--speed {
    left: 0;
  }

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

  .demo-home-grid,
  .demo-template-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .demo-home-heading .rabito-button {
    width: 100%;
  }

  .demo-template-card__preview .rabito-demo-preview {
    min-height: 280px;
  }

  .demo-live-browser__stage {
    min-height: 720px;
    padding: 24px 15px;
  }

  .demo-live-placeholder,
  .demo-single-placeholder {
    max-width: 520px;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .demo-live-placeholder .rabito-demo-preview,
  .demo-single-placeholder .rabito-demo-preview {
    width: min(100%, 290px);
    margin: 0 auto;
  }

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

  .steps-grid article {
    min-height: 0;
  }

  .steps-grid article::after {
    display: none;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .faq-copy {
    position: static;
  }

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

  .final-cta__inner,
  .section-heading--row {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-cta__actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .site-footer__main {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand,
  .site-footer__column:last-child {
    grid-column: 1 / -1;
  }

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

  .page-hero,
  .page-hero--simple {
    padding-block: 65px;
  }

  .feature-orbit {
    min-height: 330px;
  }

  .pricing-page__grid {
    grid-template-columns: 1fr;
  }

  .pricing-card--featured {
    position: static;
    width: 100%;
  }

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

  .contact-grid {
    gap: 35px;
  }

  .menu-demo-page__placeholder {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .menu-demo-page__copy {
    max-width: 560px;
    margin: 0 auto;
  }

  .menu-demo-page__copy .eyebrow {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 14px;
  }

  .site-header__actions {
    gap: 5px;
  }

  .hero-copy__actions {
    display: grid;
  }

  .hero-copy__actions .rabito-button {
    width: 100%;
  }

  .hero-copy__checks {
    display: grid;
    justify-content: start;
    max-width: 290px;
    margin-inline: auto;
    text-align: right;
  }

  .hero-visual {
    min-height: 460px;
    margin: -30px -20px;
    transform: scale(.78);
  }

  .floating-chip--order {
    right: -22px;
  }

  .floating-chip--speed {
    left: -22px;
  }

  .trust-strip .rabito-container {
    grid-template-columns: 1fr;
  }

  .trust-strip .rabito-container > div {
    min-height: 64px;
    padding: 9px 10px;
    border-bottom: 1px solid var(--rabito-border);
    border-left: 0;
  }

  .trust-strip .rabito-container > div:nth-child(3) {
    border-bottom: 1px solid var(--rabito-border);
  }

  .trust-strip .rabito-container > div:nth-child(4) {
    border-bottom: 0;
  }

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

  .page-hero--demo-gallery {
    padding-block: 65px 58px;
  }

  .demo-gallery-hero__meta {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .demo-home-grid,
  .demo-template-grid {
    grid-template-columns: 1fr;
  }

  .demo-home-card {
    display: grid;
    padding: 9px;
    grid-template-columns: 118px 1fr 24px;
    align-items: center;
    gap: 10px;
  }

  .demo-home-card .rabito-demo-preview {
    min-height: 150px;
    padding: 8px 6px 25px;
    border-radius: 13px;
  }

  .demo-home-card .rabito-demo-preview__hero {
    min-height: 32px;
    padding: 7px;
  }

  .demo-home-card .rabito-demo-preview__search {
    height: 15px;
  }

  .demo-home-card .rabito-demo-preview__items > span {
    min-height: 29px;
    padding: 3px;
    grid-template-columns: 23px 1fr 7px;
  }

  .demo-home-card .rabito-demo-preview__items i {
    width: 23px;
    height: 23px;
  }

  .demo-home-card .rabito-demo-preview__items > span:last-child,
  .demo-home-card .rabito-demo-preview__chips {
    display: none;
  }

  .demo-home-card .rabito-demo-preview__nav {
    height: 18px;
  }

  .demo-home-card > span {
    padding: 0;
  }

  .demo-home-card > span strong {
    font-size: 14px;
  }

  .demo-home-card > .rabito-icon {
    position: static;
  }

  .demo-template-card__preview {
    padding: 13px 13px 0;
  }

  .demo-template-card__preview .rabito-demo-preview {
    min-height: 330px;
  }

  .demo-template-card__body {
    padding: 19px 17px;
  }

  .demo-template-card__body > p {
    min-height: 0;
  }

  .demo-live-browser {
    margin-inline: -5px;
    border-radius: 18px;
  }

  .demo-live-browser__bar {
    min-height: 50px;
    padding-inline: 12px;
    grid-template-columns: auto 1fr;
  }

  .demo-live-browser__bar b {
    justify-self: end;
  }

  .demo-live-browser__bar em {
    display: none;
  }

  .demo-live-browser__stage {
    min-height: 680px;
    padding: 13px 7px;
  }

  .demo-live-device {
    width: 100%;
    height: 650px;
    padding: 6px;
    border-width: 3px;
    border-radius: 28px;
  }

  .demo-live-frame {
    border-radius: 20px;
  }

  .features-grid,
  .features-grid--large,
  .audience-grid,
  .posts-grid,
  .posts-grid--archive {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
  }

  .dashboard-mockup__body {
    grid-template-columns: 80px 1fr;
    min-height: 260px;
  }

  .dashboard-mockup aside {
    padding-inline: 8px;
  }

  .dashboard-mockup aside b,
  .dashboard-mockup aside span {
    padding-inline: 5px;
  }

  .dashboard-mockup__content {
    padding: 15px 10px;
  }

  .dashboard-mockup__stats {
    gap: 5px;
  }

  .dashboard-mockup__stats span {
    min-height: 60px;
    padding: 8px;
  }

  .dashboard-mockup__stats b {
    font-size: 12px;
  }

  .dashboard-mockup__chart svg {
    height: 120px;
  }

  .demo-visual {
    min-height: 440px;
    margin: -30px -40px;
    transform: scale(.82);
  }

  .demo-visual__card {
    right: 50%;
    transform: translateX(50%) rotate(3deg);
  }

  .demo-visual__qr {
    right: 24px;
  }

  .pricing-card {
    padding: 27px 21px;
  }

  .pricing-card__label {
    position: static;
    width: max-content;
    margin-bottom: 18px;
  }

  .faq-list summary {
    padding-right: 16px;
    font-size: 11px;
  }

  .final-cta__actions {
    display: grid;
  }

  .final-cta__actions .rabito-button {
    width: 100%;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
  }

  .site-footer__brand,
  .site-footer__column:last-child {
    grid-column: auto;
  }

  .site-footer__bottom .rabito-container {
    padding-block: 18px;
    flex-direction: column;
    text-align: center;
  }

  .feature-orbit {
    margin: -10px -10px;
    transform: scale(.85);
  }

  .feature-detail__visual {
    min-height: 300px;
    padding: 25px 16px;
  }

  .phone-shell--small {
    transform: scale(.88) rotate(2deg);
  }

  .mini-dashboard > div {
    grid-template-columns: 40px 1fr;
  }

  .mini-dashboard strong {
    grid-column: 2;
    margin-top: -10px;
  }

  .pricing-includes__grid {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 24px 17px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .contact-help {
    align-items: flex-start;
  }

  .contact-help img {
    width: 58px;
    height: 58px;
  }

  .post-navigation-custom {
    grid-template-columns: 1fr;
  }

  .single-post__header {
    padding-bottom: 120px;
  }

  .single-post__meta {
    flex-wrap: wrap;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .final-cta,
  .back-to-top,
  .rabito-button {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .site-main {
    min-height: 0;
  }
}
