@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Syne:wght@500;600;700;800&family=Unbounded:wght@500;600;700;800&display=swap");

:root {
  --bg: #f4faf6;
  --bg-elevated: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #f8fcf9;
  --bg-input: #eef6f0;
  --bg-muted: #e8f3ec;
  --text: #1a2e1f;
  --text-muted: #5a6f62;
  --text-dim: #8aa393;
  --accent: #2d9b4a;
  --accent-2: #c9a227;
  --accent-red: #c0392b;
  --accent-soft: rgba(45, 155, 74, 0.12);
  --accent-glow: rgba(45, 155, 74, 0.28);
  --gold-glow: rgba(201, 162, 39, 0.25);
  --gold: #c9a227;
  --border: rgba(26, 46, 31, 0.08);
  --border-strong: rgba(26, 46, 31, 0.13);
  --header-bg: rgba(255, 255, 255, 0.88);
  --header-bg-scrolled: rgba(255, 255, 255, 0.97);
  --nav-mobile-bg: rgba(255, 255, 255, 0.98);
  --lot-overlay: rgba(26, 46, 31, 0.4);
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --font: "Manrope", system-ui, sans-serif;
  --font-display: "Syne", system-ui, sans-serif;
  --font-hero: "Unbounded", "Syne", system-ui, sans-serif;
  --transition: 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-card: 0 16px 48px rgba(45, 155, 74, 0.1);
  --shadow-glow: 0 0 0 1px rgba(45, 155, 74, 0.15), 0 16px 40px rgba(45, 155, 74, 0.12);
  --shadow-sm: 0 4px 16px rgba(26, 46, 31, 0.06);
  --success: #2d9b4a;
  --danger: #c0392b;
  --warning: #d97706;
  --gradient-brand: linear-gradient(135deg, #2d9b4a 0%, #3cb85c 45%, #c9a227 100%);
  --gradient-text: linear-gradient(120deg, #2d9b4a 0%, #3cb85c 40%, #c9a227 100%);
  --brand-image: url("../images/logo-brand.png");
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 55% at 0% -5%, rgba(45, 155, 74, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 45% at 100% 0%, rgba(201, 162, 39, 0.1), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(135, 206, 235, 0.12), transparent 55%),
    var(--bg);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.25;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

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

a {
  color: inherit;
}

.container {
  width: min(1180px, 100% - 2.5rem);
  margin-inline: auto;
}

.container--narrow {
  width: min(520px, 100% - 2rem);
}

.page {
  padding: 7.5rem 0 5rem;
  min-height: 60vh;
}

.page__head {
  margin-bottom: 2.5rem;
}

.page__head--row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.page__title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.65rem;
}

.page__subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 540px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.back-link:hover {
  color: var(--accent-2);
}

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: padding var(--transition), background var(--transition);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
  padding: 0.65rem 1.25rem;
  background: var(--header-bg);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo__mark {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: block;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 14px var(--accent-glow);
  border: 2px solid rgba(45, 155, 74, 0.2);
  background: transparent;
}

.logo__img {
  display: block;
  height: 64px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  background: transparent !important;
  background-color: transparent !important;
  filter: drop-shadow(0 2px 8px rgba(45, 155, 74, 0.12));
}

.logo__img--mark {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 58% 32%;
  filter: none;
  border-radius: 50%;
  background: transparent !important;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.logo__sub {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.15rem;
}

.logo__word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.15;
}

.logo__accent {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav {
  display: flex;
  gap: 0.2rem;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  justify-content: center;
  margin-left: 0.75rem;
}

.nav__link-label--short {
  display: none;
}

.nav__link {
  padding: 0.45rem 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 999px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--text);
  background: var(--accent-soft);
}

.nav__link.is-active {
  color: var(--accent);
  background: var(--accent-soft);
  box-shadow: inset 0 0 0 1px rgba(45, 155, 74, 0.2);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.header-auth {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.header-auth__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  max-width: min(260px, 42vw);
  padding: 0.28rem 0.75rem 0.28rem 0.28rem;
  border-radius: 999px;
  text-decoration: none;
  background: rgba(45, 155, 74, 0.14);
  background: color-mix(in srgb, var(--chip-tier, #2d9b4a) 16%, #fff 84%);
  border: 1.5px solid color-mix(in srgb, var(--chip-tier, #2d9b4a) 35%, #e2ebe5);
  box-shadow: 0 2px 10px rgba(26, 46, 31, 0.1);
  flex-shrink: 1;
  min-width: 0;
  transition: box-shadow 0.2s, transform 0.2s;
}

.header-auth__chip:hover {
  box-shadow: 0 4px 14px rgba(26, 46, 31, 0.14);
  transform: translateY(-1px);
}

.header-auth__avatar {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.88rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, var(--chip-tier, #2d9b4a), color-mix(in srgb, var(--chip-tier, #248f42) 70%, #1a5c2e));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.header-auth__chip .header-auth__tier {
  flex-shrink: 0;
  padding: 0;
  margin: 0;
  background: transparent !important;
  border-radius: 0;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--chip-tier, var(--accent));
}

.header-auth__chip .header-auth__tier::after {
  content: "·";
  margin-left: 0.2rem;
  font-weight: 400;
  opacity: 0.45;
  color: var(--text);
}

.header-auth__chip .header-auth__name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text) !important;
  max-width: 110px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-auth__name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dim);
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-alert {
  position: fixed;
  top: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  max-width: min(96vw, 42rem);
  padding: 0.55rem 0.85rem;
  border-radius: 10px;
  background: #fff3e0;
  border: 1px solid #f39c12;
  box-shadow: 0 4px 16px rgba(243, 156, 18, 0.2);
  font-size: 0.86rem;
}

.header-alert__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: #e67e22;
  color: #fff;
  font-weight: 800;
  flex-shrink: 0;
}

.header-alert__text {
  flex: 1;
  min-width: 0;
}

.header-alert__link {
  margin-left: auto;
  color: #d35400;
  font-weight: 700;
  white-space: nowrap;
}

.header-alert__close {
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  margin-left: 0.15rem;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  color: #7f4f00;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
}

.header-alert--messages {
  background: #e8f5e9;
  border-color: #2d9b4a;
  box-shadow: 0 4px 16px rgba(45, 155, 74, 0.2);
}

.header-alert--messages .header-alert__icon {
  background: #2d9b4a;
}

.header-alert--messages .header-alert__link {
  color: #1e7a34;
}

.header-alert__close:hover {
  background: rgba(0, 0, 0, 0.12);
}

.members-more {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.parcel-card__docs {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.parcel-card__docs-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.parcel-docs-block--focus {
  outline: 2px solid rgba(45, 155, 74, 0.45);
  outline-offset: 4px;
  border-radius: 10px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: var(--bg-muted);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 5rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero__content {
  max-width: 640px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem 0.4rem 0.5rem;
  margin-bottom: 1.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: rgba(13, 148, 136, 0.08);
  border: 1px solid rgba(13, 148, 136, 0.2);
  border-radius: 999px;
}

.hero__tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 10px var(--accent-2);
}

.hero__title {
  font-family: var(--font-hero);
  font-size: clamp(1.85rem, 2.6vw + 0.85rem, 3.35rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 1.35rem;
  overflow-wrap: normal;
  word-break: normal;
}

.hero-title__line {
  display: block;
}

.hero-title__word {
  display: inline-block;
  white-space: nowrap;
}

.hero-title__char--space {
  display: inline-block;
  width: 0.28em;
}

.hero-title__line--accent .hero-title__char {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__title em {
  font-style: normal;
}

.hero__text {
  font-size: 1.12rem;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat {
  position: relative;
  padding-left: 1rem;
}

a.stat--link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  margin: -0.35rem 0 -0.35rem -0.35rem;
  padding: 0.35rem 0.5rem 0.35rem 1rem;
  transition: background 0.15s, transform 0.15s;
}

a.stat--link:hover {
  background: rgba(45, 155, 74, 0.08);
  transform: translateY(-1px);
}

a.stat--link:hover .stat__label {
  color: var(--green, #2d9b4a);
}

a.stat--link:focus-visible {
  outline: 2px solid rgba(45, 155, 74, 0.45);
  outline-offset: 2px;
}

.stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  bottom: 0.15rem;
  width: 2px;
  border-radius: 2px;
  background: var(--gradient-brand);
}

.stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.stat__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Brand image from user artwork */
.brand-hero {
  position: relative;
  width: min(100%, 520px);
  margin-inline: auto;
}

.brand-hero__ring {
  position: absolute;
  inset: -10px;
  border-radius: calc(var(--radius-xl) + 8px);
  background: linear-gradient(135deg, rgba(45, 155, 74, 0.2), rgba(201, 162, 39, 0.18), rgba(135, 206, 235, 0.15));
  filter: blur(4px);
}

.brand-hero__frame {
  position: relative;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: var(--radius-xl);
  box-shadow: none;
  overflow: visible;
}

.brand-hero__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  filter: drop-shadow(0 14px 28px rgba(45, 155, 74, 0.18));
  animation: brand-float 5s ease-in-out infinite;
}

.brand-hero__badge {
  display: none;
}

.brand-signature {
  width: min(100%, 280px);
  margin: 0.75rem auto 0;
  padding: 0 0.15rem;
}

.brand-signature__reveal {
  overflow: hidden;
  clip-path: inset(0 0 0 0);
  line-height: 0;
}

.brand-signature__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 72px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 2px 5px rgba(20, 58, 36, 0.28));
}

.brand-signature--active .brand-signature__reveal {
  animation: signature-reveal 3.1s cubic-bezier(0.45, 0.05, 0.2, 1) 0.25s both;
}

.brand-card {
  display: block;
  max-width: 280px;
  margin: 0 auto;
}

.brand-card__img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 2px solid rgba(45, 155, 74, 0.15);
}

@keyframes brand-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes brand-ring-spin {
  to { transform: rotate(360deg); }
}

.about-founder__brand-wrap {
  width: min(100%, 200px);
  margin: 0 auto 1.25rem;
  padding: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(45, 155, 74, 0.08), rgba(201, 162, 39, 0.06));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.about-founder__brand {
  display: block;
  width: 100%;
  height: auto;
  max-width: 168px;
  max-height: 168px;
  margin: 0;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: none;
  filter: drop-shadow(0 6px 16px rgba(45, 155, 74, 0.15));
  border: none;
}

.hero-panel {
  padding: 1.35rem;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.hero-panel:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-glow);
}

.hero-panel--large {
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background:
    linear-gradient(135deg, rgba(45, 155, 74, 0.06), rgba(201, 162, 39, 0.04)),
    var(--bg-card);
}

.hero-panel__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  background: var(--accent-soft);
  border: 1px solid rgba(45, 155, 74, 0.15);
  border-radius: 12px;
  margin-bottom: 0.85rem;
}

.hero-panel__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.hero-panel__text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.hero-panel__big {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.65rem;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  touch-action: manipulation;
}

.btn--primary {
  color: #fff;
  background: var(--gradient-brand);
  box-shadow: 0 8px 28px var(--accent-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(45, 155, 74, 0.35);
}

.btn--ghost {
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.btn--ghost:hover {
  background: var(--bg-muted);
  border-color: rgba(45, 155, 74, 0.3);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
}

.btn--full {
  width: 100%;
}

.btn--danger {
  color: var(--danger);
  border-color: rgba(251, 113, 133, 0.35);
}

.btn--danger:hover {
  background: rgba(251, 113, 133, 0.08);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* ── Sections ── */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section--alt {
  background: var(--bg-muted);
  border-block: 1px solid var(--border);
}

.section__head {
  margin-bottom: 2.75rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.55rem;
}

.section__subtitle {
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 520px;
}

.section__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  justify-content: center;
  margin-top: 1.75rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.service-card {
  display: block;
  padding: 1.65rem;
  text-decoration: none;
  color: inherit;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(45, 155, 74, 0.25);
  box-shadow: var(--shadow-glow);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 1.1rem;
  background: var(--accent-soft);
  border: 1px solid rgba(45, 155, 74, 0.15);
  border-radius: 14px;
}

.service-card__tag {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--accent, #2d9b4a);
  background: var(--accent-soft, rgba(45, 155, 74, 0.12));
  border-radius: 6px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Tools / useful links */
.page--tools .page__subtitle {
  max-width: 42rem;
}

.tools-page__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.tools-page__breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}

.tools-page__breadcrumb a:hover {
  text-decoration: underline;
}

.tools-page__notice {
  max-width: 46rem;
  margin: 0 0 1.5rem;
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
  background: rgba(45, 155, 74, 0.06);
  border: 1px solid rgba(45, 155, 74, 0.15);
  border-radius: var(--radius-md);
}

.tools-members-note {
  margin: 0 0 1.5rem;
  padding: 0.85rem 1rem;
  font-size: 0.92rem;
  line-height: 1.45;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(45, 155, 74, 0.35);
  background: rgba(45, 155, 74, 0.06);
}

.tools-members-note p {
  margin: 0;
}

.tools-members-note a {
  color: var(--accent);
  font-weight: 700;
}

.tools-page__category-tag {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(45, 155, 74, 0.1);
  border-radius: 999px;
}

.tools-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.tools-link-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  text-decoration: none;
  color: inherit;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.tools-link-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 155, 74, 0.28);
  box-shadow: var(--shadow-glow);
}

.tools-link-card__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.tools-link-card__icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.tools-link-card__icon-fallback {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
}

.tools-link-card__body {
  flex: 1;
  min-width: 0;
  padding-right: 1.5rem;
}

.tools-link-card__tag {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.15rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 999px;
}

.tools-link-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.8vw, 1.12rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.4rem;
  text-wrap: balance;
}

.tools-link-card:hover .tools-link-card__title {
  color: var(--accent-dark, #1f6b36);
}

.tools-link-card__desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.45rem;
}

.tools-link-card__host {
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.85;
}

.tools-link-card__arrow {
  position: absolute;
  top: 1.1rem;
  right: 1rem;
  font-size: 1rem;
  color: var(--accent-2);
  opacity: 0.65;
  transition: transform var(--transition), opacity var(--transition);
}

.tools-link-card:hover .tools-link-card__arrow {
  transform: translate(2px, -2px);
  opacity: 1;
}

.tools-page__back {
  text-align: center;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .tools-links-grid {
    grid-template-columns: 1fr;
  }

  .tools-link-card {
    padding: 1.1rem 1.15rem;
  }
}

/* Steps / Journey path */
.journey__hint {
  font-size: 0.88rem;
  color: var(--accent-2);
  font-weight: 600;
  margin-top: 0.35rem;
}

.journey-path {
  --journey-p: 0;
  position: relative;
}

.journey-path__rail {
  position: relative;
  margin-bottom: 1.75rem;
  padding: 0 0.5rem;
  height: 3rem;
}

.journey-path__track {
  position: absolute;
  left: 12.5%;
  right: 12.5%;
  top: 50%;
  height: 6px;
  transform: translateY(-50%);
  background: var(--bg-muted);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
}

.journey-path__fill {
  height: 100%;
  width: 100%;
  background: var(--gradient-brand);
  border-radius: inherit;
  transform: scaleX(var(--journey-p));
  transform-origin: left center;
  will-change: transform;
}

.journey-path__dots {
  position: absolute;
  left: 12.5%;
  right: 12.5%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.journey-path__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid rgba(45, 155, 74, 0.35);
  box-shadow: 0 0 0 3px var(--bg-elevated);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.journey-path__dot.is-passed {
  background: var(--accent);
  border-color: var(--accent);
}

.journey-path__marker {
  position: absolute;
  left: calc(12.5% + var(--journey-p) * 75%);
  top: 50%;
  width: 36px;
  height: 36px;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
  will-change: left;
}

.journey-path__marker-icon {
  display: block;
  filter: drop-shadow(0 4px 10px rgba(45, 155, 74, 0.35));
  animation: journey-marker-bob 2.8s ease-in-out infinite;
}

@keyframes journey-marker-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.journey-path__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.step {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.journey-path__step.is-journey-active {
  border-color: rgba(45, 155, 74, 0.35);
  box-shadow: var(--shadow-glow);
}

.journey-path__step.is-journey-current {
  transform: translateY(-3px);
  border-color: rgba(45, 155, 74, 0.45);
}

.step__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.7;
  margin-bottom: 0.75rem;
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.step p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* CTA */
.cta-banner {
  padding: 0 0 6rem;
}

.cta-banner__inner {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 2.5rem;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(45, 155, 74, 0.08), rgba(201, 162, 39, 0.05)),
    var(--bg-card);
  border: 1px solid rgba(45, 155, 74, 0.18);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.cta-banner__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(45, 155, 74, 0.1), transparent 55%);
  pointer-events: none;
}

.cta-banner__inner h2 {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.cta-banner__inner p {
  position: relative;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 460px;
  margin-inline: auto;
}

/* Lot cards */
.lots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.lot-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.lot-card:hover {
  transform: translateY(-8px);
  border-color: rgba(45, 155, 74, 0.25);
  box-shadow: var(--shadow-card);
}

.lot-card__main {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  text-decoration: none;
  color: inherit;
}

.lot-card__owner-bar {
  padding: 0.55rem 1rem 0.85rem;
  border-top: 1px solid var(--border);
}

.lot-card__image-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-elevated);
}

.lot-card__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--lot-overlay) 0%, transparent 55%);
  pointer-events: none;
}

.lot-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.lot-card:hover .lot-card__image {
  transform: scale(1.06);
}

.lot-card__badges {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  z-index: 1;
}

.lot-card__badge {
  padding: 0.3rem 0.65rem;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.lot-card__badge--auction {
  background: rgba(45, 155, 74, 0.92);
  color: #fff;
}

.lot-card__badge--listing {
  background: rgba(13, 148, 136, 0.92);
  color: #fff;
}

.lot-card__badge--company {
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.lot-card__badge--verified {
  background: rgba(45, 155, 74, 0.92);
  color: #fff;
}

.lot-card__badge--direct_sale {
  background: rgba(180, 120, 40, 0.92);
  color: #fff;
}

.lot-card__badge--lease_transfer {
  background: rgba(37, 99, 235, 0.92);
  color: #fff;
}

.lot-card__badge--exchange {
  background: rgba(124, 58, 237, 0.92);
  color: #fff;
}

.lot-card__badge--sold {
  background: rgba(100, 116, 139, 0.92);
  color: #fff;
}

.lot-card__badge--pending {
  background: rgba(234, 179, 8, 0.92);
  color: #1a1a1a;
}

.lot-card__body {
  padding: 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lot-card__category {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-2);
  margin-bottom: 0.4rem;
}

.lot-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  line-height: 1.35;
}

.lot-card__desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lot-card__footer {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
}

.lot-card__price-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
}

.lot-card__price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.lot-card__bids {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dim);
  text-align: right;
}

/* Filters */
.filters {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
  padding: 1.15rem 1.35rem;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.filters label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 130px;
  flex: 1;
}

.filters__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}

.filters__select,
.filters__input {
  padding: 0.65rem 0.9rem;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  background: var(--bg-input);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.filters__select:focus,
.filters__input:focus {
  outline: none;
  border-color: rgba(45, 155, 74, 0.45);
  box-shadow: 0 0 0 3px rgba(45, 155, 74, 0.1);
}

.filters__search {
  flex: 2;
  min-width: 180px;
}

.filter-status {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}

.filter-status.is-active {
  color: var(--accent-2);
}

/* Forms */
.form-card,
.service-form,
.auth-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* Auth-формы не скрывать через .reveal (opacity:0 без is-visible) */
.auth-card.reveal {
  opacity: 1;
  transform: none;
}

.service-form h3,
.form-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.form-field__label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
}

.form-field input,
.form-field textarea,
.form-field select {
  padding: 0.8rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-input);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: rgba(45, 155, 74, 0.45);
  box-shadow: 0 0 0 3px rgba(45, 155, 74, 0.1);
}

.password-field {
  position: relative;
  display: block;
}

.password-field input {
  width: 100%;
  padding-right: 2.75rem;
  box-sizing: border-box;
}

.password-field__toggle {
  position: absolute;
  right: 0.45rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--text-dim);
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
}

.password-field__toggle:hover {
  color: var(--text);
  background: rgba(0, 0, 0, 0.05);
}

.password-field__toggle:focus-visible {
  outline: 2px solid rgba(45, 155, 74, 0.45);
  outline-offset: 1px;
}

.password-field__toggle svg {
  display: block;
  width: 1.15rem;
  height: 1.15rem;
}

.form-error {
  display: block;
  margin-bottom: 1rem;
  padding: 0.7rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--danger);
  background: rgba(251, 113, 133, 0.08);
  border: 1px solid rgba(251, 113, 133, 0.25);
  border-radius: 12px;
}

.form-error[hidden],
.form-success[hidden] {
  display: none !important;
}

.form-success {
  display: block;
  margin-bottom: 1rem;
  padding: 0.7rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--success);
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.25);
  border-radius: 12px;
}

.form-toggle {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
  padding: 0.3rem;
  background: var(--bg-muted);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
}

.form-toggle__btn {
  flex: 1;
  padding: 0.65rem 1rem;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--transition);
}

.form-toggle__btn.is-active {
  color: #fff;
  background: var(--gradient-brand);
  box-shadow: 0 4px 16px var(--accent-glow);
}

.auth-card {
  max-width: 420px;
  margin: 0 auto;
}

.auth-brand {
  text-align: center;
  margin: -0.25rem 0 1.25rem;
}

.auth-brand img,
.auth-brand__img {
  display: block;
  width: min(100%, 200px);
  height: auto;
  margin-inline: auto;
  border-radius: var(--radius);
  filter: drop-shadow(0 4px 14px rgba(45, 155, 74, 0.18));
}

.auth-card__footer {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}

.auth-card__footer a {
  color: var(--accent-2);
  font-weight: 700;
  text-decoration: none;
}

.auth-demo {
  margin-top: 1.5rem;
  padding: 1rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  background: var(--bg-muted);
  border: 1px dashed var(--border-strong);
  border-radius: 12px;
}

/* Service page blocks */
.notice {
  padding: 1.15rem 1.35rem;
  margin-bottom: 3rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  background: rgba(45, 155, 74, 0.06);
  border: 1px solid rgba(45, 155, 74, 0.15);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}

.notice strong {
  color: var(--text);
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 4rem;
  scroll-margin-top: 6rem;
}

.service-block h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.service-block p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.check-list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 8px var(--accent-2);
}

/* About / contacts */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.about-card,
.about-founder {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.about-card h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.about-card h2:not(:first-child) {
  margin-top: 1.35rem;
}

.about-card p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0.85rem;
}

.about-card strong {
  color: var(--text);
}

.about-card a {
  word-break: break-word;
}

.about-founder {
  text-align: center;
}

.about-founder__avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  background: var(--gradient-brand);
  border-radius: 20px;
  box-shadow: var(--shadow-glow);
}

.about-founder h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.about-founder__role {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-2);
  margin-bottom: 0.75rem;
}

.about-founder p:last-child {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.value-card {
  padding: 1.35rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contacts-info {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-item {
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.contact-item strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  margin-bottom: 0.35rem;
}

.contact-item a,
.contact-item span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--accent-2);
}

.contact-item span:last-child {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dim);
}

.cabinet-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.data-table th,
.data-table td {
  padding: 0.9rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.data-table th {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-dim);
  background: var(--bg-muted);
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tr:hover td {
  background: rgba(45, 155, 74, 0.04);
}

.data-table__link {
  color: var(--accent-2);
  font-weight: 600;
  text-decoration: none;
}

.status-badge {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 999px;
}

.status-badge--active {
  background: rgba(52, 211, 153, 0.12);
  color: var(--success);
}

.status-badge--pending {
  background: rgba(251, 191, 36, 0.12);
  color: var(--warning);
}

.status-badge--cancelled {
  background: rgba(251, 113, 133, 0.12);
  color: var(--danger);
}

.status-badge--sold {
  background: rgba(138, 144, 168, 0.12);
  color: var(--text-muted);
}

.status-badge--verified {
  background: rgba(45, 155, 74, 0.12);
  color: #248f42;
}

.status-badge--unverified {
  background: rgba(0, 0, 0, 0.06);
  color: var(--text-muted);
}

.status-badge--withdrawn {
  background: rgba(138, 144, 168, 0.12);
  color: var(--text-muted);
}

.status-badge--app-submitted {
  background: rgba(100, 116, 139, 0.14);
  color: #475569;
}

.status-badge--app-review {
  background: rgba(245, 158, 11, 0.16);
  color: #b45309;
}

.status-badge--app-approved {
  background: rgba(34, 197, 94, 0.16);
  color: #15803d;
}

.status-badge--app-completed {
  background: rgba(59, 130, 246, 0.14);
  color: #1d4ed8;
}

.status-badge--app-rejected {
  background: rgba(239, 68, 68, 0.14);
  color: #b91c1c;
}

/* Lot detail */
.auction-timer {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: rgba(45, 155, 74, 0.1);
  border: 1px solid rgba(45, 155, 74, 0.25);
  font-size: 0.9375rem;
  font-weight: 600;
}

.auction-timer--closing {
  background: rgba(201, 162, 39, 0.15);
  border-color: rgba(201, 162, 39, 0.35);
  color: #6b5200;
}

.auction-timer__hint {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-top: 0.25rem;
  opacity: 0.85;
}

#auctionCountdown {
  font-variant-numeric: tabular-nums;
  font-family: var(--font-display, inherit);
}

.lot-detail {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: start;
}

.lot-detail__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.lot-detail__category {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-2);
  margin-bottom: 0.5rem;
}

.lot-detail__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.lot-detail__desc {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.lot-detail__info {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.lot-detail__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
}

.lot-detail__row span:first-child {
  color: var(--text-dim);
  font-weight: 600;
}

.lot-detail__price {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.25rem;
}

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

.lot-gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.65rem;
}

.lot-gallery__thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  overflow: hidden;
  width: 4.5rem;
  height: 3rem;
  cursor: pointer;
  background: var(--bg-elevated);
}

.lot-gallery__thumb.is-active {
  border-color: var(--accent);
}

.lot-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lot-photo-picker {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0.75rem 0;
  padding: 0;
}

.lot-photo-picker__item {
  position: relative;
  width: 5.5rem;
  height: 4rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}

.lot-photo-picker__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lot-photo-picker__remove {
  position: absolute;
  top: 0.15rem;
  right: 0.15rem;
  width: 1.35rem;
  height: 1.35rem;
  border: none;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  cursor: pointer;
  line-height: 1;
  font-size: 1rem;
}

.lot-doc-picker {
  margin: 0.65rem 0 0;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md, 12px);
  background: var(--bg-input, rgba(45, 155, 74, 0.04));
}

.lot-doc-picker__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.65rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
}

.lot-doc-picker__count {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted, #5a6b62);
}

.lot-doc-picker__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.lot-doc-picker__action {
  padding: 0.28rem 0.65rem;
  border: 1px solid var(--border-strong, rgba(0, 0, 0, 0.12));
  border-radius: 999px;
  background: #fff;
  color: var(--text-muted, #5a6b62);
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.lot-doc-picker__action:hover {
  border-color: rgba(45, 155, 74, 0.35);
  color: var(--green, #2d9b4a);
}

.lot-doc-picker__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.lot-doc-picker__item {
  margin: 0;
}

.lot-doc-picker__row {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.lot-doc-picker__row:hover {
  border-color: rgba(45, 155, 74, 0.28);
  box-shadow: 0 4px 14px rgba(45, 155, 74, 0.06);
}

.lot-doc-picker__row.is-selected {
  border-color: rgba(45, 155, 74, 0.45);
  background: rgba(45, 155, 74, 0.04);
  box-shadow: 0 0 0 1px rgba(45, 155, 74, 0.08);
}

.lot-doc-picker__input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}

.lot-doc-picker__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(145deg, #6b7c93, #4f5f73);
}

.lot-doc-picker__icon--pdf {
  background: linear-gradient(145deg, #e85d4a, #c0392b);
}

.lot-doc-picker__icon--doc,
.lot-doc-picker__icon--docx {
  background: linear-gradient(145deg, #4a7fd4, #2b5ea8);
}

.lot-doc-picker__icon--png,
.lot-doc-picker__icon--jpg,
.lot-doc-picker__icon--jpeg {
  background: linear-gradient(145deg, #3cb878, #2d9b4a);
}

.lot-doc-picker__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.lot-doc-picker__name {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  word-break: break-word;
}

.lot-doc-picker__comment {
  font-size: 0.8125rem;
  line-height: 1.35;
  color: var(--text-muted, #5a6b62);
}

.lot-doc-picker__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.75rem;
  color: var(--text-dim, #8a9a92);
}

.lot-doc-picker__filename {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lot-doc-picker__size {
  white-space: nowrap;
}

.lot-doc-picker__filename + .lot-doc-picker__size::before {
  content: "·";
  margin-right: 0.35rem;
  opacity: 0.65;
}

.lot-doc-picker__tick {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 6px;
  border: 2px solid rgba(0, 0, 0, 0.18);
  background: #fff;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  position: relative;
}

.lot-doc-picker__tick::after {
  content: "";
  position: absolute;
  left: 0.28rem;
  top: 0.1rem;
  width: 0.35rem;
  height: 0.65rem;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.15s;
}

.lot-doc-picker__row.is-selected .lot-doc-picker__tick {
  border-color: var(--green, #2d9b4a);
  background: var(--green, #2d9b4a);
  box-shadow: 0 0 0 3px rgba(45, 155, 74, 0.12);
}

.lot-doc-picker__row.is-selected .lot-doc-picker__tick::after {
  transform: rotate(45deg) scale(1);
}

.form-field--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
}

.form-field--checkbox input[type="checkbox"] {
  width: 1.05rem;
  height: 1.05rem;
  margin: 0.2rem 0 0;
  padding: 0;
  flex-shrink: 0;
  accent-color: var(--green, #2d9b4a);
}

.form-consent {
  margin-bottom: 1.25rem;
}

.form-consent__text {
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-dim);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.form-consent__text a {
  color: var(--green, #2d9b4a);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-doc {
  margin-bottom: 2rem;
  padding: 1.5rem 1.25rem;
  background: var(--bg-card, rgba(255, 255, 255, 0.03));
  border: 1px solid var(--border);
  border-radius: 16px;
}

.legal-doc__updated {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.legal-doc__section {
  margin-bottom: 1.5rem;
}

.legal-doc__section:last-child {
  margin-bottom: 0;
}

.legal-doc__section h2 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.65rem;
  color: var(--text);
}

.legal-doc__section p {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-dim);
}

.legal-doc__back {
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.legal-doc__back a {
  color: var(--green, #2d9b4a);
}

.lot-documents {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.lot-documents__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.lot-documents__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lot-documents__link {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 600;
}

.lot-documents__link:hover {
  text-decoration: underline;
}

.lot-detail__owner-actions {
  margin-bottom: 1.25rem;
}

.filters--inline {
  margin-bottom: 1rem;
}

.bid-form {
  padding: 1.35rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

.bid-form__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.bid-history__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.bid-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.bid-list__item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  font-size: 0.88rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.bid-list__amount {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--accent-2);
}

/* Empty / loading */
.empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--text-muted);
}

.empty-state__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.catalog-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 3rem;
  color: var(--text-muted);
  font-weight: 600;
}

.catalog-loading__spinner {
  width: 22px;
  height: 22px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.text-muted {
  color: var(--text-muted);
}

/* Footer */
.footer {
  padding: 3.5rem 0 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer__menu-grid {
  display: contents;
}

.footer__col {
  min-width: 0;
}

.logo--footer {
  align-items: center;
}

.footer__brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 0.85rem;
  max-width: 300px;
  line-height: 1.6;
}

.footer__title {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--accent-2);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-dim);
  text-align: center;
}

.footer__legal a {
  color: var(--text-dim);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__legal a:hover {
  color: var(--text);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 0.85rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid rgba(45, 155, 74, 0.2);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  z-index: 300;
  opacity: 0;
  box-shadow: var(--shadow-glow);
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}

.toast.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Mobile */
@media (max-width: 1024px) {
  .hero__layout {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .hero__content {
    max-width: none;
    order: 1;
  }

  .hero__tag {
    display: flex;
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    justify-content: center;
    text-align: center;
  }

  .hero__visual {
    order: 2;
    margin-top: 0.25rem;
    overflow: hidden;
    padding: 0.25rem 0;
  }

  .brand-hero {
    width: min(100%, 420px);
  }

  .brand-hero__ring {
    inset: -6px;
  }
}

@media (min-width: 1025px) and (max-width: 1366px) {
  .hero__title {
    font-size: clamp(1.6rem, 2vw + 0.55rem, 2.65rem);
  }

  .hero__layout {
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 6.75rem 0 3.5rem;
    align-items: flex-start;
  }

  .hero__title {
    font-size: clamp(1.75rem, 7.5vw, 2.65rem);
    text-align: center;
  }

  .hero-title__line {
    text-align: center;
  }

  .hero__text {
    font-size: 1rem;
    max-width: none;
  }

  .hero__tag {
    display: flex;
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    justify-content: center;
    text-align: center;
    font-size: 0.68rem;
    letter-spacing: 0.03em;
    text-transform: none;
    white-space: normal;
    line-height: 1.45;
    padding: 0.45rem 0.85rem;
  }

  .hero__actions {
    margin-bottom: 2rem;
  }

  .hero__stats {
    justify-content: center;
    width: 100%;
    max-width: 24rem;
    margin-inline: auto;
    gap: 1.5rem 2rem;
  }

  .stat {
    text-align: center;
    padding-left: 0;
    padding-top: 0.65rem;
  }

  .stat::before {
    left: 50%;
    top: 0;
    bottom: auto;
    width: 1.75rem;
    height: 2px;
    transform: translateX(-50%);
  }

  .brand-hero__img {
    animation: none;
  }

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

  .service-block,
  .about-grid,
  .contacts-grid,
  .lot-detail {
    grid-template-columns: 1fr;
  }

  .about-founder__brand-wrap {
    max-width: min(100%, 220px);
    margin-inline: auto;
  }

  .about-founder__brand {
    max-width: 100%;
    max-height: 200px;
  }

  .journey-path {
    display: grid;
    grid-template-columns: 2.75rem 1fr;
    gap: 0 1rem;
    align-items: stretch;
  }

  .journey-path__rail {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    padding: 0;
    width: 2.75rem;
    height: auto;
    min-height: 100%;
    align-self: stretch;
  }

  .journey-path__steps {
    grid-column: 2;
    grid-template-columns: 1fr;
  }

  .journey-path__track {
    left: 50%;
    right: auto;
    top: 1rem;
    bottom: 1rem;
    width: 6px;
    height: auto;
    transform: translateX(-50%);
  }

  .journey-path__fill {
    transform: scaleY(var(--journey-p));
    transform-origin: top center;
  }

  .journey-path__dots {
    left: 50%;
    right: auto;
    top: 1rem;
    bottom: 1rem;
    width: auto;
    height: auto;
    transform: translateX(-50%);
    flex-direction: column;
  }

  .journey-path__marker {
    left: 50%;
    top: calc(1rem + var(--journey-p) * (100% - 2rem - 36px));
    transform: translate(-50%, -50%);
  }

  .journey-path__marker-icon {
    animation: none;
  }

  .journey__hint {
    font-size: 0.82rem;
  }
}

@media (max-width: 1100px) {
  .header {
    padding: max(0.5rem, env(safe-area-inset-top)) 0 0.5rem;
  }

  .header__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.4rem;
    border-radius: var(--radius-lg);
    padding: 0.45rem 0.55rem;
    padding-left: max(0.55rem, env(safe-area-inset-left));
    padding-right: max(0.55rem, env(safe-area-inset-right));
  }

  .burger {
    display: flex;
    grid-column: 1;
    grid-row: 1;
    flex-shrink: 0;
    padding: 7px;
  }

  .logo {
    grid-column: 2;
    grid-row: 1;
    position: static;
    transform: none;
    min-width: 0;
    max-width: 100%;
    overflow: visible;
    gap: 0.4rem;
    justify-self: start;
    width: 100%;
  }

  .header .logo__text {
    display: none;
  }

  .logo__mark {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .header__actions {
    grid-column: 3;
    grid-row: 1;
    flex-shrink: 0;
    gap: 0.3rem;
    z-index: 2;
    max-width: none;
  }

  .header__actions .btn--sm {
    padding: 0.36rem 0.5rem;
    font-size: 0.68rem;
    white-space: nowrap;
  }

  .header-auth {
    gap: 0.25rem;
  }

  .header-auth__chip {
    padding: 0.2rem 0.55rem 0.2rem 0.2rem;
    max-width: min(11rem, 46vw);
  }

  .header-auth__avatar {
    width: 1.65rem;
    height: 1.65rem;
    font-size: 0.75rem;
  }

  .header-auth__chip .header-auth__name {
    display: inline;
    max-width: 32vw;
    font-size: 0.8rem;
  }

  .nav {
    margin-left: 0;
    position: fixed;
    top: calc(4.25rem + env(safe-area-inset-top, 0px));
    left: 0.75rem;
    right: 0.75rem;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0.75rem;
    background: var(--nav-mobile-bg);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    transform: translateY(-8px) scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
    z-index: 99;
    box-shadow: var(--shadow-card);
  }

  .nav.is-open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__link {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.88rem;
  }

  .header .nav__link-label--full {
    display: inline;
  }

  .header .nav__link-label--short {
    display: none;
  }
}

@media (max-width: 900px) {
  .header .nav__link-label--full {
    display: none;
  }

  .header .nav__link-label--short {
    display: inline;
  }

  .nav__link {
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(1180px, 100% - 1.25rem);
  }

  .page {
    padding: 6.5rem 0 3.5rem;
  }

  .header__actions .btn--primary.btn--sm {
    padding: 0.36rem 0.45rem;
  }

  .hero {
    padding-top: 6.25rem;
  }

  .brand-hero {
    width: min(100%, 340px);
  }

  .brand-signature {
    width: min(100%, 220px);
    margin-top: 0.65rem;
  }

  .brand-signature__img {
    max-height: 56px;
  }

  .auth-brand img {
    width: min(100%, 160px);
  }

  .footer {
    padding: 2.75rem 0 calc(1.75rem + env(safe-area-inset-bottom));
    text-align: center;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 1.75rem;
    text-align: center;
  }

  .footer__menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1rem;
    padding: 1.5rem 0 0;
    border-top: 1px solid var(--border);
  }

  .footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 1.5rem;
  }

  .footer__brand .logo,
  .logo--footer {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    margin-inline: auto;
    text-align: center;
  }

  .footer__brand .logo__text {
    align-items: center;
  }

  .footer__brand p {
    max-width: 22rem;
    margin: 0.85rem auto 0;
    text-align: center;
    line-height: 1.65;
  }

  .footer__brand .logo__img {
    height: 52px;
    max-width: 180px;
    margin-inline: auto;
  }

  .logo--footer .logo__img {
    display: none;
  }

  .logo--footer {
    flex-direction: column;
    gap: 0;
  }

  .footer__col {
    text-align: center;
  }

  .footer__title {
    margin-bottom: 0.75rem;
  }

  .footer__links {
    align-items: center;
    gap: 0.6rem;
  }

  .footer__links a {
    display: inline-block;
    padding: 0.15rem 0;
  }

  .footer__bottom {
    padding-top: 1.25rem;
    font-size: 0.75rem;
    line-height: 1.55;
    padding-inline: 0.75rem;
  }

  .form-field input,
  .form-field textarea,
  .form-field select {
    font-size: 16px;
  }

  .lot-detail__image {
    max-height: 280px;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .logo__mark {
    width: 32px;
    height: 32px;
  }

  .footer__menu-grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    padding-top: 1.25rem;
  }

  .footer__col + .footer__col {
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
  }

  .footer__brand .logo__img {
    display: none;
  }

  .header__actions .btn--sm {
    padding: 0.34rem 0.42rem;
    font-size: 0.66rem;
  }

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

  .hero__actions .btn {
    width: 100%;
  }

  .hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    max-width: none;
    justify-items: center;
  }

  .stat {
    padding-left: 0;
    padding-top: 0.55rem;
    width: 100%;
    text-align: center;
  }

  .stat__value {
    font-size: 1.45rem;
  }

  .stat__label {
    font-size: 0.62rem;
    letter-spacing: 0.04em;
  }

  .brand-hero {
    width: min(100%, 300px);
  }

  .brand-signature {
    width: min(100%, 190px);
  }

  .brand-signature__img {
    max-height: 48px;
  }

  .page__title {
    font-size: clamp(1.65rem, 7vw, 2.2rem);
  }
}
