:root {
  --bg: #050505;
  --panel: rgba(16, 16, 18, 0.94);
  --panel-strong: #0d0d10;
  --panel-soft: #141416;
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(56, 189, 248, 0.42);
  --text: #f5f5f7;
  --muted: #86868f;
  --accent: #38bdf8;
  --accent-2: #2563eb;
  --cyan: #38bdf8;
  --green: #00d26a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --content: min(1120px, calc(100vw - 32px));
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(circle at top center, rgba(56, 189, 248, 0.18), transparent 30%),
    linear-gradient(180deg, #06111a 0%, #050505 30%, #04110f 100%);
  color: var(--text);
}

body[data-theme="light"] {
  --panel: rgba(255, 255, 255, 0.94);
  --panel-strong: #ffffff;
  --panel-soft: #f7f8fc;
  --border: rgba(148, 163, 184, 0.18);
  --border-strong: rgba(59, 130, 246, 0.28);
  --text: #13151a;
  --muted: #64748b;
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
  color-scheme: light;
  background:
    radial-gradient(circle at top center, rgba(125, 211, 252, 0.18), transparent 28%),
    radial-gradient(circle at left bottom, rgba(59, 130, 246, 0.07), transparent 24%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 36%, #f3f9ff 100%);
}

button,
input,
a {
  font: inherit;
}

button {
  cursor: pointer;
  color: inherit;
}

svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 8, 10, 0.72);
  backdrop-filter: blur(16px);
}

.topbar .icon-button {
  position: absolute;
  left: 20px;
}

.theme-toggle {
  position: absolute;
  right: 20px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
}

.brand,
.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand {
  font-size: 1.1rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #38bdf8 0%, #2563eb 100%);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.24);
}

.brand-mark svg {
  width: 1.8rem;
  height: 1.8rem;
}

.brand-mark.large {
  width: 46px;
  height: 46px;
  border-radius: 14px;
}

main {
  width: var(--content);
  margin: 0 auto;
  padding: 28px 0 120px;
  overflow-x: clip;
}

.screen {
  display: none;
}

.screen.active {
  display: block;
  animation: fade-up 0.45s ease;
}

.register-card,
.dashboard,
.wizard-screen,
.success-card,
.stickers-screen,
.landing-shell {
  width: min(100%, 1040px);
  margin: 0 auto;
}

.landing-shell {
  display: grid;
  gap: 26px;
}

.landing-hero,
.landing-section,
.landing-cta-card {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  padding: 34px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.22), transparent 34%),
    radial-gradient(circle at left bottom, rgba(37, 99, 235, 0.16), transparent 32%),
    rgba(255, 255, 255, 0.02);
}

.landing-kicker,
.landing-section-head span,
.landing-cta-card span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.26);
  background: rgba(37, 99, 235, 0.12);
  color: #9ed8ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-copy h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  max-width: 12ch;
}

.landing-copy p,
.landing-feature-card p,
.landing-flow-step p,
.landing-audience-card p,
.landing-cta-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.62;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.landing-ghost {
  min-width: 190px;
}

.landing-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.landing-metric,
.landing-preview-panel,
.landing-feature-card,
.landing-flow-step,
.landing-audience-card {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.025);
  border-radius: 22px;
}

.landing-metric {
  padding: 16px;
}

.landing-metric strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.landing-metric span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.landing-preview {
  position: relative;
  min-height: 100%;
}

.landing-preview-card {
  border-radius: 28px;
  border: 1px solid rgba(56, 189, 248, 0.18);
  background:
    linear-gradient(180deg, rgba(12, 17, 29, 0.96), rgba(10, 14, 24, 0.98));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.landing-preview-main {
  padding: 18px;
}

.landing-preview-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: #92a3bc;
  font-size: 0.84rem;
}

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

.landing-preview-panel {
  padding: 16px;
}

.landing-preview-panel small {
  display: block;
  margin-bottom: 8px;
  color: #88a1bd;
  font-size: 0.82rem;
}

.landing-preview-panel strong {
  font-size: 1.6rem;
}

.landing-preview-panel p {
  margin: 0;
  color: #dce6f2;
  line-height: 1.45;
}

.landing-preview-panel.wide {
  grid-column: span 2;
}

.wb-tone {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(109, 40, 217, 0.12));
}

.ozon-tone {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(56, 189, 248, 0.1));
}

.landing-floating-card {
  position: absolute;
  right: 18px;
  bottom: -14px;
  display: grid;
  gap: 8px;
  min-width: 220px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(56, 189, 248, 0.24);
  background: linear-gradient(180deg, rgba(11, 21, 39, 0.94), rgba(9, 16, 30, 0.98));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34);
}

.landing-floating-card strong {
  font-size: 1.25rem;
}

.landing-floating-card p {
  margin: 0;
  color: var(--muted);
}

.landing-section {
  padding: 26px;
  border-radius: 26px;
}

.landing-section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}

.landing-section-head h2,
.landing-cta-card h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

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

.landing-feature-card,
.landing-audience-card {
  padding: 20px;
}

.landing-feature-card h3,
.landing-flow-step h3,
.landing-audience-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

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

.landing-flow-step {
  padding: 18px;
}

.landing-flow-step b {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #fff;
}

.landing-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at right center, rgba(56, 189, 248, 0.18), transparent 24%),
    rgba(255, 255, 255, 0.02);
}

.register-card {
  max-width: 732px;
  padding: 26px 0 0;
}

.page-copy h1 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 2.5vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.register-card .page-copy h1 {
  margin-bottom: 10px;
  font-size: clamp(3rem, 4.8vw, 4.25rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.page-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
}

.register-card .page-copy p {
  max-width: 30ch;
  font-size: 1rem;
  line-height: 1.45;
}

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

.span-2 {
  grid-column: span 2;
}

.stack-fields {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.field {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.015);
}

.register-card .subsection {
  margin-top: 22px;
}

.register-card .subsection h2 {
  margin-bottom: 14px;
  font-size: 0.92rem;
}

.register-card .choice-pill {
  min-width: 104px;
  min-height: 54px;
  padding-inline: 18px;
}

.register-card .primary-button {
  width: 100%;
  margin-top: 22px;
}

.register-card .footnote {
  margin-top: 20px;
}

body[data-theme="light"] .topbar,
body[data-theme="light"] .field,
body[data-theme="light"] .choice-pill,
body[data-theme="light"] .secondary-button,
body[data-theme="light"] .inline-chip,
body[data-theme="light"] .tab,
body[data-theme="light"] .ghost-button,
body[data-theme="light"] .ghost-panel,
body[data-theme="light"] .outline-accent,
body[data-theme="light"] .logout-button,
body[data-theme="light"] .icon-button,
body[data-theme="light"] .counter-btn,
body[data-theme="light"] .request-card,
body[data-theme="light"] .checkout-card,
body[data-theme="light"] .calendar-card,
body[data-theme="light"] .seller-card,
body[data-theme="light"] .summary-card,
body[data-theme="light"] .warehouse-card,
body[data-theme="light"] .ghost-panel,
body[data-theme="light"] .success-card,
body[data-theme="light"] .sticker-sheet,
body[data-theme="light"] .list-link,
body[data-theme="light"] .service-card,
body[data-theme="light"] .counter-card,
body[data-theme="light"] .contact-fields .field,
body[data-theme="light"] .contact-checkout,
body[data-theme="light"] .search-box {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(203, 213, 225, 0.72);
  color: #13151a;
  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.04),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

body[data-theme="light"] .service-card--accent {
  border-color: rgba(168, 85, 247, 0.22);
  background: linear-gradient(90deg, rgba(248, 240, 255, 0.98), rgba(244, 239, 255, 0.98));
}

body[data-theme="light"] .landing-hero,
body[data-theme="light"] .landing-section,
body[data-theme="light"] .landing-cta-card,
body[data-theme="light"] .landing-metric,
body[data-theme="light"] .landing-feature-card,
body[data-theme="light"] .landing-flow-step,
body[data-theme="light"] .landing-audience-card {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(203, 213, 225, 0.72);
  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.04),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

body[data-theme="light"] .landing-kicker,
body[data-theme="light"] .landing-section-head span,
body[data-theme="light"] .landing-cta-card span {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.18);
  color: #2563eb;
}

body[data-theme="light"] .landing-preview-card,
body[data-theme="light"] .landing-floating-card {
  background: linear-gradient(180deg, #f8fbff, #eef5ff);
  border-color: rgba(191, 208, 233, 0.95);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.08);
}

body[data-theme="light"] .landing-preview-head,
body[data-theme="light"] .landing-preview-panel small,
body[data-theme="light"] .landing-preview-panel p,
body[data-theme="light"] .landing-floating-card p,
body[data-theme="light"] .landing-metric span,
body[data-theme="light"] .landing-copy p,
body[data-theme="light"] .landing-feature-card p,
body[data-theme="light"] .landing-flow-step p,
body[data-theme="light"] .landing-audience-card p,
body[data-theme="light"] .landing-cta-card p {
  color: #64748b;
}

body[data-theme="light"] .landing-preview-panel strong,
body[data-theme="light"] .landing-floating-card strong {
  color: #13151a;
}

body[data-theme="light"] .service-icon {
  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

body[data-theme="light"] .service-icon svg,
body[data-theme="light"] .service-icon img,
body[data-theme="light"] .service-icon i {
  color: #ffffff;
  stroke: currentColor;
}

body[data-theme="light"] .service-icon.purple {
  background: linear-gradient(135deg, #c084fc, #7c3aed);
}

body[data-theme="light"] .service-icon.cyan {
  background: linear-gradient(135deg, #38bdf8, #2563eb);
}

body[data-theme="light"] .topbar {
  border-bottom-color: rgba(203, 213, 225, 0.42);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
}

body[data-theme="light"] .theme-toggle {
  background: rgba(255, 255, 255, 0.9);
}

body[data-theme="light"] .choice-pill.active,
body[data-theme="light"] .tab.active,
body[data-theme="light"] .warehouse-card.active,
body[data-theme="light"] .counter-btn.active {
  border-color: rgba(59, 130, 246, 0.45);
  background: linear-gradient(180deg, rgba(227, 239, 255, 0.98), rgba(219, 234, 254, 0.96));
  color: #1d4ed8;
  box-shadow: 0 10px 22px rgba(59, 130, 246, 0.12);
}

body[data-theme="light"] .pickup-slot.active {
  border-color: rgba(59, 130, 246, 0.45);
  background: linear-gradient(180deg, rgba(227, 239, 255, 0.98), rgba(219, 234, 254, 0.96));
  color: #1d4ed8;
  box-shadow: 0 10px 22px rgba(59, 130, 246, 0.12);
}

body[data-theme="light"] .tab.active .count-badge {
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #ffffff;
  box-shadow:
    0 8px 18px rgba(59, 130, 246, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

body[data-theme="light"] .count-badge {
  background: #2563eb;
  color: #ffffff;
}

body[data-theme="light"] .field input,
body[data-theme="light"] .list-link,
body[data-theme="light"] .page-copy h1,
body[data-theme="light"] .service-text strong,
body[data-theme="light"] .request-card strong,
body[data-theme="light"] .checkout-row strong,
body[data-theme="light"] .summary-card strong,
body[data-theme="light"] .calendar-head strong,
body[data-theme="light"] .seller-card strong,
body[data-theme="light"] .wizard-copy h1,
body[data-theme="light"] .contact-copy h1 {
  color: #13151a;
}

body[data-theme="light"] .page-copy p,
body[data-theme="light"] .service-text small,
body[data-theme="light"] .request-meta,
body[data-theme="light"] .warehouse-card small,
body[data-theme="light"] .warehouse-price,
body[data-theme="light"] .date-note p,
body[data-theme="light"] .date-note small,
body[data-theme="light"] .field input::placeholder,
body[data-theme="light"] .muted,
body[data-theme="light"] .footnote,
body[data-theme="light"] .count-badge {
  color: #6b7280;
}

body[data-theme="light"] .warehouse-price-primary {
  color: #2563eb;
}

body[data-theme="light"] .request-meta {
  color: #667085;
}

body[data-theme="light"] .status-pill {
  font-weight: 800;
  border: 1px solid transparent;
}

body[data-theme="light"] .status-pill[data-status="created"] {
  background: #fff4cf;
  border-color: #ffd76a;
  color: #b86b00;
}

body[data-theme="light"] .status-pill[data-status="confirmed"] {
  background: #e9fff2;
  border-color: #8be0ae;
  color: #147a3f;
}

body[data-theme="light"] .status-pill[data-status="shipped"] {
  background: #eaf6ff;
  border-color: #8dc9ff;
  color: #0d5ba8;
}

body[data-theme="light"] .status-pill[data-status="issue"] {
  background: #fff0f0;
  border-color: #ffb2b2;
  color: #c03737;
}

body[data-theme="light"] .bottom-bar {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(203, 213, 225, 0.56);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
}

body[data-theme="light"] .calendar-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 249, 247, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 24px 48px rgba(15, 23, 42, 0.08);
}

body[data-theme="light"] .calendar-day {
  background: rgba(15, 23, 42, 0.05);
  color: #1f2937;
}

body[data-theme="light"] .calendar-day.disabled {
  background: rgba(15, 23, 42, 0.035);
  color: #b0b7c3;
}

body[data-theme="light"] .calendar-day:not(.disabled):not(.selected):hover {
  background: rgba(15, 23, 42, 0.08);
}

body[data-theme="light"] .field:focus-within {
  border-color: rgba(124, 58, 237, 0.38);
  box-shadow:
    0 0 0 4px rgba(196, 181, 253, 0.26),
    0 10px 22px rgba(124, 58, 237, 0.06);
}

body[data-theme="light"] .field-icon,
body[data-theme="light"] .field-action {
  color: #94a3b8;
}

body[data-theme="light"] .request-meta {
  border-bottom-color: rgba(203, 213, 225, 0.5);
}

body[data-theme="light"] .step {
  background: rgba(255, 255, 255, 0.82);
  color: #64748b;
  border: 1px solid rgba(203, 213, 225, 0.56);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

body[data-theme="light"] .step::before {
  background: #eef2ff;
  color: #64748b;
}

body[data-theme="light"] .step.active {
  background: rgba(243, 232, 255, 0.95);
  color: #1d4ed8;
  border-color: rgba(196, 181, 253, 0.8);
}

body[data-theme="light"] .step.done {
  background: rgba(236, 253, 245, 0.96);
  color: #15803d;
  border-color: rgba(134, 239, 172, 0.7);
}

body[data-theme="light"] .step.done::before {
  background: rgba(220, 252, 231, 1);
  border-color: rgba(74, 222, 128, 0.55);
  color: #16a34a;
}

body[data-theme="light"] .service-card,
body[data-theme="light"] .warehouse-card,
body[data-theme="light"] .seller-card,
body[data-theme="light"] .summary-card,
body[data-theme="light"] .request-card,
body[data-theme="light"] .checkout-card,
body[data-theme="light"] .contact-checkout {
  border-radius: 22px;
}

body[data-theme="light"] .service-card:hover,
body[data-theme="light"] .warehouse-card:hover,
body[data-theme="light"] .request-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}

body[data-theme="light"] .counter-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 250, 252, 0.98));
  border-color: rgba(203, 213, 225, 0.7);
}

body[data-theme="light"] .counter-card small,
body[data-theme="light"] .summary-card span,
body[data-theme="light"] .contact-checkout .checkout-row span {
  color: #7c8aa0;
}

body[data-theme="light"] .counter-card strong {
  color: #111827;
}

body[data-theme="light"] .summary-card--accent {
  background: linear-gradient(180deg, rgba(233, 244, 255, 0.98), rgba(255, 255, 255, 0.95));
  border-color: rgba(147, 197, 253, 0.72);
}

body[data-theme="light"] .ghost-panel,
body[data-theme="light"] .outline-accent,
body[data-theme="light"] .secondary-button,
body[data-theme="light"] .inline-chip,
body[data-theme="light"] .logout-button,
body[data-theme="light"] .icon-button,
body[data-theme="light"] .theme-toggle {
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease,
    background-color 0.18s ease;
}

body[data-theme="light"] .ghost-panel:hover,
body[data-theme="light"] .outline-accent:hover,
body[data-theme="light"] .secondary-button:hover,
body[data-theme="light"] .inline-chip:hover,
body[data-theme="light"] .icon-button:hover,
body[data-theme="light"] .theme-toggle:hover {
  border-color: rgba(59, 130, 246, 0.28);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
}

body[data-theme="light"] .outline-accent,
body[data-theme="light"] .secondary-button,
body[data-theme="light"] .inline-chip,
body[data-theme="light"] .theme-toggle {
  color: #2563eb;
}

.field:focus-within {
  border-color: rgba(59, 130, 246, 0.72);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.14);
}

.field.is-invalid {
  border-color: rgba(255, 93, 143, 0.85);
  box-shadow: 0 0 0 3px rgba(255, 93, 143, 0.14);
}

.field input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 0.98rem;
}

.field textarea {
  width: 100%;
  min-height: 92px;
  border: 0;
  outline: 0;
  resize: vertical;
  background: transparent;
  color: var(--text);
  font: inherit;
  padding: 14px 0;
}

.field input::placeholder {
  color: #6f6f77;
}

.field textarea::placeholder {
  color: #6f6f77;
}

.field-icon,
.field-action {
  display: inline-flex;
  color: #7b7b84;
}

.icon-plain {
  padding: 0;
  border: 0;
  background: transparent;
}

.subsection {
  margin-top: 22px;
}

.subsection h2,
.checkout-card h2 {
  margin: 0 0 14px;
  font-size: 1.1rem;
}

.toggle-grid,
.dual-actions,
.summary-row,
.action-row,
.tab-row {
  display: flex;
  gap: 12px;
}

.choice-pill,
.secondary-button,
.inline-chip,
.tab,
.ghost-button,
.ghost-panel,
.outline-accent,
.logout-button,
.icon-button,
.counter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.choice-pill.active,
.tab.active,
.warehouse-card.active,
.counter-btn.active {
  border-color: rgba(59, 130, 246, 0.44);
  background: rgba(37, 99, 235, 0.16);
  color: #cfe7ff;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 60px;
  padding: 0 22px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(90deg, #2563eb 0%, #38bdf8 50%, #1d4ed8 100%);
  color: white;
  font-weight: 700;
  box-shadow: 0 18px 44px rgba(37, 99, 235, 0.28);
}

.primary-button.full {
  flex: 1;
}

.footnote {
  margin: 18px 0 0;
  color: var(--muted);
  text-align: center;
}

.form-note {
  min-height: 20px;
  margin: 14px 0 0;
  color: #ff7aa8;
  font-size: 0.92rem;
}

.footnote a,
.accent-text,
.accent-heading {
  color: #d31dff;
  text-decoration: none;
  font-weight: 700;
}

.dashboard-copy {
  margin-top: 18px;
}

.action-row {
  flex-wrap: wrap;
}

.secondary-button {
  border-color: rgba(0, 194, 255, 0.46);
  color: #89ecff;
}

.inline-chip {
  padding-inline: 16px;
}

.logout-button,
.icon-button {
  width: 52px;
  padding: 0;
}

.service-cards {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.service-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 26px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  text-align: left;
}

.service-card--accent {
  border-color: rgba(180, 109, 255, 0.42);
  background: linear-gradient(90deg, rgba(40, 18, 58, 0.96), rgba(29, 18, 44, 0.94));
}

.service-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
}

.service-icon.purple {
  background: linear-gradient(135deg, #c084fc, #7c3aed);
}

.service-icon.cyan {
  background: linear-gradient(135deg, #38bdf8, #2563eb);
}

.service-text {
  display: grid;
  gap: 4px;
}

.service-text strong {
  font-size: 1.7rem;
}

.service-text small {
  color: var(--muted);
  font-size: 1rem;
}

.service-arrow {
  font-size: 2rem;
}

.tab-row {
  margin-top: 14px;
}

.tab {
  flex: 1;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.015);
}

.count-badge {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #2563eb;
  font-size: 0.85rem;
}

.empty-state {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 68px 24px;
  color: var(--muted);
}

.empty-icon {
  color: #8a8a92;
}

.outline-accent {
  border-color: rgba(59, 130, 246, 0.42);
  color: #7cc4ff;
}

.request-card,
.checkout-card,
.calendar-card,
.seller-card,
.summary-card,
.warehouse-card,
.ghost-panel,
.success-card,
.sticker-sheet,
.list-link {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.request-card {
  margin-top: 16px;
  padding: 22px;
  border-radius: 22px;
  cursor: pointer;
}

.request-header,
.request-footer,
.checkout-row,
.calendar-head,
.warehouse-card,
.summary-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.request-header {
  margin-bottom: 14px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
}

.status-pill[data-status="created"] {
  background: rgba(255, 184, 0, 0.12);
  color: #ffca57;
}

.status-pill[data-status="confirmed"] {
  background: rgba(0, 210, 106, 0.12);
  color: #31f18a;
}

.status-pill[data-status="shipped"] {
  background: rgba(0, 194, 255, 0.12);
  color: #69d8ff;
}

.status-pill[data-status="issue"] {
  background: rgba(239, 68, 68, 0.12);
  color: #ff8d8d;
}

.request-meta {
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 14px;
}

.request-meta p {
  margin: 0 0 10px;
}

.request-footer strong {
  font-size: 1rem;
}

.link-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.list-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-radius: 18px;
  color: var(--text);
  text-decoration: none;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #63636b;
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1;
}

.step::before {
  content: attr(data-step);
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #8a8a92;
  font-size: 0.82rem;
  font-weight: 800;
}

.step.active {
  background: rgba(147, 25, 255, 0.12);
  color: white;
}

.step.done {
  background: rgba(0, 210, 106, 0.1);
  color: #20dd81;
}

.step.active::before {
  background: linear-gradient(180deg, #d21cff, #8c2dff);
  color: white;
  box-shadow: 0 8px 22px rgba(183, 0, 255, 0.28);
}

.step.done::before {
  content: "✓";
  background: rgba(0, 210, 106, 0.14);
  color: #20dd81;
  border: 1px solid rgba(0, 210, 106, 0.45);
}

.wizard-copy {
  margin-bottom: 24px;
}

.wizard-copy h1 {
  font-size: clamp(1.9rem, 2.4vw, 2.7rem);
}

.wizard-copy p {
  font-size: 1rem;
}

.warehouse-list {
  display: grid;
  gap: 12px;
  max-height: 56vh;
  overflow: auto;
  padding-right: 4px;
}

.section-tag {
  margin: 12px 0 2px;
  color: #da30ff;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.warehouse-card {
  padding: 18px 20px;
  border-radius: 16px;
  text-align: left;
}

.warehouse-card-main {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
}

.warehouse-copy {
  display: grid;
  flex: 1 1 auto;
  min-width: 0;
  gap: 3px;
}

.warehouse-marker {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(69, 41, 105, 0.88), rgba(40, 27, 76, 0.92));
  color: #ff6b6b;
  flex: 0 0 auto;
}

.warehouse-marker svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.warehouse-card strong,
.summary-card strong,
.checkout-row strong,
.calendar-head strong,
.seller-card strong {
  font-size: 1.05rem;
}

.warehouse-card small,
.warehouse-price,
.date-note p,
.date-note small {
  color: var(--muted);
}

.warehouse-schedule {
  display: block;
  line-height: 1.24;
}

.warehouse-price {
  display: grid;
  flex: 0 0 auto;
  min-width: 112px;
  justify-items: start;
  text-align: right;
  gap: 3px;
  align-self: flex-start;
  margin-left: auto;
}

.warehouse-price-primary {
  color: #b24cff;
  font-weight: 800;
}

.pickup-panel {
  margin-top: 18px;
}

.pickup-shell {
  max-width: 620px;
  display: grid;
  gap: 12px;
}

.pickup-copy {
  margin-bottom: 4px;
}

.pickup-copy h2 {
  margin: 0 0 6px;
  font-size: 2rem;
}

.pickup-copy p {
  margin: 0;
  color: var(--muted);
}

.pickup-label {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 4px;
}

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

.pickup-slot {
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  color: #c8c8cf;
  font-weight: 600;
}

.pickup-slot.active {
  border-color: rgba(174, 0, 255, 0.52);
  background: rgba(145, 0, 255, 0.1);
  color: #f2d9ff;
  box-shadow: 0 14px 30px rgba(157, 0, 255, 0.16);
}

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

.pickup-counter-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.015);
}

.pickup-counter-card strong {
  font-size: 1.6rem;
  color: #dd22ff;
}

.form-error {
  min-height: 20px;
  margin: 4px 0 0;
  color: #f472b6;
  font-size: 0.94rem;
}

.bottom-bar {
  position: sticky;
  bottom: 12px;
  display: flex;
  gap: 12px;
  margin-top: 28px;
  padding: 12px;
  border-radius: 24px;
  background: rgba(9, 9, 11, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.date-layout {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 420px;
  gap: 24px;
  align-items: start;
}

.calendar-card,
.seller-card,
.checkout-card,
.success-card,
.sticker-sheet {
  border-radius: 24px;
  padding: 20px;
}

.calendar-card {
  width: 420px;
  padding: 20px 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(180deg, rgba(24, 15, 30, 0.92), rgba(11, 17, 16, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 24px 48px rgba(0, 0, 0, 0.28);
}

.icon-button.small {
  width: 40px;
  min-height: 40px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

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

.calendar-empty {
  width: 48px;
  height: 48px;
  justify-self: center;
}

.calendar-grid.week {
  margin-top: 18px;
  color: #7d7d88;
  text-align: center;
  font-size: 0.92rem;
}

.calendar-day {
  width: 48px;
  height: 48px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #f2f2f5;
  font-size: 1rem;
  justify-self: center;
  transition:
    transform 0.16s ease,
    background-color 0.16s ease,
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    color 0.16s ease;
}

.calendar-day.muted {
  color: #a6a6b1;
}

.calendar-day.disabled {
  color: #404048;
  background: rgba(255, 255, 255, 0.018);
  opacity: 0.55;
  pointer-events: none;
}

.calendar-day.selected {
  border-color: #6dc9ff;
  background: linear-gradient(180deg, #ca0eff 0%, #822fff 100%);
  color: #fff;
  box-shadow:
    0 0 0 2px rgba(109, 201, 255, 0.95),
    0 14px 24px rgba(160, 0, 255, 0.34);
  transform: translateY(-1px);
}

.calendar-day.accent-outline {
  border-color: rgba(174, 0, 255, 0.72);
  color: #f0d3ff;
  background: rgba(255, 255, 255, 0.022);
}

.calendar-day:not(.disabled):not(.selected):hover {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.065);
  transform: translateY(-1px);
}

.date-note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.date-note strong {
  font-size: 1.08rem;
  text-transform: lowercase;
}

.date-note p {
  margin: 8px 0 10px;
  font-size: 0.98rem;
}

.date-note small {
  font-size: 0.92rem;
}

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

.cargo-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.textarea-field {
  align-items: flex-start;
  min-height: auto;
  margin-top: 10px;
}

.seller-list {
  display: grid;
  gap: 16px;
}

.counter-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.015);
}

.counter-card small {
  color: var(--muted);
}

.counter-card strong {
  display: block;
  margin-top: 4px;
  font-size: 1.45rem;
  color: #dd22ff;
}

.counter-btn {
  width: 40px;
  min-height: 40px;
  padding: 0;
  font-size: 1.5rem;
}

.seller-card {
  padding: 16px 18px;
}

.seller-card .field {
  min-height: 54px;
  padding: 0 15px;
}

.seller-card textarea {
  min-height: 74px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.ghost-panel {
  width: 100%;
  margin-top: 14px;
  justify-content: center;
  color: #9b9ba3;
}

.is-hidden {
  display: none;
}

.is-disabled {
  opacity: 0.55;
}

.summary-row {
  margin-top: 18px;
}

.summary-card {
  flex: 1;
  padding: 18px;
  border-radius: 18px;
}

.summary-card span {
  color: var(--muted);
}

.summary-card--accent {
  border-color: rgba(174, 0, 255, 0.36);
}

.checkout-card {
  margin-top: 18px;
}

.contact-screen {
  width: min(100%, 1000px);
  padding: 0 10px 88px;
}

.contact-copy {
  margin-bottom: 14px;
}

.contact-copy h1 {
  font-size: clamp(1.9rem, 3.1vw, 3rem);
  letter-spacing: -0.05em;
  margin-bottom: 6px;
}

.contact-copy p {
  font-size: 0.9rem;
  color: #8a8a92;
}

.contact-fields {
  gap: 10px;
  margin-top: 0;
  width: 100%;
  max-width: 100%;
}

.contact-fields .field {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border-radius: 16px;
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(18, 18, 20, 0.96), rgba(12, 16, 15, 0.98));
}

.contact-fields .field input {
  min-width: 0;
  font-size: 0.91rem;
}

.contact-fields .field-icon {
  color: #8d8d96;
}

.contact-checkout {
  width: 100%;
  margin-top: 18px;
  padding: 16px 18px 14px;
  border-radius: 22px;
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(16, 16, 18, 0.94), rgba(11, 14, 14, 0.98));
}

.contact-checkout h2 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.contact-checkout .checkout-row {
  padding: 11px 0;
}

.contact-checkout .checkout-row span {
  color: #8a8a92;
  font-size: 0.9rem;
}

.contact-checkout .checkout-row strong {
  font-size: 0.94rem;
}

.contact-bottom-bar {
  justify-content: center;
  bottom: 8px;
  margin-top: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.contact-bottom-bar .primary-button {
  flex: 0 1 760px;
  min-height: 54px;
  border-radius: 16px;
  font-size: 0.96rem;
  box-shadow:
    inset 0 1px 0 rgba(124, 231, 255, 0.75),
    0 10px 28px rgba(174, 0, 255, 0.22);
}

.contact-note {
  margin-top: 10px;
  text-align: center;
}

.checkout-row {
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.checkout-row:first-of-type {
  border-top: 0;
}

.success-card {
  max-width: 760px;
  margin-top: 40px;
}

.request-detail-card {
  max-width: 860px;
}

.detail-summary {
  margin-top: 24px;
}

.detail-status {
  width: fit-content;
  margin: 0 0 18px;
}

.success-icon {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background: #09f48c;
  color: #111;
  margin-bottom: 24px;
}

.success-icon svg {
  width: 38px;
  height: 38px;
  stroke-width: 2.5;
}

.success-actions {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.dual-actions {
  margin-top: 22px;
}

.dual-actions > * {
  flex: 1;
}

.sticker-sheet {
  display: grid;
  gap: 18px;
  background: #3c3c3c;
}

.sticker {
  display: grid;
  grid-template-columns: 108px 1fr 94px;
  background: #efefef;
  color: #182235;
  border-radius: 14px;
  overflow: hidden;
}

.qr-box {
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 2rem;
  border-right: 1px solid #d0d0d0;
  background:
    linear-gradient(90deg, transparent 24%, #111 24%, #111 28%, transparent 28%),
    linear-gradient(transparent 24%, #111 24%, #111 28%, transparent 28%),
    #fff;
  background-size: 26px 26px;
}

.sticker-main {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
}

.sticker-main small {
  color: #738098;
  font-size: 0.74rem;
  font-weight: 700;
}

.sticker-main strong {
  font-size: 1.1rem;
}

.sticker-side {
  display: grid;
  align-content: space-between;
  justify-items: center;
  padding: 16px 12px;
  border-left: 1px solid #d0d0d0;
}

.sticker-side strong {
  font-size: 2rem;
}

.sticker-side span {
  font-size: 1.1rem;
  font-weight: 800;
}

.sticker-side em {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-style: normal;
  font-weight: 800;
  color: #606060;
}

.sticker-dates {
  display: grid;
  gap: 4px;
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px dashed #bbb;
  font-size: 0.86rem;
  font-weight: 700;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  main {
    padding-top: 18px;
  }

  .landing-hero,
  .landing-cta-card {
    grid-template-columns: 1fr;
  }

  .landing-feature-grid,
  .landing-audience-grid,
  .landing-flow-grid,
  .landing-metrics {
    grid-template-columns: 1fr;
  }

  .landing-preview {
    min-height: auto;
  }

  .register-card,
  .success-card,
  .wizard-screen,
  .dashboard,
  .stickers-screen,
  .landing-shell {
    padding: 0;
  }

  .form-grid,
  .date-layout,
  .cargo-grid,
  .cargo-meta-grid,
  .pickup-slot-grid,
  .pickup-counter-grid {
    grid-template-columns: 1fr;
  }

  .span-2 {
    grid-column: auto;
  }

  .summary-row,
  .dual-actions,
  .toggle-grid,
  .contact-bottom-bar {
    flex-direction: column;
  }

  .date-layout {
    gap: 18px;
  }

  .calendar-card {
    width: 100%;
    max-width: 100%;
  }

  .contact-screen {
    padding-inline: 0;
  }

  .contact-bottom-bar .primary-button {
    flex-basis: auto;
    width: 100%;
  }

  .sticker {
    grid-template-columns: 88px 1fr 72px;
  }
}

@media (max-width: 680px) {
  :root {
    --content: min(100vw - 24px, 100%);
    --radius-xl: 24px;
    --radius-lg: 20px;
    --radius-md: 16px;
    --radius-sm: 12px;
  }

  .topbar {
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
  }

  .topbar .icon-button,
  .theme-toggle {
    position: static;
  }

  .brand {
    min-width: 0;
    gap: 10px;
    font-size: 1rem;
  }

  .brand span {
    max-width: 96px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .theme-toggle,
  .icon-button,
  .logout-button {
    min-height: 42px;
    width: 42px;
    padding: 0;
    border-radius: 14px;
  }

  .theme-toggle {
    width: auto;
    max-width: 132px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  main {
    padding: 14px 0 108px;
  }

  .landing-hero,
  .landing-section,
  .landing-cta-card {
    padding: 20px;
    border-radius: 22px;
  }

  .landing-copy h1 {
    max-width: none;
    font-size: 2.2rem;
  }

  .landing-floating-card {
    position: static;
    margin-top: 12px;
  }

  .page-copy h1 {
    font-size: 2rem;
  }

  .register-card .page-copy h1 {
    font-size: 2.65rem;
    line-height: 0.96;
  }

  .service-text strong {
    font-size: 1.2rem;
  }

  .summary-row,
  .dual-actions,
  .toggle-grid {
    flex-direction: column;
  }

  .action-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 46px;
    gap: 8px;
    align-items: center;
  }

  .action-row .secondary-button {
    grid-column: 1 / -1;
  }

  .action-row .inline-chip,
  .action-row .logout-button,
  .tab-row > *,
  .dual-actions > * {
    width: 100%;
  }

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

  .field {
    min-height: 50px;
    padding: 0 12px;
    gap: 10px;
    border-radius: 14px;
  }

  .field input {
    font-size: 0.92rem;
  }

  .secondary-button,
  .inline-chip,
  .tab,
  .ghost-button,
  .outline-accent,
  .logout-button,
  .choice-pill,
  .primary-button,
  .ghost-panel {
    min-height: 44px;
  }

  .inline-chip {
    justify-content: flex-start;
    padding-inline: 12px;
  }

  .secondary-button,
  .tab {
    padding-inline: 12px;
    font-size: 0.9rem;
  }

  .dashboard-copy {
    margin-top: 10px;
  }

  .dashboard-copy h1 {
    font-size: 1.9rem;
    line-height: 0.96;
  }

  .dashboard-copy p {
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .warehouse-card,
  .service-card {
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 16px;
  }

  .warehouse-price {
    width: auto;
    min-width: 96px;
    margin-left: auto;
    justify-items: end;
    text-align: right;
    gap: 3px;
  }

  .warehouse-card-main {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    column-gap: 10px;
    row-gap: 6px;
    align-items: start;
  }

  .warehouse-marker {
    grid-row: 1 / span 2;
  }

  .warehouse-copy {
    grid-column: 2;
  }

  .warehouse-card .warehouse-price {
    grid-column: 3;
    grid-row: 1 / span 2;
    align-self: start;
  }

  .service-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    align-self: center;
  }

  .service-text {
    align-content: center;
    gap: 2px;
  }

  .service-text strong {
    font-size: 0.98rem;
    line-height: 1.1;
  }

  .service-text small {
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .service-arrow {
    display: none;
  }

  .request-card,
  .calendar-card,
  .seller-card,
  .summary-card,
  .checkout-card,
  .success-card,
  .sticker-sheet,
  .list-link {
    border-radius: 20px;
  }

  .request-card,
  .calendar-card,
  .seller-card,
  .checkout-card,
  .summary-card,
  .success-card,
  .sticker-sheet {
    padding: 14px;
  }

  .request-header,
  .request-footer,
  .checkout-row,
  .summary-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .steps {
    justify-content: flex-start;
    gap: 6px;
    margin-bottom: 14px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .steps::-webkit-scrollbar {
    display: none;
  }

  .step {
    flex: 0 0 auto;
    padding: 5px 8px 5px 5px;
    font-size: 0.76rem;
  }

  .step::before {
    width: 22px;
    height: 22px;
    font-size: 0.72rem;
  }

  .warehouse-list {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .bottom-bar {
    position: sticky;
    bottom: 8px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 16px;
    padding: 8px;
    border-radius: 18px;
    z-index: 25;
  }

  .bottom-bar .primary-button {
    grid-column: 1 / -1;
  }

  .date-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .calendar-card {
    width: 100%;
    padding: 14px 12px 12px;
  }

  .calendar-head strong {
    font-size: 1rem;
    text-align: center;
  }

  .calendar-grid {
    gap: 4px;
  }

  .calendar-grid.week {
    margin-top: 14px;
    font-size: 0.82rem;
  }

  .calendar-day,
  .calendar-empty {
    width: min(100%, 38px);
    height: 38px;
  }

  .calendar-day {
    border-radius: 10px;
    font-size: 0.88rem;
  }

  .date-note {
    margin-top: 14px;
    padding-top: 14px;
  }

  .date-note strong {
    font-size: 1rem;
  }

  .date-note p,
  .date-note small {
    font-size: 0.9rem;
  }

  .cargo-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .counter-card {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .counter-card strong {
    font-size: 1.15rem;
  }

  .counter-btn {
    width: 36px;
    min-height: 36px;
    font-size: 1.25rem;
  }

  .summary-row {
    margin-top: 14px;
    gap: 10px;
  }

  .summary-card {
    width: 100%;
    padding: 12px 14px;
  }

  .contact-screen {
    padding: 0 0 88px;
  }

  .contact-copy h1 {
    font-size: 1.75rem;
    margin-bottom: 4px;
  }

  .contact-copy p {
    font-size: 0.84rem;
    line-height: 1.3;
  }

  .contact-fields {
    gap: 8px;
  }

  .contact-fields .field {
    min-height: 46px;
    padding: 0 12px;
    border-radius: 13px;
  }

  .contact-fields .field input,
  .contact-checkout .checkout-row span,
  .contact-checkout .checkout-row strong {
    font-size: 0.88rem;
  }

  .contact-checkout {
    margin-top: 12px;
    padding: 12px 12px 10px;
    border-radius: 16px;
  }

  .contact-checkout .checkout-row {
    padding: 8px 0;
  }

  .contact-bottom-bar {
    position: sticky;
    bottom: 8px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    z-index: 26;
  }

  .contact-bottom-bar .primary-button {
    grid-column: 1 / -1;
  }

  .contact-bottom-bar .primary-button {
    min-height: 46px;
    border-radius: 14px;
    flex: 1 1 auto;
  }

  .contact-bottom-bar .secondary-button {
    min-height: 42px;
    border-radius: 14px;
  }

  .contact-note {
    margin-top: 12px;
    padding-bottom: 10px;
  }

  .pickup-copy h2 {
    font-size: 1.55rem;
    margin-bottom: 4px;
  }

  .pickup-copy p,
  .pickup-label {
    font-size: 0.84rem;
  }

  .pickup-slot-grid {
    gap: 8px;
  }

  .pickup-slot {
    min-height: 42px;
    border-radius: 14px;
    font-size: 0.86rem;
  }

  .pickup-counter-card {
    padding: 12px 14px;
    border-radius: 16px;
  }

  .pickup-counter-card strong {
    font-size: 1.2rem;
  }

  .success-card {
    margin-top: 10px;
  }

  .success-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 18px;
  }

  .success-icon svg {
    width: 32px;
    height: 32px;
  }

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

  .qr-box,
  .sticker-side {
    min-height: 84px;
  }

  .sticker-side {
    grid-auto-flow: column;
    align-content: center;
    border-left: 0;
    border-top: 1px solid #d0d0d0;
  }

  .sticker-side em {
    writing-mode: horizontal-tb;
  }
}

@media (max-width: 420px) {
  :root {
    --content: min(100vw - 20px, 100%);
  }

  .topbar {
    padding: 10px;
  }

  .theme-toggle {
    max-width: 108px;
    font-size: 0.78rem;
  }

  .field {
    min-height: 46px;
    padding: 0 11px;
  }

  .field input {
    font-size: 0.9rem;
  }

  .page-copy h1,
  .wizard-copy h1,
  .contact-copy h1 {
    font-size: 1.65rem;
  }

  .register-card .page-copy h1 {
    font-size: 2rem;
    line-height: 0.98;
  }

  .service-card {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 9px;
    padding: 9px 10px;
    border-radius: 14px;
  }

  .warehouse-card-main {
    grid-template-columns: 36px minmax(0, 1fr);
    column-gap: 9px;
  }

  .service-icon {
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }

  .service-text strong {
    font-size: 0.92rem;
  }

  .service-text small {
    font-size: 0.76rem;
  }

  .service-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .service-text strong {
    font-size: 0.98rem;
  }

  .service-text small {
    font-size: 0.8rem;
  }

  .calendar-grid {
    gap: 4px;
  }

  .calendar-day,
  .calendar-empty {
    height: 38px;
  }

  .calendar-day {
    font-size: 0.9rem;
  }

  .bottom-bar,
  .contact-bottom-bar {
    left: 10px;
    right: 10px;
  }

  .bottom-bar {
    padding: 7px;
    gap: 7px;
  }

  .bottom-bar,
  .contact-bottom-bar {
    grid-template-columns: 1fr;
  }

  .bottom-bar .primary-button,
  .contact-bottom-bar .primary-button {
    grid-column: auto;
  }

  .request-card,
  .calendar-card,
  .seller-card,
  .checkout-card,
  .summary-card,
  .success-card,
  .sticker-sheet {
    padding: 14px;
  }
}
