:root {
  --bg: #000000;
  --surface: #1c1c1e;
  --surface-2: #2c2c2e;
  --gray: #8e8e93;
  --gray-2: #636366;
  --gray-3: #48484a;
  --gray-4: #3a3a3c;
  --text: #ffffff;
  --text-2: rgba(235, 235, 245, 0.6);
  --text-3: rgba(235, 235, 245, 0.3);
  --blue: #0a84ff;
  --green: #30d158;
  --red: #ff453a;
  --orange: #ff9f0a;
  --purple: #bf5af2;
  --glass: rgba(28, 28, 30, 0.62);
  --glass-border: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Geist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  user-select: none;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
}

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

button,
input,
textarea {
  font: inherit;
  user-select: text;
}

[v-cloak] {
  display: none;
}

.material-symbols-rounded {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 20px;
  line-height: 1;
  display: inline-flex;
  direction: ltr;
  font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

.topbar {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.pill-nav {
  width: min(1180px, 100%);
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: rgba(28, 28, 30, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(28px) saturate(170%);
}

.brand,
.nav-actions,
.nav-links,
.bot-head > div,
.hero-actions,
.contact-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--text);
  background: var(--blue);
  background-image: url("/assets/logo.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 74%;
  font-size: 0;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34), 0 12px 30px rgba(10, 132, 255, 0.28);
  overflow: hidden;
}

.brand-mark img,
.bot-avatar img {
  width: 74%;
  height: 74%;
  object-fit: contain;
}

.brand-mark:has(img),
.bot-avatar:has(img) {
  background-image: none;
}

.brand-text {
  font-size: 15px;
  font-weight: 700;
}

.nav-links {
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text-2);
  font-size: 14px;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.nav-actions {
  gap: 8px;
}

.bot-link,
.login-link,
.primary-button,
.secondary-button,
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.bot-link,
.primary-button {
  color: var(--text);
  background: var(--blue);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26), 0 16px 44px rgba(10, 132, 255, 0.25);
}

.bot-link {
  padding: 0 15px;
  font-size: 14px;
  font-weight: 650;
}

.telegram-icon {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  display: inline-block;
  background: currentColor;
  mask: url("https://cdn.jsdelivr.net/gh/glincker/thesvg@main/public/icons/telegram/mono.svg") center / contain no-repeat;
}

.bot-link .material-symbols-rounded,
.hero-actions .primary-button[href*="t.me"] .material-symbols-rounded,
.hero-actions .secondary-button[href*="t.me"] .material-symbols-rounded,
.promo-card .primary-button[href*="t.me"] .material-symbols-rounded,
.contact-links a[href*="t.me"] .material-symbols-rounded {
  width: 19px;
  height: 19px;
  overflow: hidden;
  color: transparent;
  background: #ffffff;
  mask: url("https://cdn.jsdelivr.net/gh/glincker/thesvg@main/public/icons/telegram/mono.svg") center / contain no-repeat;
}

.login-link,
.secondary-button,
.menu-toggle {
  color: var(--text);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.06);
}

.login-link {
  padding: 0 14px;
  font-size: 14px;
  font-weight: 650;
}

.menu-toggle {
  display: none;
  width: 42px;
}

.bot-link:hover,
.login-link:hover,
.primary-button:hover,
.secondary-button:hover,
.menu-toggle:hover {
  transform: translateY(-1px);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
  scroll-margin-top: 110px;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: 56px;
  padding-top: 132px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--text-2);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(48, 209, 88, 0.12);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(48px, 7vw, 84px);
  line-height: 0.96;
  font-weight: 800;
}

h2 {
  max-width: 780px;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.02;
  font-weight: 760;
}

h3 {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}

p {
  color: var(--text-2);
  line-height: 1.6;
}

.hero-lead {
  max-width: 620px;
  margin-top: 22px;
  font-size: 19px;
}

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

.primary-button,
.secondary-button {
  min-height: 50px;
  padding: 0 20px;
  font-weight: 700;
}

.secondary-button {
  background: rgba(255, 255, 255, 0.08);
}

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

.metrics div,
.glass-card,
.bot-card,
.process-step,
.case-card,
.promo-card,
.lead-form,
.faq-item,
.wholesale-panel {
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(26px) saturate(150%);
  box-shadow: var(--shadow);
}

.metrics div {
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border-radius: 22px;
}

.metrics strong {
  font-size: 24px;
}

.metrics span {
  color: var(--text-2);
  font-size: 13px;
}

.bot-card {
  border-radius: 34px;
  padding: 14px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(28, 28, 30, 0.72);
}

.bot-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 6px 6px 14px;
}

.bot-head > div {
  gap: 12px;
}

.bot-avatar {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--blue) url("/assets/logo.png") center / 74% no-repeat;
  color: transparent;
  font-size: 0;
  font-weight: 800;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32), 0 12px 30px rgba(10, 132, 255, 0.24);
}

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

.bot-head span:not(.bot-avatar):not(.live-badge) {
  color: var(--text-2);
  font-size: 13px;
}

.live-badge {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(48, 209, 88, 0.1);
  font-size: 12px;
  font-weight: 800;
}

.chat {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 376px;
  padding: 18px 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    rgba(10, 10, 12, 0.44);
  background-size: 34px 34px;
}

.message,
.quote-card {
  position: relative;
  border-radius: 22px;
  padding: 14px 16px;
}

.message {
  max-width: 82%;
  color: var(--text);
  background: rgba(44, 44, 46, 0.94);
  line-height: 1.45;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.message.bot {
  align-self: flex-start;
  border-bottom-left-radius: 7px;
}

.message.user {
  align-self: flex-end;
  color: var(--text);
  background: var(--blue);
  border-bottom-right-radius: 7px;
}

.message.small {
  color: var(--text-2);
  font-size: 14px;
}

.quote-card {
  width: min(100%, 340px);
  align-self: flex-start;
  background: rgba(28, 28, 30, 0.94);
  border: 1px solid var(--glass-border);
  border-bottom-left-radius: 7px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
}

.quote-top,
.quote-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.quote-top {
  justify-content: flex-start;
  margin-bottom: 12px;
  color: var(--text-2);
  font-weight: 700;
}

.quote-line {
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.quote-line span {
  color: var(--text-2);
}

.quote-line.accent strong {
  color: var(--green);
}

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

.section-heading p,
.split-heading p {
  max-width: 620px;
  margin-top: 16px;
  font-size: 18px;
}

.section-heading.compact {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading.compact h2,
.section-heading.compact p {
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.delivery-section {
  width: min(1220px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 46px;
  padding-top: 112px;
  padding-bottom: 112px;
}

.delivery-section .section-heading {
  max-width: 900px;
  margin-bottom: 0;
  text-align: left;
}

.delivery-section .section-heading h2 {
  max-width: 520px;
  font-size: clamp(36px, 3.9vw, 58px);
  line-height: 1;
}

.delivery-section .section-heading p {
  max-width: 470px;
  margin-top: 18px;
  color: rgba(235, 235, 245, 0.56);
}

.split-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

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

.glass-card {
  min-height: 230px;
  padding: 24px;
  border-radius: 28px;
}

.glass-card .material-symbols-rounded {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 36px;
  border-radius: 16px;
  color: var(--blue);
  background: rgba(10, 132, 255, 0.12);
}

.glass-card p {
  margin-top: 12px;
  font-size: 15px;
}

.shop-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.shop-tile {
  min-height: 132px;
  display: grid;
  place-items: center;
  padding: 8px;
  border: 1px solid var(--glass-border);
  border-radius: 26px;
  background: var(--surface);
}

.shop-logo-frame {
  width: min(132px, 100%);
  height: 68px;
  display: grid;
  place-items: center;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 16px 34px rgba(0, 0, 0, 0.22);
}

.shop-logo-frame img {
  max-width: 100%;
  max-height: 40px;
  object-fit: contain;
}

.shop-logo-frame.is-wide {
  width: min(210px, 100%);
}

.shop-logo-frame.is-wide img {
  max-height: 60px;
}

.shop-logo-frame.is-count {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--glass-border);
}

.shop-logo-frame strong {
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
}

.shop-tile > img {
  width: min(132px, 100%);
  height: 68px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 16px 34px rgba(0, 0, 0, 0.22);
  object-fit: contain;
}

.shop-tile > img[alt="Newegg"] {
  width: min(210px, 100%);
  padding: 4px 6px;
}

.shop-tile > img + span {
  display: none;
}

.shop-tile > span:only-child {
  width: min(132px, 100%);
  height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  font-size: 24px;
  font-weight: 800;
}

.process {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 0;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: 34px;
  background: rgba(28, 28, 30, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(28px) saturate(150%);
}

.process-step {
  position: relative;
  min-height: 116px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  column-gap: 18px;
  overflow: hidden;
  padding: 18px 72px 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.process-step::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  border-radius: inherit;
  background: rgba(10, 132, 255, 0.1);
  opacity: 0;
  transition: opacity 220ms ease;
}

.process-step:hover::before {
  opacity: 1;
}

.process-step::after {
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.14);
  font-family: "Material Symbols Rounded";
  font-size: 34px;
  line-height: 1;
  font-feature-settings: "liga";
  transform: translateY(-50%);
}

.process-step:nth-child(1)::after {
  content: "person_check";
}

.process-step:nth-child(2)::after {
  content: "link";
}

.process-step:nth-child(3)::after {
  content: "inventory_2";
}

.process-step:nth-child(4)::after {
  content: "local_shipping";
}

.step-number {
  position: relative;
  z-index: 1;
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 0;
  border: 1px solid rgba(10, 132, 255, 0.4);
  border-radius: 50%;
  color: var(--text);
  background: rgba(10, 132, 255, 0.16);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 0 0 7px rgba(10, 132, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.process-step h3 {
  position: relative;
  z-index: 1;
  grid-column: 2;
  margin-top: 0;
  font-size: 19px;
  letter-spacing: 0;
}

.process-step p {
  position: relative;
  z-index: 1;
  grid-column: 2;
  margin-top: 12px;
  max-width: 520px;
  color: rgba(235, 235, 245, 0.56);
  font-size: 15px;
  line-height: 1.55;
}

.wholesale-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 36px;
  padding: 34px;
  border-radius: 34px;
}

.wholesale-panel p {
  max-width: 620px;
  margin-top: 18px;
  font-size: 18px;
}

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

.wholesale-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 14px;
  border-radius: 18px;
  color: var(--text-2);
  background: rgba(255, 255, 255, 0.06);
}

.wholesale-list .material-symbols-rounded {
  color: var(--green);
}

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

.case-card {
  min-height: 190px;
  padding: 24px;
  border-radius: 28px;
}

.case-card span {
  color: var(--text-2);
  font-size: 14px;
  font-weight: 700;
}

.case-card strong {
  display: block;
  margin-top: 20px;
  font-size: 46px;
  line-height: 1;
}

.case-card p {
  margin-top: 18px;
}

.promo-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 34px;
}

.promo-card p {
  max-width: 560px;
  margin-top: 14px;
  font-size: 18px;
}

.contacts-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 0.72fr);
  gap: 56px;
  align-items: center;
}

.contact-copy p {
  max-width: 600px;
  margin-top: 18px;
  font-size: 18px;
}

.contact-links {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  color: var(--text-2);
  background: rgba(255, 255, 255, 0.06);
}

.contact-hub {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--glass-border);
  border-radius: 34px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(28, 28, 30, 0.66);
  box-shadow: var(--shadow);
  backdrop-filter: blur(28px) saturate(150%);
}

.hub-top {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background:
    radial-gradient(circle at 82% 12%, rgba(10, 132, 255, 0.22), transparent 34%),
    rgba(255, 255, 255, 0.045);
}

.hub-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin-bottom: auto;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(48, 209, 88, 0.1);
  font-size: 12px;
  font-weight: 800;
}

.hub-status .status-dot {
  width: 7px;
  height: 7px;
  box-shadow: none;
}

.hub-top strong {
  font-size: 30px;
  line-height: 1.05;
}

.hub-top p {
  max-width: 380px;
  margin-top: 12px;
  color: rgba(235, 235, 245, 0.58);
  font-size: 15px;
}

.hub-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hub-action {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 750;
  transition: transform 180ms ease, background 180ms ease;
}

.hub-action.primary {
  border-color: transparent;
  background: var(--blue);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26), 0 16px 44px rgba(10, 132, 255, 0.22);
}

.hub-action:hover {
  transform: translateY(-1px);
}

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

.hub-grid div {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.hub-grid .material-symbols-rounded {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border-radius: 14px;
  color: var(--blue);
  background: rgba(10, 132, 255, 0.12);
}

.hub-grid strong {
  margin-top: 22px;
  font-size: 16px;
}

.hub-grid p {
  margin-top: 8px;
  color: rgba(235, 235, 245, 0.52);
  font-size: 13px;
  line-height: 1.45;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 30px;
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form label span {
  color: var(--text-2);
  font-size: 13px;
  font-weight: 700;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 18px;
  outline: 0;
  color: var(--text);
  background: var(--surface-2);
  transition: border-color 160ms ease, background 160ms ease;
}

.lead-form input {
  height: 52px;
  padding: 0 16px;
}

.lead-form textarea {
  resize: vertical;
  min-height: 124px;
  padding: 14px 16px;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: var(--text-3);
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(10, 132, 255, 0.55);
  background: #242426;
}

.form-button {
  width: 100%;
}

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

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

.faq-item {
  overflow: hidden;
  border-radius: 24px;
}

.faq-item button {
  width: 100%;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  padding: 0 22px;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
}

.faq-item .material-symbols-rounded {
  color: var(--text-2);
  transition: transform 180ms ease;
}

.faq-item p {
  max-height: 0;
  padding: 0 22px;
  opacity: 0;
  transition: max-height 220ms ease, padding 220ms ease, opacity 180ms ease;
}

.faq-item.open p {
  max-height: 180px;
  padding: 0 22px 22px;
  opacity: 1;
}

.faq-item.open .material-symbols-rounded {
  transform: rotate(180deg);
}

.footer {
  width: min(1180px, calc(100% - 40px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  padding: 36px 0 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.footer-links a {
  color: var(--text-2);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 580ms ease, transform 580ms ease;
  transition-delay: var(--delay, 0ms);
}

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

@media (max-width: 1020px) {
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--glass-border);
    border-radius: 26px;
    background: rgba(28, 28, 30, 0.92);
    backdrop-filter: blur(24px);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 14px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero,
  .contacts-section,
  .delivery-section,
  .wholesale-panel {
    grid-template-columns: 1fr;
  }

  .delivery-section {
    gap: 30px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .delivery-section .section-heading {
    max-width: 760px;
    text-align: center;
  }

  .delivery-section .section-heading h2,
  .delivery-section .section-heading p {
    margin-left: auto;
    margin-right: auto;
  }

  .contacts-section {
    gap: 30px;
  }

  .contact-copy {
    text-align: center;
  }

  .contact-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-links {
    justify-content: center;
  }

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

  .hub-grid div {
    min-height: 122px;
  }

  .hub-grid strong {
    margin-top: 18px;
  }

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

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

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

@media (max-width: 720px) {
  .topbar {
    top: 10px;
    padding: 0 12px;
  }

  .pill-nav {
    min-height: 58px;
    gap: 8px;
    padding: 8px;
  }

  .hub-actions {
    grid-template-columns: 1fr;
  }

  .brand-text,
  .login-link span:not(.material-symbols-rounded),
  .bot-link span:not(.material-symbols-rounded):not(.telegram-icon) {
    display: none;
  }

  .brand-mark,
  .bot-link,
  .login-link,
  .menu-toggle {
    width: 42px;
    padding: 0;
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 68px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 110px;
    gap: 34px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-lead,
  .section-heading p,
  .split-heading p,
  .wholesale-panel p,
  .promo-card p,
  .contact-copy p {
    font-size: 16px;
  }

  .metrics,
  .feature-grid,
  .case-grid,
  .shop-strip {
    grid-template-columns: 1fr;
  }

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

  .delivery-section .process {
    padding: 12px;
    border-radius: 28px;
  }

  .process-step {
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 14px;
    min-height: 118px;
    padding: 16px 54px 16px 14px;
  }

  .process-step::after {
    right: 16px;
    font-size: 28px;
  }

  .step-number {
    width: 36px;
    height: 36px;
  }

  .metrics div {
    min-height: 76px;
  }

  .split-heading,
  .promo-card,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .bot-card,
  .wholesale-panel,
  .promo-card {
    border-radius: 28px;
    padding: 8px;
  }

  .case-card strong {
    font-size: 38px;
  }
}
