:root {
  --black: #050505;
  --panel: #0c0c0d;
  --orange: #ff6a00;
  --orange-2: #ff3d12;
  --white: #ffffff;
  --text: #161719;
  --muted: #6d717a;
  --line: #e8e8ea;
  --soft: #f5f6f8;
  --green: #47a836;
  --blue: #2566d8;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: #f4f5f7;
}

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

button,
input,
select {
  font: inherit;
}

.landing-shell {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 712px;
  padding: 0 clamp(22px, 6vw, 122px) 22px;
  color: var(--white);
  background:
    radial-gradient(circle at 73% 40%, rgba(255, 90, 0, 0.18), transparent 21%),
    radial-gradient(circle at 33% 16%, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(110deg, #050505 0%, #090909 48%, #000 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 76px 0 0;
  opacity: 0.28;
  background:
    linear-gradient(28deg, transparent 0 24%, rgba(255, 90, 0, 0.3) 24.3% 24.6%, transparent 24.9% 100%),
    linear-gradient(145deg, transparent 0 40%, rgba(255, 90, 0, 0.22) 40.2% 40.5%, transparent 40.8% 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 96px 96px, 96px 96px;
  pointer-events: none;
}

.site-header {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: 86px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 21px;
  font-weight: 900;
  line-height: 0.88;
}

.logo-mark {
  color: var(--orange);
  font-size: 48px;
  font-weight: 900;
  line-height: 0.8;
}

.top-nav {
  display: flex;
  gap: clamp(22px, 3.2vw, 54px);
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 700;
}

.header-controls {
  display: flex;
  gap: 16px;
}

.language-switch,
.login {
  min-width: 88px;
  height: 44px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  cursor: pointer;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
}

.language-switch button {
  min-width: 40px;
  height: 36px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.04);
  border: 0;
  border-radius: 9px;
  font-weight: 900;
  cursor: pointer;
}

.language-switch button.active {
  color: var(--white);
  background: var(--orange);
}

.login {
  min-width: 106px;
  border-color: var(--orange);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(460px, 0.94fr) minmax(520px, 1.06fr);
  gap: clamp(36px, 5vw, 86px);
  align-items: center;
  min-height: 600px;
}

.hero-copy {
  padding-top: 20px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--orange);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 5.4vw, 76px);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero-copy > p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 22px;
  line-height: 1.35;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  max-width: 650px;
  margin-top: 34px;
}

.benefits article {
  display: grid;
  gap: 12px;
}

.benefits span {
  display: grid;
  width: 72px;
  height: 64px;
  place-items: center;
  color: var(--orange);
  background: rgba(255, 122, 24, 0.11);
  border-radius: var(--radius);
  font-size: 42px;
  font-weight: 800;
}

.benefits p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.28;
}

.bonus-panel {
  display: grid;
  grid-template-columns: 58px minmax(150px, 1fr) 250px;
  align-items: center;
  gap: 18px;
  max-width: 620px;
  min-height: 76px;
  margin-top: 30px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 90, 0, 0.62);
  border-radius: var(--radius);
  background: rgba(255, 90, 0, 0.045);
}

.bonus-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--orange);
  background: rgba(255, 106, 0, 0.12);
  border: 1px solid rgba(255, 106, 0, 0.42);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.bonus-panel strong,
.bonus-panel span {
  display: block;
}

.bonus-panel strong {
  color: var(--orange);
  color: var(--orange);
}

.bonus-icon svg,
.benefit-icon svg,
.stats-icon svg,
.back-to-top svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bonus-panel span {
  margin-top: 3px;
  color: var(--white);
  font-weight: 700;
}

.bonus-panel a,
.signup-card button,
.subscribe-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  color: var(--white);
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 26px rgba(255, 90, 0, 0.26);
}

.hero-art {
  position: relative;
  min-height: 575px;
  overflow: hidden;
}

.app-showcase {
  display: grid;
  place-items: center;
  overflow: visible;
}

.hero-main-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 650px;
  overflow: hidden;
}

.hero-image-frame {
  position: relative;
  width: min(1040px, 67vw);
  min-height: 650px;
  overflow: visible;
}

.hero-main-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center right;
}

.app-showcase::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.24), transparent 68%);
  filter: blur(8px);
}

.app-mockup {
  position: relative;
  z-index: 3;
  display: block;
  width: min(420px, 58vw);
  max-height: 655px;
  object-fit: contain;
  filter: drop-shadow(0 32px 70px rgba(0, 0, 0, 0.72));
}

.compact-bag {
  right: -6%;
  top: 54px;
  width: 320px;
  height: 300px;
  opacity: 0.82;
  transform: rotate(2deg);
}

.compact-bag span {
  font-size: 110px;
}

.compact-bag strong {
  bottom: 54px;
  font-size: 36px;
}

.map-lines {
  position: absolute;
  inset: 38px 22% 0 0;
  opacity: 0.7;
  background:
    radial-gradient(circle at 20% 22%, var(--orange) 0 5px, transparent 6px),
    radial-gradient(circle at 58% 74%, var(--orange) 0 5px, transparent 6px),
    linear-gradient(130deg, transparent 0 54%, rgba(255, 90, 0, 0.45) 54.2% 54.6%, transparent 54.9%);
}

.phone {
  position: absolute;
  z-index: 3;
  left: 7%;
  top: 4px;
  width: 300px;
  height: 580px;
  padding: 26px 18px;
  color: var(--white);
  background: #090909;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 42px;
  box-shadow: 0 38px 70px rgba(0, 0, 0, 0.7);
  transform: rotate(5deg);
}

.phone::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  width: 92px;
  height: 19px;
  background: #000;
  border-radius: 0 0 18px 18px;
  transform: translateX(-50%);
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 11px;
}

.phone-top strong {
  color: var(--orange);
  text-align: center;
  font-size: 15px;
  line-height: 0.94;
}

.search-line {
  margin-top: 20px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.58);
  background: #1c1c1f;
  border-radius: var(--radius);
  font-size: 12px;
}

.promo-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 122px;
  margin-top: 12px;
  padding: 18px;
  background: linear-gradient(135deg, #52210b, #0f0f10 64%);
  border-radius: var(--radius);
}

.promo-card strong {
  font-size: 22px;
  line-height: 1.1;
}

.promo-card span {
  width: 82px;
  height: 82px;
  background:
    radial-gradient(circle, #f5d37e 0 38%, transparent 39%),
    conic-gradient(from 30deg, #c82916, #f6c052, #c82916, #f6c052, #c82916);
  border: 7px solid #d68123;
  border-radius: 50%;
}

.category-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.category-row span {
  display: grid;
  height: 46px;
  place-items: center;
  background: #171719;
  border-radius: var(--radius);
}

.restaurant-card {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 12px;
  background: #161618;
  border-radius: var(--radius);
}

.restaurant-card > span {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  background: conic-gradient(#da351b, #f7bb42, #da351b);
  border-radius: 50%;
}

.restaurant-card strong,
.restaurant-card small {
  display: block;
}

.restaurant-card small {
  color: rgba(255, 255, 255, 0.52);
}

.restaurant-card em {
  margin-left: auto;
  color: var(--white);
  font-size: 12px;
  font-style: normal;
}

.brand-bag {
  position: absolute;
  right: 0;
  top: 18px;
  display: grid;
  width: 390px;
  height: 360px;
  place-items: center;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 34%),
    #141414;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 52px 52px 18px 18px;
  box-shadow: inset 0 20px 60px rgba(255, 255, 255, 0.04), 0 28px 70px rgba(0, 0, 0, 0.7);
}

.brand-bag::before {
  content: "";
  position: absolute;
  top: -28px;
  width: 180px;
  height: 80px;
  border: 18px solid #181818;
  border-bottom: 0;
  border-radius: 70px 70px 0 0;
}

.brand-bag span {
  color: var(--orange);
  font-size: 150px;
  font-weight: 900;
  line-height: 0.8;
}

.brand-bag strong {
  position: absolute;
  bottom: 66px;
  font-size: 46px;
  line-height: 0.9;
  text-align: center;
}

.meal-box {
  position: absolute;
  z-index: 4;
  right: 114px;
  bottom: 72px;
  width: 250px;
  height: 118px;
  background: #b77a3a;
  border-radius: 8px 8px 18px 18px;
  transform: skewX(-9deg);
}

.burger {
  position: absolute;
  left: 22px;
  top: -52px;
  width: 178px;
  height: 92px;
  background:
    linear-gradient(#d68b2f 0 35%, #f3d16b 36% 44%, #284f1d 45% 53%, #9d3b1c 54% 66%, #4b2114 67% 100%);
  border-radius: 90px 90px 22px 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.fries {
  position: absolute;
  right: 16px;
  top: -22px;
  width: 86px;
  height: 72px;
  background: repeating-linear-gradient(90deg, #ffc76a 0 9px, #ef9e29 10px 13px);
  border-radius: 4px;
  transform: rotate(-9deg);
}

.coffee-cup {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 42px;
  display: grid;
  width: 94px;
  height: 170px;
  place-items: center;
  background: linear-gradient(#191919 0 16%, #5a4332 17%);
  border-radius: 20px 20px 24px 24px;
}

.coffee-cup span {
  color: var(--orange);
  font-size: 58px;
  font-weight: 900;
}

.signup-zone {
  padding: 22px clamp(20px, 6vw, 120px) 18px;
  background: #f7f8fa;
}

.customer-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
  padding: clamp(62px, 8vw, 108px) clamp(20px, 6vw, 120px);
  color: var(--white);
  background:
    radial-gradient(circle at 86% 20%, rgba(255, 106, 0, 0.22), transparent 30%),
    linear-gradient(135deg, #080808, #151515 58%, #070707);
}

.courier-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
  padding: clamp(62px, 8vw, 108px) clamp(20px, 6vw, 120px);
  color: var(--white);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 106, 0, 0.2), transparent 32%),
    radial-gradient(circle at 72% 80%, rgba(255, 106, 0, 0.16), transparent 28%),
    linear-gradient(135deg, #090909, #111 52%, #050505);
}

.merchant-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
  padding: clamp(62px, 8vw, 108px) clamp(20px, 6vw, 120px);
  color: #151821;
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 106, 0, 0.13), transparent 28%),
    linear-gradient(135deg, #ffffff, #f8fafc 52%, #fff3eb);
}

.customer-copy {
  max-width: 760px;
}

.courier-copy {
  max-width: 800px;
}

.merchant-copy {
  max-width: 820px;
}

.customer-copy h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
}

.courier-copy h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
}

.merchant-copy h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
}

.customer-copy > p {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 21px;
  line-height: 1.5;
}

.courier-copy > p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 21px;
  line-height: 1.5;
}

.merchant-copy > p {
  max-width: 690px;
  margin: 18px 0 0;
  color: #566071;
  font-size: 21px;
  line-height: 1.5;
}

.customer-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.customer-benefits li {
  position: relative;
  padding: 15px 16px 15px 42px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  font-weight: 800;
}

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

.merchant-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.merchant-benefits li,
.early-partners {
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.08);
}

.merchant-benefits li {
  position: relative;
  padding: 15px 16px 15px 42px;
  font-weight: 900;
}

.merchant-benefits li::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 20px;
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
}

.early-partners {
  margin-bottom: 22px;
  padding: 18px;
}

.early-partners strong {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 18px;
}

.early-partners ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: #303848;
  font-weight: 800;
}

.customer-benefits li::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 20px;
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
}

.customer-form {
  display: grid;
  gap: 15px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.merchant-form {
  display: grid;
  gap: 15px;
  padding: 22px;
  color: #151821;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(17, 24, 39, 0.14);
}

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

.customer-form label,
.priority-field,
.merchant-form label {
  display: grid;
  gap: 8px;
}

.customer-form label span,
.priority-field legend,
.merchant-form label span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
}

.merchant-form label span {
  color: #5b6473;
}

.customer-form input,
.customer-form select {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  outline: none;
}

.merchant-form input,
.merchant-form select {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  color: #151821;
  background: #ffffff;
  border: 1px solid #dfe3ea;
  border-radius: 14px;
  outline: none;
}

.customer-form select option {
  color: #111;
}

.priority-field {
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
}

.priority-field legend {
  padding: 0 8px;
}

.priority-field label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
}

.priority-field input {
  width: 16px;
  height: 16px;
  accent-color: var(--orange);
}

.customer-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  color: var(--white);
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  border: 0;
  border-radius: 16px;
  font-weight: 900;
  cursor: pointer;
}

.merchant-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  color: var(--white);
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  border: 0;
  border-radius: 16px;
  font-weight: 900;
  cursor: pointer;
}

.merchant-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.customer-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.customer-form.registration-focus,
.merchant-form.registration-focus {
  outline: 3px solid rgba(255, 91, 0, 0.56);
  outline-offset: 8px;
  box-shadow: 0 26px 70px rgba(255, 91, 0, 0.16);
}

.form-error {
  min-height: 20px;
  margin: 0;
  color: #ffb199;
  font-weight: 800;
}

.form-consent,
.notification-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.45;
}

.merchant-form .form-consent {
  color: #667085;
}

.form-consent a,
.form-consent button {
  color: var(--orange);
  background: transparent;
  border: 0;
  padding: 0;
  font-weight: 900;
  cursor: pointer;
}

.notification-note {
  color: #176d27;
  font-weight: 900;
}

.success-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  color: #123018;
  background: #e7ffe8;
  border-radius: 18px;
}

.success-card p {
  margin: 0;
}

.success-card b {
  overflow-wrap: anywhere;
}

.success-card[hidden] {
  display: none;
}

.referral-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.referral-row input {
  height: 44px;
  color: #111;
  background: var(--white);
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.referral-row button {
  min-height: 44px;
  padding-inline: 18px;
  border-radius: 12px;
  white-space: nowrap;
}

.customer-visual {
  display: grid;
  place-items: center;
}

.courier-visual {
  display: grid;
  place-items: center;
}

.merchant-visual {
  display: grid;
  place-items: center;
}

.customer-visual img {
  width: min(440px, 78vw);
  max-height: 760px;
  object-fit: contain;
  filter: drop-shadow(0 34px 80px rgba(0, 0, 0, 0.62));
}

.courier-visual img {
  width: min(430px, 78vw);
  max-height: 770px;
  object-fit: contain;
  filter: drop-shadow(0 34px 80px rgba(0, 0, 0, 0.62));
}

.merchant-visual img {
  width: min(720px, 86vw);
  max-height: 680px;
  object-fit: contain;
  filter: drop-shadow(0 34px 70px rgba(17, 24, 39, 0.22));
}

.signup-heading {
  text-align: center;
}

.signup-heading h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.1;
}

.signup-heading p {
  margin: 6px 0 0;
  color: #555c68;
  font-size: 16px;
}

.signup-heading strong {
  color: var(--orange);
}

.signup-heading::after {
  content: "";
  display: block;
  width: 66px;
  height: 2px;
  margin: 12px auto 0;
  background: var(--orange);
}

.signup-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 292px;
  gap: 30px;
  align-items: start;
  margin-top: 0;
}

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

.signup-card,
.stats-card {
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: var(--radius);
  box-shadow: 0 18px 34px rgba(18, 24, 40, 0.08);
}

.signup-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  background: #fff4ea;
}

.signup-card.courier {
  background: #f2faef;
}

.signup-card.restaurant {
  background: #f1f5fd;
}

.card-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  min-height: 74px;
}

.card-head span {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  border-radius: 50%;
  font-size: 34px;
  font-weight: 900;
}

.courier .card-head span,
.courier button {
  background: linear-gradient(90deg, #48a937, #3f982f);
}

.restaurant .card-head span,
.restaurant button {
  background: linear-gradient(90deg, #2d6bdd, #1f58c7);
}

.card-head h3 {
  margin: 0;
  font-size: 22px;
}

.card-head p {
  margin: 6px 0 0;
  color: #333946;
  font-size: 13px;
  line-height: 1.35;
}

.signup-card input,
.signup-card select,
.subscribe-form input {
  width: 100%;
  height: 40px;
  padding: 0 14px;
  color: #2a2f38;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #d7d9de;
  border-radius: 6px;
  outline: none;
}

.signup-card button {
  min-height: 40px;
  margin-top: 0;
}

.signup-card small {
  max-width: 330px;
  margin: 2px auto 0;
  color: #59606c;
  font-size: 10px;
  line-height: 1.4;
  text-align: center;
}

.stats-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: var(--white);
}

.stats-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.35;
}

.stats-card h3 span {
  font-weight: 900;
}

.stats-card article {
  display: grid;
  grid-template-columns: 46px 54px 1fr;
  gap: 12px;
  align-items: center;
}

.stats-card article span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--orange);
  background: #fff0e5;
  border-radius: 50%;
  font-size: 25px;
  font-weight: 900;
}

.stats-card strong {
  color: var(--orange);
  font-size: 25px;
  line-height: 1;
}

.stats-card p {
  margin: 0;
  color: #1e232b;
  font-size: 13px;
  line-height: 1.2;
}

.express-strip {
  padding: 0 clamp(20px, 6vw, 120px) 18px;
  background: #f7f8fa;
}

.express-strip article,
.site-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 18px 28px;
  color: var(--white);
  background: #090a0d;
  border-radius: var(--radius);
}

.express-strip strong {
  color: var(--orange);
}

.express-strip span {
  color: rgba(255, 255, 255, 0.72);
}

.about-section {
  padding: clamp(58px, 8vw, 94px) clamp(20px, 7vw, 132px);
  color: #15171c;
  background: #fff;
}

.about-section h2 {
  max-width: 780px;
  margin: 0 0 24px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
}

.about-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 34px;
  max-width: 1100px;
}

.about-copy p {
  margin: 0;
  color: #424853;
  font-size: 17px;
  line-height: 1.6;
}

.site-footer {
  margin: 0 clamp(20px, 6vw, 120px) 26px;
  justify-content: space-between;
}

.newsletter {
  display: flex;
  gap: 16px;
  align-items: center;
  min-width: 340px;
}

.newsletter > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  font-size: 28px;
}

.newsletter strong,
.newsletter p {
  display: block;
  margin: 0;
}

.newsletter p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.subscribe-form {
  display: flex;
  flex: 1;
  max-width: 490px;
  gap: 0;
}

.subscribe-form input {
  height: 44px;
  color: var(--white);
  background: #17191e;
  border-color: #343741;
  border-radius: 8px 0 0 8px;
}

.subscribe-form button {
  min-height: 44px;
  border-radius: 0 8px 8px 0;
}

.socials {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.socials a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  font-size: 19px;
  font-weight: 800;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.footer-legal button {
  color: inherit;
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.footer-legal a:hover,
.footer-legal button:hover {
  color: var(--orange);
}

.modal-open {
  overflow: hidden;
}

.modal-backdrop {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.74);
}

.modal-backdrop[hidden] {
  display: none;
}

.privacy-modal {
  position: relative;
  width: min(780px, 100%);
  max-height: min(720px, 92vh);
  overflow: auto;
  padding: clamp(24px, 4vw, 42px);
  color: #17191e;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.45);
}

.privacy-modal h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 38px);
}

.privacy-modal-body {
  display: grid;
  gap: 14px;
  color: #454b57;
  line-height: 1.62;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  color: #17191e;
  background: #f1f2f4;
  border: 0;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
}

.modal-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 144px;
  min-height: 46px;
  padding: 0 22px;
  margin-top: 24px;
  color: #fff;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  border: 0;
  border-radius: 12px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #fff;
  background: var(--orange);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(255, 106, 0, 0.32);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.legal-page {
  min-height: 100vh;
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--black);
}

.legal-content {
  max-width: 760px;
}

.legal-content h1 {
  margin: 0 0 24px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.05;
}

.legal-content h2 {
  margin: 34px 0 10px;
  color: var(--orange);
  font-size: 24px;
}

.legal-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  line-height: 1.75;
}

.legal-content a {
  color: var(--orange);
  font-weight: 900;
}

.admin-page {
  min-height: 100vh;
  padding: 24px clamp(18px, 5vw, 72px) 72px;
  color: var(--white);
  background: #070707;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 48px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.admin-panel + .admin-panel {
  margin-top: 64px;
}

.admin-panel h1 {
  margin: 0 0 28px;
  font-size: clamp(38px, 5vw, 68px);
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
}

.admin-table {
  width: 100%;
  min-width: 1180px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.05);
}

.admin-table th,
.admin-table td {
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  white-space: nowrap;
}

.admin-table th {
  color: var(--orange);
}

.admin-table select {
  height: 36px;
  color: var(--white);
  background: #111;
  border: 1px solid rgba(255, 106, 0, 0.5);
  border-radius: 8px;
}

.admin-empty {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 530px;
  }

  .hero-main-visual {
    justify-content: center;
    min-height: 520px;
  }

  .hero-image-frame {
    width: min(920px, 96vw);
    min-height: 520px;
  }

  .hero-main-image {
    object-position: center;
  }

  .phone {
    left: 16%;
  }

  .brand-bag {
    right: 8%;
  }

  .compact-bag {
    right: 3%;
  }

  .signup-layout {
    grid-template-columns: 1fr;
  }

  .stats-card {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .stats-card h3 {
    grid-column: 1 / -1;
  }

  .stats-card article {
    grid-template-columns: 46px 1fr;
  }

  .stats-card strong {
    align-self: end;
  }

  .stats-card p {
    grid-column: 2;
  }
}

@media (max-width: 980px) {
  .top-nav {
    display: none;
  }

  .forms-row,
  .stats-card {
    grid-template-columns: 1fr;
  }

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

  .customer-section {
    grid-template-columns: 1fr;
  }

  .courier-section {
    grid-template-columns: 1fr;
  }

  .merchant-section {
    grid-template-columns: 1fr;
  }

  .customer-visual {
    order: 2;
  }

  .courier-visual {
    order: 2;
  }

  .merchant-visual {
    order: 2;
  }

  .newsletter,
  .subscribe-form,
  .about-copy {
    min-width: 0;
    max-width: none;
    width: 100%;
  }

  .about-copy {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding: 0 16px 34px;
  }

  .site-header {
    height: 72px;
    gap: 14px;
  }

  .logo {
    font-size: 16px;
  }

  .logo-mark {
    font-size: 38px;
  }

  .header-controls {
    gap: 8px;
  }

  .language-switch,
  .login {
    min-width: 58px;
    height: 38px;
    font-size: 13px;
  }

  .language-switch button {
    min-width: 34px;
    height: 30px;
    font-size: 12px;
  }

  .hero-grid {
    min-height: 0;
    gap: 24px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 15px;
  }

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

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

  .benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .benefits span {
    width: 58px;
    height: 52px;
    font-size: 32px;
  }

  .benefits p {
    font-size: 15px;
  }

  .bonus-panel {
    grid-template-columns: 58px 1fr;
  }

  .bonus-panel a {
    grid-column: 1 / -1;
    width: 100%;
  }

  .hero-art {
    min-height: 450px;
  }

  .hero-main-visual {
    min-height: 330px;
  }

  .hero-image-frame {
    width: min(680px, 100%);
    min-height: 390px;
  }

  .hero-main-image {
    object-fit: contain;
    object-position: center;
  }

  .app-mockup {
    width: min(330px, 78vw);
  }

  .phone {
    left: 50%;
    width: 246px;
    height: 474px;
    transform: translateX(-54%) rotate(4deg);
  }

  .brand-bag {
    right: -106px;
    top: 34px;
    width: 280px;
    height: 280px;
  }

  .compact-bag {
    display: none;
  }

  .brand-bag span {
    font-size: 96px;
  }

  .brand-bag strong {
    bottom: 48px;
    font-size: 31px;
  }

  .meal-box {
    right: 28px;
    bottom: 42px;
    width: 190px;
  }

  .coffee-cup {
    right: -4px;
    width: 76px;
    height: 132px;
  }

  .signup-zone,
  .express-strip,
  .customer-section,
  .courier-section,
  .merchant-section,
  .about-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .customer-section,
  .courier-section,
  .merchant-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .customer-copy h2,
  .courier-copy h2,
  .merchant-copy h2 {
    font-size: 37px;
  }

  .customer-copy > p,
  .courier-copy > p,
  .merchant-copy > p {
    font-size: 17px;
  }

  .customer-benefits,
  .courier-benefits,
  .merchant-benefits,
  .field-grid,
  .referral-row {
    grid-template-columns: 1fr;
  }

  .customer-form,
  .merchant-form {
    padding: 18px;
    border-radius: 22px;
  }

  .signup-heading h2 {
    font-size: 27px;
  }

  .site-footer {
    margin-left: 16px;
    margin-right: 16px;
  }

  .subscribe-form {
    flex-direction: column;
    gap: 10px;
  }

  .subscribe-form input,
  .subscribe-form button {
    border-radius: var(--radius);
  }

  .socials {
    flex-wrap: wrap;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }
}
