:root {
  --bg: #f5f7ef;
  --bg-2: #eaf4ee;
  --ink: #102018;
  --muted: #65746c;
  --line: rgba(16, 32, 24, 0.12);
  --line-strong: rgba(16, 32, 24, 0.2);
  --panel: rgba(255, 255, 255, 0.78);
  --panel-solid: #ffffff;
  --green-950: #082f21;
  --green-900: #0b3d2c;
  --green-700: #006f54;
  --green-600: #008866;
  --green-100: #dff4eb;
  --shadow-soft: 0 28px 80px rgba(31, 59, 46, 0.14);
  --shadow-hard: 0 18px 48px rgba(8, 47, 33, 0.18);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans", "DejaVu Sans", "Segoe UI", system-ui, sans-serif;
  background:
    linear-gradient(rgba(8, 47, 33, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 47, 33, 0.035) 1px, transparent 1px),
    linear-gradient(120deg, var(--bg) 0%, #fbfbf5 46%, var(--bg-2) 100%);
  background-size: 72px 72px, 72px 72px, auto;
  min-height: 100dvh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(285deg, rgba(0, 136, 102, 0.08), transparent 38%);
}

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

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

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

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

button,
input,
textarea {
  border: 0;
}

button {
  cursor: pointer;
}

input,
textarea {
  width: 100%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 16px;
  outline: none;
  padding: 16px 17px;
  transition: border-color 320ms var(--ease), box-shadow 320ms var(--ease), background 320ms var(--ease);
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(101, 116, 108, 0.78);
}

input:focus,
textarea:focus {
  border-color: rgba(0, 136, 102, 0.62);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 136, 102, 0.12);
}

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

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 48px));
  height: 68px;
  margin: 14px auto 0;
  padding: 8px 10px 8px 12px;
  border: 1px solid rgba(8, 47, 33, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 60px rgba(8, 47, 33, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: block;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  background: var(--green-950);
  border-radius: 14px;
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(8, 47, 33, 0.08);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.1;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #33443b;
  font-size: 14px;
  font-weight: 800;
}

.desktop-nav a,
.ghost-link {
  transition: color 240ms var(--ease), transform 240ms var(--ease);
}

.desktop-nav a:hover,
.ghost-link:hover {
  color: var(--green-700);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  --lang-chip: 32px;
  --lang-height: 26px;
  --lang-gap: 2px;
  --lang-pad: 3px;
  display: inline-flex;
  align-items: center;
  position: relative;
  gap: var(--lang-gap);
  width: fit-content;
  padding: var(--lang-pad);
  border: 1px solid rgba(29, 107, 79, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.language-switch-thumb {
  position: absolute;
  top: var(--lang-pad);
  left: var(--lang-pad);
  width: var(--lang-chip);
  height: var(--lang-height);
  border-radius: 999px;
  background: var(--green-700);
  box-shadow: 0 8px 18px rgba(29, 107, 79, 0.22);
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), background 180ms var(--ease), box-shadow 180ms var(--ease);
}

.language-switch.is-uz .language-switch-thumb {
  transform: translateX(calc(var(--lang-chip) + var(--lang-gap)));
}

.language-switch-option {
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  width: var(--lang-chip);
  min-width: var(--lang-chip);
  height: var(--lang-height);
  padding: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  transition: color 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
}

.language-switch-option.active {
  color: #fff;
}

.landing-language-switch {
  flex: 0 0 auto;
}

.ghost-link,
.solid-link,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  white-space: nowrap;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  transition:
    transform 260ms var(--ease),
    box-shadow 260ms var(--ease),
    background 260ms var(--ease),
    color 260ms var(--ease),
    border-color 260ms var(--ease);
}

.ghost-link {
  padding: 0 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.56);
}

.solid-link,
.primary-button {
  gap: 12px;
  padding: 0 12px 0 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--green-700), var(--green-950));
  box-shadow: 0 16px 42px rgba(0, 111, 84, 0.28);
}

.solid-link {
  padding: 0 22px;
  background: var(--green-950);
  box-shadow: none;
}

.secondary-button {
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.74);
}

.secondary-button.dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.09);
}

.primary-button:hover,
.solid-link:hover,
.secondary-button:hover,
.ghost-link:hover {
  transform: translateY(-2px);
}

.primary-button:active,
.solid-link:active,
.secondary-button:active,
.ghost-link:active {
  transform: translateY(0) scale(0.98);
}

.button-tail {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  transition: transform 260ms var(--ease);
}

.primary-button:hover .button-tail {
  transform: translate(2px, -1px);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--green-950);
}

.menu-toggle span {
  position: absolute;
  left: 13px;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: #fff;
  transition: transform 320ms var(--ease), top 320ms var(--ease);
}

.menu-toggle span:first-child {
  top: 17px;
}

.menu-toggle span:last-child {
  top: 25px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  top: 21px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 92px 24px auto;
  z-index: 19;
  display: none;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 320ms var(--ease), opacity 320ms var(--ease);
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 900;
  background: rgba(223, 244, 235, 0.52);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: 42px;
  min-height: calc(100dvh - 84px);
  padding: 70px 0 76px;
}

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

.eyebrow,
.card-kicker {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.orders-copy h2,
.demo-copy h2,
.flow-step h3,
.surface-card h3,
.delivery-list h3,
.plan-card h3 {
  margin: 0;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 10ch;
  font-size: 72px;
  line-height: 0.94;
}

.hero-text {
  max-width: 620px;
  margin: 24px 0 0;
  color: #3f5249;
  font-size: 20px;
  line-height: 1.5;
}

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

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

.frame {
  overflow: hidden;
  border: 1px solid rgba(8, 47, 33, 0.14);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow-soft);
}

.hero-dashboard {
  position: absolute;
  inset: 56px 0 auto auto;
  width: 92%;
  border-radius: var(--radius-lg);
}

.hero-dashboard img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 50% 0;
}

.hero-phone {
  position: absolute;
  right: 0;
  bottom: 18px;
  width: 310px;
  border-radius: 32px;
  box-shadow: 0 26px 72px rgba(8, 47, 33, 0.22);
}

.hero-phone img {
  width: 100%;
  aspect-ratio: 0.98 / 1;
  object-fit: cover;
  object-position: 100% 0;
}

.hero-card {
  position: absolute;
  left: 0;
  bottom: 70px;
  width: 265px;
  padding: 22px;
  color: #fff;
  border-radius: 24px;
  background: var(--green-950);
  box-shadow: var(--shadow-hard);
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card strong {
  font-size: 24px;
  line-height: 1.08;
}

.hero-card span {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  margin-bottom: 80px;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 64px rgba(31, 59, 46, 0.1);
}

.proof-band article {
  min-height: 120px;
  padding: 26px;
}

.proof-band article + article {
  border-left: 1px solid var(--line);
}

.proof-band strong {
  display: block;
  font-size: 31px;
  line-height: 1;
}

.proof-band span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.story,
.flow,
.orders,
.delivery,
.designs,
.plans,
.demo,
.faq {
  padding: 92px 0;
}

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

.section-heading.narrow {
  max-width: 720px;
}

.section-heading h2,
.orders-copy h2,
.demo-copy h2 {
  font-size: 56px;
  line-height: 1.02;
}

.section-heading p,
.orders-copy p,
.demo-copy p {
  margin: 18px auto 0;
  color: #4f6259;
  font-size: 18px;
  line-height: 1.55;
}

.surface-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.surface-card,
.flow-step,
.plan-card,
.demo-form,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.surface-card {
  display: grid;
  gap: 22px;
  min-height: 360px;
  padding: 26px;
  overflow: hidden;
}

.surface-card.wide {
  grid-row: auto;
}

.surface-card img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 22px;
  object-fit: cover;
}

.surface-card.wide img {
  aspect-ratio: 16 / 9;
  object-position: 50% 0;
}

.surface-card:not(.wide) img {
  align-self: end;
  aspect-ratio: 4 / 3;
  object-position: 100% 0;
}

.surface-card h3,
.flow-step h3,
.delivery-list h3 {
  font-size: 30px;
  line-height: 1.08;
}

.surface-card p,
.flow-step p,
.delivery-list p,
.plan-card p {
  margin: 14px 0 0;
  color: #53655c;
  line-height: 1.55;
}

.surface-card.accent {
  grid-column: 1 / -1;
  min-height: 260px;
  color: #fff;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), transparent 48%),
    var(--green-950);
}

.surface-card.accent .card-kicker,
.surface-card.accent p {
  color: rgba(255, 255, 255, 0.72);
}

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

.flow-step {
  min-height: 285px;
  padding: 28px;
}

.flow-step span,
.plan-card > span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.flow-step h3 {
  font-size: 26px;
}

.orders {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 32px;
  width: min(1250px, calc(100% - 48px));
  padding: 56px;
  color: #fff;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 35%),
    var(--green-950);
  box-shadow: var(--shadow-hard);
}

.orders-copy p {
  color: rgba(255, 255, 255, 0.75);
  margin-left: 0;
}

.orders-copy .secondary-button {
  margin-top: 28px;
}

.orders-image {
  border-radius: 28px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.orders-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 50% 0;
}

.delivery-grid {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.map-phone {
  justify-self: center;
  width: 100%;
  max-width: 330px;
}

.phone-device {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 34px;
  background: rgba(246, 250, 244, 0.94);
  box-shadow: 0 34px 100px rgba(20, 26, 23, 0.22);
  backdrop-filter: blur(18px);
}

.phone-head {
  margin-bottom: 14px;
}

.phone-head span,
.phone-head strong {
  display: block;
}

.phone-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phone-head strong {
  margin-top: 4px;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0;
}

.phone-screen {
  position: relative;
  overflow: hidden;
  border: 10px solid #142019;
  border-radius: 38px;
  background:
    linear-gradient(145deg, #111b16, #23362c),
    var(--ink);
  box-shadow: 0 28px 80px rgba(20, 26, 23, 0.24);
}

.phone-screen img {
  width: 100%;
  aspect-ratio: 0.46 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 27px;
}

.delivery-list {
  display: grid;
  gap: 16px;
  align-content: center;
}

.delivery-list article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 60px rgba(31, 59, 46, 0.09);
}

.tabs {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.tab-list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.tab-list button {
  min-height: 42px;
  padding: 0 18px;
  color: #304339;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-weight: 900;
  white-space: nowrap;
  transition: background 240ms var(--ease), color 240ms var(--ease), transform 240ms var(--ease);
}

.tab-list button:hover {
  transform: translateY(-1px);
}

.tab-list button.active {
  color: #fff;
  background: var(--green-950);
}

.tab-panel {
  display: none;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
}

.tab-panel.active {
  display: block;
}

.tab-panel img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  object-position: 50% 0;
}

.plan-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}

.plan-card {
  padding: 34px;
}

.plan-card.featured {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(223, 244, 235, 0.92)),
    var(--panel-solid);
  border-color: rgba(0, 136, 102, 0.28);
}

.plan-card > span {
  margin-bottom: 16px;
}

.plan-card.featured .plan-cta {
  width: min(100%, 230px);
  min-height: 54px;
  justify-content: space-between;
  padding: 0 10px 0 24px;
  color: #fff;
  background: var(--green-700);
  box-shadow: 0 18px 46px rgba(0, 111, 84, 0.28);
}

.plan-card.featured .plan-cta span:not(.button-tail) {
  display: inline-flex;
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1;
  text-transform: none;
}

.plan-card h3 {
  font-size: 48px;
  line-height: 1;
}

.plan-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 20px;
  color: #25372d;
  font-weight: 850;
}

.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green-700);
}

.demo {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 34px;
  align-items: center;
}

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

.demo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.demo-tags span {
  padding: 10px 14px;
  color: var(--green-700);
  border: 1px solid rgba(0, 136, 102, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 900;
}

.demo-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 28px;
}

.demo-form label {
  display: grid;
  gap: 8px;
  color: #43554c;
  font-size: 14px;
  font-weight: 900;
}

.demo-form label:nth-child(4),
.submit-button,
.form-note {
  grid-column: 1 / -1;
}

.lead-trap {
  display: none !important;
}

.submit-button {
  width: 100%;
  margin-top: 4px;
}

.submit-button:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.form-note.success {
  color: var(--green-700);
  font-weight: 900;
}

.form-note.error {
  color: #ad2f20;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 26px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 950;
}

.faq-list summary::after {
  content: "+";
  color: var(--green-700);
  font-size: 26px;
  line-height: 1;
}

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

.faq-list p {
  margin: 0;
  padding: 0 26px 24px;
  color: #53655c;
  line-height: 1.6;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 36px 0 48px;
  border-top: 1px solid var(--line);
}

.site-footer a:last-child {
  color: var(--green-700);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 720ms var(--ease), transform 720ms var(--ease);
}

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

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

  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

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

@media (max-width: 1120px) {
  .desktop-nav,
  .ghost-link,
  .solid-link {
    display: none;
  }

  .menu-toggle,
  .mobile-menu {
    display: grid;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 64px;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: 60px;
  }

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

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

  .proof-band article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .proof-band article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .surface-grid,
  .orders,
  .delivery-grid,
  .demo {
    grid-template-columns: 1fr;
  }

  .orders {
    padding: 38px;
  }

  .delivery-grid {
    justify-items: center;
  }

  .delivery-list {
    width: 100%;
  }

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

@media (max-width: 760px) {
  .section-shell,
  .site-header,
  .orders {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    height: 64px;
    top: 10px;
    margin-top: 10px;
    border-radius: 22px;
  }

  .landing-language-switch {
    --lang-chip: 29px;
    --lang-height: 24px;
  }

  .brand small {
    display: none;
  }

  .mobile-menu {
    inset: 82px 14px auto;
  }

  .hero {
    gap: 24px;
    padding: 46px 0 48px;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: 46px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-visual {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .hero-dashboard,
  .hero-phone,
  .hero-card {
    position: static;
    width: 100%;
  }

  .hero-dashboard,
  .hero-phone {
    border-radius: 24px;
  }

  .hero-phone img {
    aspect-ratio: 16 / 10;
    object-position: 100% 0;
  }

  .proof-band,
  .flow-grid,
  .plan-grid,
  .demo-form {
    grid-template-columns: 1fr;
  }

  .proof-band article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .story,
  .flow,
  .orders,
  .delivery,
  .designs,
  .plans,
  .demo,
  .faq {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .section-heading {
    margin-bottom: 28px;
    text-align: left;
  }

  .section-heading h2,
  .orders-copy h2,
  .demo-copy h2 {
    font-size: 38px;
  }

  .section-heading p,
  .orders-copy p,
  .demo-copy p {
    font-size: 16px;
  }

  .tabs {
    padding: 12px;
    border-radius: 26px;
  }

  .tab-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 12px;
  }

  .tab-list button {
    min-width: 0;
    min-height: 38px;
    padding: 0 6px;
    font-size: 11px;
    line-height: 1.1;
  }

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

  .demo-tags span {
    display: grid;
    min-height: 42px;
    place-items: center;
    padding: 8px 9px;
    text-align: center;
    line-height: 1.15;
  }

  .surface-card,
  .flow-step,
  .plan-card,
  .demo-form,
  .delivery-list article {
    border-radius: 24px;
    padding: 22px;
  }

  .surface-card h3,
  .flow-step h3,
  .delivery-list h3 {
    font-size: 25px;
  }

  .orders {
    border-radius: 28px;
    padding: 26px;
  }

  .map-phone {
    width: min(100%, 360px);
  }

  .tab-panel img {
    min-height: 330px;
  }

  .demo-form label:nth-child(4),
  .submit-button,
  .form-note {
    grid-column: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 15px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .proof-band strong {
    font-size: 28px;
  }
}
