:root {
  --bg: #fff8ef;
  --bg-soft: #fffdf8;
  --milk: #fffaf2;
  --cream: #f7e7d0;
  --caramel: #c58b5c;
  --caramel-soft: #e8c6a6;
  --choco: #3a2418;
  --muted: #8e6d58;
  --pink: #ffd6df;
  --accent: #ff9f68;
  --accent-dark: #e9783f;
  --line: rgba(58, 36, 24, 0.11);
  --shadow: 0 28px 80px rgba(107, 65, 35, 0.15);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--choco);
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 214, 223, 0.65), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(255, 159, 104, 0.28), transparent 26%),
    linear-gradient(180deg, #fff8ef 0%, #fffdf8 42%, #fff8ef 100%);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, textarea, input { font: inherit; }

.page-shell {
  overflow: visible;
  position: relative;
}
.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.55;
}
.page-shell::before {
  width: 300px;
  height: 300px;
  left: -120px;
  top: 220px;
  background: rgba(255, 214, 223, 0.65);
}
.page-shell::after {
  width: 240px;
  height: 240px;
  right: -90px;
  bottom: 120px;
  background: rgba(255, 179, 125, 0.45);
}

.site-header {
  width: min(calc(100% - 32px), var(--max));
  margin: 18px auto 0;
  min-height: 76px;
  padding: 10px 12px 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255,255,255,0.78);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 16px 45px rgba(58, 36, 24, 0.08);
  position: relative;
  z-index: 10;
}
@media (min-width: 981px) {
  .site-header {
    background: rgba(255, 253, 248, 0.74);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
  }
}

.maintenance-banner {
  width: min(calc(100% - 32px), var(--max));
  margin: 14px auto 0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 22px;
  border: 1px solid var(--caramel-soft);
  background: linear-gradient(135deg, rgba(255, 159, 104, 0.16), rgba(255, 214, 223, 0.38));
  box-shadow: 0 14px 38px rgba(58, 36, 24, 0.08);
  animation: maintIn .4s ease both;
}
.maintenance-banner[hidden] { display: none; }
.maintenance-banner .mb-icon {
  font-size: 26px;
  line-height: 1;
  flex: 0 0 auto;
  filter: drop-shadow(0 4px 8px rgba(197, 139, 92, 0.35));
}
.maintenance-banner .mb-text { display: flex; flex-direction: column; gap: 3px; }
.maintenance-banner .mb-text strong { font-size: 16px; font-weight: 800; color: var(--choco); }
.maintenance-banner .mb-text span { font-size: 14px; font-weight: 600; color: var(--muted); }
@keyframes maintIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 700px) {
  .maintenance-banner {
    width: min(calc(100% - 20px), var(--max));
    padding: 14px 16px;
    gap: 12px;
  }
  .maintenance-banner .mb-text strong { font-size: 15px; }
  .maintenance-banner .mb-text span { font-size: 13px; }
}

.brand img { width: 190px; height: auto; }
.nav {
  width: min(calc(100% - 32px), var(--max));
  margin: 12px auto 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  border-radius: 22px;
  background: rgba(255, 248, 239, 0.72);
  border: 1px solid var(--line);
}
.nav-top {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav a,
.nav .nav-soon,
.nav-top a {
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
  font-size: 13.5px;
  transition: .2s ease;
  white-space: nowrap;
}
@media (hover: hover) and (pointer: fine) {
  .nav a:hover,
  .nav-top a:hover { color: var(--choco); background: #fff; }
}
/* Touch: не даём :hover «залипать» после тапа (Android часто reports hover:hover). */
@media (pointer: coarse) {
  .nav a:not([aria-current="page"]):hover,
  .nav-top a:not([aria-current="page"]):hover,
  .nav a:not([aria-current="page"]):focus:not(:focus-visible),
  .nav-top a:not([aria-current="page"]):focus:not(:focus-visible) {
    color: var(--muted);
    background: transparent;
    box-shadow: none;
  }
}
.nav .nav-soon {
  opacity: .5;
  cursor: not-allowed;
  user-select: none;
}
.nav .nav-soon em {
  font-style: normal;
  font-size: 10px;
  font-weight: 800;
  margin-left: 5px;
  padding: 1px 6px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--choco);
  vertical-align: middle;
}

/* Десктоп: мобильные ссылки скрыты */
@media (min-width: 701px) {
  .nav-link-edit-mobile { display: none !important; }
  .nav .nav-link-vitrina { display: none !important; }
}
.feature-card .soon-tag {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 9px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--choco);
  font-size: 11px;
  font-weight: 800;
  vertical-align: middle;
  text-transform: uppercase;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--choco);
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(58, 36, 24, 0.16);
}

.section-pad {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
  padding: 86px 0;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.01fr) minmax(420px, .99fr);
  gap: 26px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 58px;
}
.hero-compact {
  grid-template-columns: minmax(0, 1fr);
  padding-top: 48px;
  padding-bottom: 24px;
}
.hero-compact h1 {
  font-size: clamp(36px, 5vw, 64px);
}
.eyebrow, .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--caramel);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}
.eyebrow > span:first-child,
.kicker > span:first-child {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(255, 159, 104, .17);
  flex-shrink: 0;
}
.hero-eyebrow {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  text-transform: none;
  letter-spacing: 0;
  white-space: nowrap;
}
.hero-eyebrow-brand {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
  color: var(--caramel);
  flex-shrink: 0;
  margin-right: 2px;
}
.hero-eyebrow-stat {
  font-weight: 600;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
  margin-left: -6px;
}
.hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: .91;
  letter-spacing: -.07em;
  max-width: 720px;
}
.hero-text {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.65;
  max-width: 650px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  min-height: 56px;
  padding: 0 24px;
  font-weight: 950;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ffbd8c);
  color: var(--choco);
  box-shadow: 0 18px 42px rgba(233, 120, 63, 0.28);
}
.btn-primary:hover { box-shadow: 0 24px 52px rgba(233, 120, 63, 0.34); }
.btn-ghost {
  background: rgba(255,255,255,.62);
  border: 1px solid var(--line);
  color: var(--choco);
}
.trust-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-row span {
  padding: 10px 14px;
  background: rgba(255,255,255,.6);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}
.hero-visual {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  animation: float 6s ease-in-out infinite;
}
.hero-visual img {
  width: min(118%, 720px);
  max-width: none;
}
@keyframes float {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-visual { animation: none; }
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 38px;
}
.section-heading.compact { max-width: 680px; }
.section-heading h2 {
  margin: 10px 0 12px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -.055em;
}
.section-heading p:not(.kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.editor-section { padding-top: 44px; }
.editor-layout {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.editor-faq {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 22px 20px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: var(--shadow);
}
.editor-faq__head {
  grid-column: 1 / -1;
  margin: 0 0 4px;
}
.editor-faq__head .kicker {
  margin-bottom: 6px;
}
.editor-faq__head h2 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.1;
  letter-spacing: -.04em;
}
.editor-faq .faq-card {
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.84);
  box-shadow: 0 10px 28px rgba(58, 36, 24, .06);
}
.editor-faq .faq-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.25;
}
.editor-faq .faq-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}
.editor-card {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 18px;
  padding: 18px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: var(--shadow);
}
.editor-card.single {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
}

/* --- Выбор услуги на главной --- */
.choose { padding-top: 0; }
/* Меньше зазора после hero / hero-compact — у .section-pad по умолчанию 86px сверху */
.hero.section-pad + .choose.section-pad,
.hero-compact.section-pad + .editor-section.section-pad {
  padding-top: 20px;
}
.hero.section-pad + .choose.section-pad {
  padding-bottom: 56px;
}
.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.choose-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.choose-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 90px rgba(107, 65, 35, 0.18);
}
/* Раздел в разработке: затемнён и недоступен для перехода. */
.choose-card.soon {
  opacity: .62;
  filter: grayscale(.3);
  cursor: not-allowed;
  pointer-events: none;
}
.choose-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--choco);
  color: var(--bg);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.choose-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--accent), #ffd6df);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 34px 34px, 100% 100%;
  font-size: 0;
  box-shadow: 0 12px 26px rgba(233, 120, 63, .2);
}

.choose-icon--create {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff8ef' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m12 2 1.6 4.8L18 8.4l-4.4 1.4L12 14l-1.6-4.2L6 8.4l4.4-1.6L12 2z'/%3E%3Cpath d='M19 13l.9 2.7L22 16.5l-2.1.7L19 20l-.9-2.8-2.1-.7 2.1-.8L19 13z'/%3E%3C/svg%3E"),
    linear-gradient(135deg, var(--accent), #ffd6df);
}
.choose-icon--edit {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff8ef' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m8 15 3-3 2 2 3-3 3 4'/%3E%3Cpath d='m3 18 6-6'/%3E%3C/svg%3E"),
    linear-gradient(135deg, var(--accent), #ffd6df);
}
.choose-icon--market {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff8ef' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 7h10l-1 13H8L7 7z'/%3E%3Cpath d='M9 7a3 3 0 0 1 6 0'/%3E%3Cpath d='M9.5 12h5'/%3E%3C/svg%3E"),
    linear-gradient(135deg, var(--accent), #ffd6df);
}
.choose-icon--food {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff8ef' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 14h16'/%3E%3Cpath d='M6 14a6 6 0 0 1 12 0'/%3E%3Cpath d='M10 8h4'/%3E%3Cpath d='M12 6v2'/%3E%3C/svg%3E"),
    linear-gradient(135deg, var(--accent), #ffd6df);
}
.choose-icon--interior {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff8ef' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 11V9a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v2'/%3E%3Cpath d='M6 11v6'/%3E%3Cpath d='M18 11v6'/%3E%3Cpath d='M4 14h16'/%3E%3Cpath d='M8 14v-2a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v2'/%3E%3C/svg%3E"),
    linear-gradient(135deg, var(--accent), #ffd6df);
}
.choose-icon--restore {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff8ef' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3c5 0 9 4 9 9 0 4-3 7-7 7-2 0-3-1-4-2-1 1-2 2-4 2-3 0-5-2-5-5 0-6 4-11 11-11z'/%3E%3Ccircle cx='9' cy='11' r='1'/%3E%3Ccircle cx='13' cy='9' r='1'/%3E%3Ccircle cx='16' cy='12' r='1'/%3E%3Cpath d='M12 14c-1 0-2 1-2 2'/%3E%3C/svg%3E"),
    linear-gradient(135deg, var(--accent), #ffd6df);
}
.choose-icon--video {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff8ef' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='6' width='14' height='12' rx='2'/%3E%3Cpath d='m11 12-3-2v4l3-2z' fill='%23fff8ef' stroke='none'/%3E%3Cpath d='m17 10 4-2v8l-4-2'/%3E%3C/svg%3E"),
    linear-gradient(135deg, var(--accent), #ffd6df);
}
.choose-card h3 { margin: 6px 0 0; font-size: 22px; }
.choose-card h2 { margin: 6px 0 0; font-size: 22px; line-height: 1.25; }
.choose-card p { margin: 0; color: var(--muted); font-weight: 600; line-height: 1.5; }
.choose-cta {
  margin-top: auto;
  align-self: flex-start;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--choco);
  color: var(--bg);
  font-weight: 800;
  font-size: 15px;
}
.choose-card:hover .choose-cta { background: var(--accent-dark); }

/* --- Главная: ПК — 3 колонки; мобилка не трогаем (отдельный блок ниже) --- */
@media (min-width: 901px) {
  #choose .choose-grid--home {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
  #choose .choose-card {
    padding: 24px 22px 20px;
    border-radius: 28px;
    background:
      linear-gradient(165deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 250, 244, 0.92) 48%, rgba(255, 236, 218, 0.55) 100%);
    border: 1px solid rgba(255, 159, 104, 0.2);
    box-shadow:
      0 14px 36px rgba(58, 36, 24, 0.07),
      inset 0 1px 0 rgba(255, 255, 255, 0.85);
    gap: 10px;
    min-height: 0;
  }
  #choose .choose-card--featured {
    background:
      linear-gradient(155deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 214, 180, 0.35) 55%, rgba(255, 159, 104, 0.18) 100%);
    border-color: rgba(255, 159, 104, 0.42);
    box-shadow:
      0 18px 44px rgba(255, 159, 104, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }
  #choose .choose-card:not(.soon):hover {
    border-color: rgba(255, 159, 104, 0.48);
    box-shadow: 0 22px 52px rgba(58, 36, 24, 0.11);
  }
  #choose .choose-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    font-size: 28px;
    box-shadow: 0 10px 22px rgba(233, 120, 63, 0.18);
  }
  #choose .choose-card h3 {
    margin: 4px 0 0;
    font-size: clamp(17px, 2.2vw, 21px);
    line-height: 1.22;
    letter-spacing: -0.02em;
  }
  #choose .choose-card p {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    flex: 1;
  }
  #choose .choose-cta {
    margin-top: 8px;
    padding: 11px 16px;
    font-size: 14px;
    background: linear-gradient(135deg, var(--choco) 0%, #5d4037 100%);
    box-shadow: 0 8px 18px rgba(58, 36, 24, 0.14);
    transition: background .2s ease, transform .15s ease;
  }
  #choose .choose-card:not(.soon):hover .choose-cta {
    background: linear-gradient(135deg, var(--accent-dark) 0%, #d9652a 100%);
    transform: translateY(-1px);
  }
  #choose .choose-card.soon {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.5) 0%, rgba(247, 241, 236, 0.72) 100%);
    border-style: dashed;
    border-color: rgba(58, 36, 24, 0.14);
    box-shadow: none;
  }
}

@media (max-width: 900px) {
  #choose .choose-grid--home {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 560px;
    margin: 0 auto;
  }
  #choose .choose-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 20px 20px 18px;
    border-radius: 24px;
    background:
      linear-gradient(165deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 250, 244, 0.92) 48%, rgba(255, 236, 218, 0.55) 100%);
    border: 1px solid rgba(255, 159, 104, 0.2);
    box-shadow:
      0 10px 28px rgba(58, 36, 24, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.85);
    min-height: 0;
    transform: none;
  }
  #choose .choose-card--featured {
    background:
      linear-gradient(155deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 214, 180, 0.32) 55%, rgba(255, 159, 104, 0.14) 100%);
    border-color: rgba(255, 159, 104, 0.38);
    box-shadow:
      0 12px 32px rgba(255, 159, 104, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }
  #choose .choose-card:not(.soon):hover {
    border-color: rgba(255, 159, 104, 0.45);
    box-shadow: 0 14px 36px rgba(58, 36, 24, 0.09);
    transform: translateY(-2px);
  }
  #choose .choose-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    font-size: 28px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(233, 120, 63, 0.16);
  }
  #choose .choose-card h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: -0.02em;
  }
  #choose .choose-card p {
    margin: 0;
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--muted);
  }
  #choose .choose-cta {
    margin-top: auto;
    align-self: flex-start;
    padding: 10px 16px;
    font-size: 14px;
    background: linear-gradient(135deg, var(--choco) 0%, #5d4037 100%);
    box-shadow: 0 6px 14px rgba(58, 36, 24, 0.12);
  }
  #choose .choose-card:not(.soon):hover .choose-cta {
    background: linear-gradient(135deg, var(--accent-dark) 0%, #d9652a 100%);
  }
  #choose .choose-card.soon {
    opacity: 0.62;
    filter: grayscale(0.3);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.55) 0%, rgba(247, 241, 236, 0.78) 100%);
    border-style: dashed;
    border-color: rgba(58, 36, 24, 0.14);
    box-shadow: none;
  }
  #choose .choose-badge {
    top: 14px;
    right: 14px;
    font-size: 11px;
    padding: 5px 10px;
  }
}

@media (max-width: 700px) {
  #choose .choose-grid--home {
    gap: 10px;
    max-width: none;
  }
  #choose .choose-card {
    padding: 16px 16px 14px;
    border-radius: 20px;
    gap: 8px;
  }
  #choose .choose-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    font-size: 24px;
  }
  #choose .choose-card h3 {
    font-size: 16px;
  }
  #choose .choose-card p {
    font-size: 13px;
    line-height: 1.4;
  }
  #choose .choose-cta {
    padding: 9px 14px;
    font-size: 13px;
  }
}

.guides-block { margin-bottom: 44px; }
.guides-block:last-child { margin-bottom: 0; }
.guides-block__title {
  margin: 0 0 18px;
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  color: var(--choco);
}

/* Страницы гайдов /guides/{slug} */
.guide-page { max-width: 760px; margin: 0 auto; }
.guide-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  color: rgba(58, 36, 24, .55);
}
.guide-breadcrumb a {
  color: var(--choco);
  text-decoration: none;
}
.guide-breadcrumb a:hover { text-decoration: underline; }
.guide-breadcrumb span[aria-hidden="true"] { opacity: .45; }
.guide-article .kicker {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-dark);
}
.guide-article h1 {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: 1.15;
}
.guide-lead {
  margin: 0 0 32px;
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(58, 36, 24, .78);
}
.guide-section { margin-bottom: 28px; }
.guide-section h2 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  color: var(--choco);
}
.guide-section p {
  margin: 0 0 12px;
  line-height: 1.65;
  color: rgba(58, 36, 24, .82);
}
.guide-section p:last-child { margin-bottom: 0; }
.guide-steps {
  margin: 0;
  padding-left: 1.25rem;
  line-height: 1.65;
}
.guide-steps li { margin-bottom: 10px; }
.guide-steps li:last-child { margin-bottom: 0; }
.guide-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin: 36px 0 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(197, 139, 92, .25);
}
.guide-cta__back {
  font-size: 15px;
  font-weight: 600;
  color: var(--choco);
  text-decoration: none;
}
.guide-cta__back:hover { text-decoration: underline; }
.guide-related { margin-top: 8px; }
.guide-related h2 {
  margin: 0 0 14px;
  font-size: 1.15rem;
}
.guide-related__grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.guide-related__link {
  display: block;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 248, 239, .85);
  border: 1px solid rgba(197, 139, 92, .22);
  color: var(--choco);
  font-weight: 600;
  text-decoration: none;
  transition: .15s ease;
}
.guide-related__link:hover {
  border-color: var(--accent);
  background: #fff;
}
.guide-faq__item {
  margin-bottom: 10px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 248, 239, .6);
  border: 1px solid rgba(197, 139, 92, .18);
}
.guide-faq__item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--choco);
}
.guide-faq__item p {
  margin: 12px 0 0;
  line-height: 1.6;
  color: rgba(58, 36, 24, .82);
}
.dropzone {
  min-height: 460px;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 214, 223, .55), rgba(255, 179, 125, .38)),
    repeating-linear-gradient(45deg, rgba(58, 36, 24, .05) 0 10px, transparent 10px 20px);
  border: 2px dashed rgba(197,139,92,.45);
  cursor: pointer;
  transition: .2s ease;
}
.dropzone:hover,
.dropzone.is-dragover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: inset 0 0 0 999px rgba(255,255,255,.18);
}
.dropzone > *:not(input):not(.preview-image) {
  position: relative;
  z-index: 2;
}
.drop-icon {
  font-size: 54px;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  border-radius: 32px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 14px 35px rgba(58,36,24,.12);
}
.dropzone strong {
  display: block;
  font-size: 22px;
  font-weight: 950;
}
.dropzone small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 750;
}
.preview-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: .25s ease;
}
.dropzone.has-image .preview-image { opacity: 1; }
.dropzone.has-image::after {
  content: "Изображение выбрано ✨";
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--bg);
  font-weight: 900;
  background: rgba(58,36,24,.74);
  backdrop-filter: blur(12px);
}
.dropzone.has-image > *:not(input):not(.preview-image) { opacity: 0; }

.prompt-panel {
  border-radius: 30px;
  padding: 30px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}
.prompt-panel label {
  display: block;
  margin-bottom: 12px;
  font-weight: 950;
  font-size: 20px;
}
.prompt-chip-hint {
  display: grid;
  grid-template-columns: 36px 1fr;
  grid-template-rows: auto auto;
  align-items: start;
  gap: 8px 12px;
  margin: 0 0 16px;
  padding: 14px 16px;
  border-radius: 18px;
  text-align: left;
  background: linear-gradient(135deg, rgba(255, 250, 242, .98), rgba(255, 236, 220, .55));
  border: 1px solid rgba(197, 139, 92, .24);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .72);
}
.prompt-chip-hint__icon {
  grid-column: 1;
  grid-row: 1;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 159, 104, .22), rgba(255, 214, 223, .42));
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233a2418' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18h6'/%3E%3Cpath d='M10 22h4'/%3E%3Cpath d='M8.5 14.5c-1.2-1-2-2.5-2-4.3A5.5 5.5 0 0 1 12 4.7a5.5 5.5 0 0 1 5.5 5.5c0 1.8-.8 3.3-2 4.3-.7.6-1.1 1.4-1.1 2.3V18H9.6v-1c0-.9-.4-1.7-1.1-2.5z'/%3E%3Cpath d='M12 7v3'/%3E%3Cpath d='M10.5 9.5 12 10.8 13.5 9.5'/%3E%3C/svg%3E");
  font-size: 0;
  line-height: 1;
}
.prompt-chip-hint__body {
  display: contents;
}
.prompt-chip-hint__title {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  align-self: center;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--choco);
}
.prompt-chip-hint__text {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--muted);
}
.preset-label-block {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 12px;
  margin-bottom: 12px;
}
.preset-label-block .preset-label-title {
  font-weight: 950;
  font-size: 20px;
  line-height: 1.2;
}
.preset-label-block .preset-label-hint {
  font-weight: 600;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.35;
}
.prompt-panel .prompt-chips + .preset-label-block {
  margin-top: 20px;
}
.prompt-panel .prompt-chips + label {
  margin-top: 20px;
}
.card-text-panel {
  margin-bottom: 4px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 253, 248, .98), rgba(255, 244, 232, .72));
  border: 1px solid rgba(197, 139, 92, .22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85), 0 10px 28px rgba(107, 65, 35, .06);
}
.card-text-panel__hint {
  margin: 0 0 16px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .58);
  border: 1px solid rgba(58, 36, 24, .06);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--muted);
}
.card-text-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.card-text-field {
  min-width: 0;
}
.card-text-field--full {
  grid-column: 1 / -1;
}
.card-text-field label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 7px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .01em;
  color: var(--choco);
}
.card-text-field__icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 159, 104, .14);
  font-size: 12px;
  line-height: 1;
  flex-shrink: 0;
}
.card-text-field__note {
  font-weight: 600;
  color: var(--muted);
  font-size: 12px;
}
.card-text-field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(58, 36, 24, .12);
  background: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--choco);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.card-text-field input::placeholder {
  color: rgba(142, 109, 88, .55);
  font-weight: 600;
}
.card-text-field input:hover {
  border-color: rgba(197, 139, 92, .34);
}
.card-text-field input:focus {
  outline: none;
  border-color: rgba(255, 159, 104, .88);
  box-shadow: 0 0 0 4px rgba(255, 159, 104, .14);
  background: #fff;
}
.card-text-field--optional input {
  background: rgba(255, 255, 255, .72);
}
.card-text-field--optional input:focus {
  background: #fff;
}
.prompt-panel label + .card-text-panel {
  margin-top: -4px;
}
.text-layout-intro {
  margin: -6px 0 14px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--muted);
}
.text-layout-panel {
  margin: 12px 0 10px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 247, 238, .98), rgba(255, 228, 205, .88));
  border: 1px solid rgba(197, 139, 92, .34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 8px 22px rgba(107, 65, 35, .08);
  overflow: hidden;
}
.text-layout-panel > summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  outline: none;
  background: rgba(255, 159, 104, .1);
  transition: background .18s ease;
}
.text-layout-panel > summary:hover {
  background: rgba(255, 159, 104, .16);
}
.text-layout-panel[open] > summary {
  border-bottom: 1px solid rgba(197, 139, 92, .22);
  background: rgba(255, 159, 104, .08);
}
.text-layout-panel > summary::-webkit-details-marker {
  display: none;
}
.text-layout-panel__title {
  flex: 1;
  font-weight: 950;
  font-size: 20px;
  line-height: 1.2;
  color: var(--choco);
}
.text-layout-panel__picked {
  font-size: 13px;
  font-weight: 750;
  color: var(--accent-dark, #c0581f);
  max-width: 42%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-layout-panel[open] .text-layout-panel__picked {
  display: none;
}
.text-layout-panel__caret {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(197, 139, 92, .24);
  font-size: 13px;
  color: var(--choco);
  transition: transform .2s ease, background .18s ease;
}
.text-layout-panel > summary:hover .text-layout-panel__caret {
  background: #fff;
}
.text-layout-panel[open] .text-layout-panel__caret {
  transform: rotate(180deg);
}
.text-layout-panel__body {
  padding: 12px 14px 14px;
  background: rgba(255, 253, 248, .55);
}
.text-layout-panel .text-layout-intro {
  margin-top: 0;
}
.text-layout-groups {
  display: grid;
  gap: 12px;
  margin-bottom: 6px;
}
.text-layout-group {
  padding: 14px 14px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(197, 139, 92, .18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .92);
}
.text-layout-group__label {
  display: block;
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}
.text-layout-group .prompt-chips {
  margin: 0;
  gap: 8px;
}
.text-layout-group .prompt-chips button {
  font-size: 14px;
  padding: 9px 12px;
}
.prompt-panel .text-layout-panel + label,
.prompt-panel .text-layout-panel + .menu-style-panel {
  margin-top: 22px;
}
@media (max-width: 560px) {
  .card-text-grid {
    grid-template-columns: 1fr;
  }
  .card-text-panel {
    padding: 16px;
    border-radius: 20px;
  }
}
textarea {
  width: 100%;
  resize: vertical;
  min-height: 152px;
  border: 1px solid rgba(58,36,24,.14);
  background: #fff;
  border-radius: 24px;
  padding: 18px 20px;
  color: var(--choco);
  line-height: 1.55;
  outline: none;
  transition: .2s ease;
}
textarea:focus {
  border-color: rgba(255,159,104,.88);
  box-shadow: 0 0 0 5px rgba(255,159,104,.15);
}
.prompt-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 22px;
}
.prompt-chips button {
  border: 1px solid var(--line);
  color: var(--choco);
  background: #fff8ef;
  padding: 10px 13px;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
  transition: .18s ease;
}
.prompt-chips button:hover {
  background: var(--pink);
  transform: translateY(-1px);
}
.generate-btn {
  width: 100%;
  min-height: 64px;
  font-size: 17px;
  margin-top: 18px;
}
.auth-gate {
  width: 100%;
  box-sizing: border-box;
  margin-top: 27px;
  padding: 18px 21px;
  border-radius: 24px;
  background: #fff7f1;
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 21px;
  line-height: 1.4;
  text-align: center;
  text-wrap: balance;
}
.auth-gate a {
  color: var(--accent-dark);
  font-weight: 800;
}
.menu-style-panel {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 250, 242, .96), rgba(255, 248, 239, .88));
  border: 1px solid rgba(197, 139, 92, .22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .65);
}
.menu-style-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 14px;
}
.menu-style-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  cursor: pointer;
  user-select: none;
}
.menu-style-toggle input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent, #ff9f68);
  cursor: pointer;
}
.menu-style-toggle input:disabled {
  cursor: not-allowed;
  opacity: .5;
}
.menu-style-status {
  font-size: 13px;
  font-weight: 800;
  color: var(--muted, #8e6d58);
}
.menu-style-status.saved {
  color: #2f7a4f;
}
.menu-style-detail {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--choco, #3a2418);
}
.menu-style-hint,
.menu-style-warn {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted, #8e6d58);
}
.menu-style-warn {
  color: #9a5a20;
}
.menu-style-warn .link-btn {
  border: 0;
  padding: 0;
  background: none;
  color: var(--accent-dark);
  font-weight: 800;
  cursor: pointer;
  text-decoration: underline;
}
.menu-style-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.btn-sm {
  min-height: 40px;
  padding: 0 14px;
  font-size: 14px;
}
#menu-style-from-gen {
  margin-top: 10px;
  width: 100%;
}
.generate-btn em { font-style: normal; }
.btn:disabled,
.btn[disabled] {
  opacity: .5;
  cursor: not-allowed;
  filter: grayscale(.25);
}
.btn:disabled:hover,
.btn[disabled]:hover {
  transform: none;
  box-shadow: none;
}
.status-box {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(58,36,24,.1);
  border-radius: 22px;
  background: #fff;
}
.status-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 14px;
  font-weight: 900;
}
.status-top span { color: var(--muted); }
.progress {
  margin-top: 12px;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: #f3dfc9;
}
.progress i {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--pink));
  transition: width .22s ease;
}
.editor-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.feature-grid,
.example-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.feature-card,
.example-card,
.steps article,
.final-card {
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(255,255,255,.84);
  box-shadow: 0 18px 55px rgba(58, 36, 24, .08);
}
.feature-card {
  padding: 26px;
  border-radius: 30px;
}
.feature-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: var(--milk);
  font-size: 28px;
  box-shadow: inset 0 0 0 1px var(--line);
}
.feature-card h3,
.example-card h3,
.steps h3 {
  margin: 18px 0 8px;
  font-size: 21px;
  letter-spacing: -.025em;
}
.feature-card p,
.example-card p,
.steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.examples { padding-top: 44px; }
.example-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.example-card {
  padding: 14px 14px 24px;
  border-radius: 34px;
}
.example-card img {
  width: 100%;
  border-radius: 26px;
}
.example-card h3,
.example-card p { padding-inline: 10px; }

.how { padding-top: 46px; }
.steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.steps article {
  padding: 30px;
  border-radius: 30px;
  min-height: 210px;
}
.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 20px;
  background: var(--choco);
  color: var(--bg);
  font-weight: 950;
}

.final-cta {
  position: relative;
  padding-bottom: 62px;
}
.wave {
  position: absolute;
  left: 50%;
  top: -20px;
  width: 100vw;
  max-width: none;
  transform: translateX(-50%);
  z-index: -1;
  opacity: .75;
}
.final-card {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  padding: clamp(34px, 7vw, 76px);
  border-radius: 42px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,214,223,.76), transparent 36%),
    radial-gradient(circle at 84% 18%, rgba(255,159,104,.31), transparent 34%),
    rgba(255,255,255,.76);
}
.final-card h2 {
  margin: 10px 0 14px;
  font-size: clamp(34px, 5.4vw, 64px);
  line-height: .98;
  letter-spacing: -.06em;
}
.final-card p:not(.kicker) {
  margin: 0 auto 28px;
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

/* --- Компактный хвост лендинга: цены → шаги → CTA --- */
#pricing.section-pad,
#pricing ~ .section-pad {
  padding-top: 36px;
  padding-bottom: 36px;
}
#pricing .section-heading,
#how .section-heading {
  margin-bottom: 16px;
}
#pricing .section-heading h2,
#how .section-heading h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  margin: 6px 0 8px;
}
#pricing .section-heading p:not(.kicker),
#how .section-heading p:not(.kicker) {
  font-size: 15px;
  line-height: 1.5;
}
#pricing.pricing,
#how.how {
  padding-top: 0;
}
#pricing .pricing-card {
  max-width: 580px;
  padding: clamp(18px, 3vw, 28px);
  border-radius: 24px;
}
#pricing .pricing-card::before {
  inset: 10px;
  border-radius: 16px;
}
#pricing .pricing-card h3 {
  margin: 10px 0 6px;
  font-size: clamp(20px, 2.8vw, 28px);
}
#pricing .price-line {
  margin: 2px 0 8px;
  gap: 8px;
}
#pricing .price-line span {
  font-size: clamp(30px, 4.5vw, 44px);
}
#pricing .price-line small {
  font-size: 13px;
}
#pricing .pricing-card p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 14px;
}
#how .steps {
  gap: 10px;
}
#how .steps article {
  padding: 16px;
  border-radius: 18px;
  min-height: 0;
}
#how .steps span {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  font-size: 12px;
}
#how .steps h3 {
  margin: 8px 0 4px;
  font-size: 16px;
}
#how .steps p {
  font-size: 13px;
  line-height: 1.45;
}
#pricing ~ .final-cta.section-pad {
  padding-bottom: 32px;
}
#pricing ~ .final-cta .final-card {
  padding: clamp(20px, 4vw, 34px);
  border-radius: 24px;
}
#pricing ~ .final-cta .final-card h2 {
  font-size: clamp(26px, 3.8vw, 38px);
  margin: 6px 0 8px;
}
#pricing ~ .final-cta .final-card p:not(.kicker) {
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.site-footer {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto 32px;
  padding: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
  color: var(--muted);
  font-weight: 750;
}
.site-footer img {
  width: 168px;
  flex: 0 0 auto;
}
.site-footer p { margin: 0; }

.site-footer-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: nowrap;
}

.site-footer-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
  flex: 0 0 auto;
}

.site-footer-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
}

.site-footer-nav a:hover { color: var(--choco); }

.site-footer-row p {
  flex: 0 1 auto;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
}

@media (max-width: 980px) {
  .site-header { border-radius: 24px; }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 52px;
  }
  .hero-visual { min-height: 360px; }
  .hero-visual img { width: 100%; max-width: 100%; }
  .editor-card { grid-template-columns: 1fr; }
  .editor-faq { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dropzone { min-height: 360px; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .site-header {
    width: min(calc(100% - 20px), var(--max));
    margin-top: 10px;
    min-height: 68px;
    padding: 8px 9px 8px 12px;
  }
  .brand img { width: 154px; }
  .nav-top { display: none; }
  .nav a:not(.nav-link-home-mobile):not(.nav-link-create-mobile):not(.nav-link-edit-mobile):not(.nav-link-vitrina),
  .nav .nav-soon { display: none !important; }
  .nav {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 6px;
    width: min(calc(100% - 20px), var(--max));
    margin: 10px auto 0;
    box-sizing: border-box;
    overflow: hidden;
    justify-items: stretch;
    align-items: stretch;
    border-radius: 18px;
    background:
      linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 250, 244, 0.94) 55%, rgba(255, 236, 218, 0.45) 100%);
    border: 1px solid rgba(255, 159, 104, 0.22);
    box-shadow:
      0 10px 28px rgba(58, 36, 24, 0.07),
      inset 0 1px 0 rgba(255, 255, 255, 0.88);
  }
  .nav a.nav-link-home-mobile,
  .nav a.nav-link-create-mobile,
  .nav a.nav-link-edit-mobile,
  .nav a.nav-link-vitrina {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    align-self: stretch;
    justify-self: stretch;
    width: 100%;
    margin: 0;
    text-align: center;
    min-width: 0;
    min-height: 0;
    padding: 6px 2px 5px;
    font-size: 10px;
    line-height: 1.15;
    white-space: normal;
    text-wrap: balance;
    letter-spacing: -0.02em;
    box-sizing: border-box;
    border-radius: 12px;
    background: transparent;
    border: none;
    box-shadow: none;
    color: var(--muted);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    transition: color .15s ease, background .15s ease;
    position: relative;
  }
  .nav a.nav-link-create-mobile,
  .nav a.nav-link-edit-mobile,
  .nav a.nav-link-vitrina {
    border-left: 1px solid rgba(58, 36, 24, 0.08);
  }
  .nav a.nav-link-create-mobile,
  .nav a.nav-link-edit-mobile {
    font-size: 0;
    line-height: 0;
  }
  .nav a.nav-link-create-mobile::after {
    content: "Текст";
    font-size: 10px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
  }
  .nav a.nav-link-edit-mobile::after {
    content: "Редактор";
    font-size: 10px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
  }
  .nav a.nav-link-home-mobile::before,
  .nav a.nav-link-create-mobile::before,
  .nav a.nav-link-edit-mobile::before,
  .nav a.nav-link-vitrina::before {
    content: "";
    display: block;
    width: 28px;
    height: 28px;
    border-radius: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px 22px;
    box-shadow: none;
    flex-shrink: 0;
    opacity: 0.88;
  }
  .nav a.nav-link-home-mobile::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233a2418' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 10.5 12 4l8 6.5V19a1 1 0 0 1-1 1h-4.5v-5.5H9.5V20H5a1 1 0 0 1-1-1v-8.5z'/%3E%3C/svg%3E");
  }
  .nav a.nav-link-create-mobile::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233a2418' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m12 3 1.2 3.6L17 8l-3.8 1.2L12 13l-1.2-3.8L7 8l3.8-1.2L12 3z'/%3E%3Cpath d='M18 14l.8 2.4L21 17l-2.2.7L18 20l-.8-2.3L15 17l2.2-.6L18 14z'/%3E%3C/svg%3E");
  }
  .nav a.nav-link-edit-mobile::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233a2418' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Ccircle cx='8.5' cy='10.5' r='1.5'/%3E%3Cpath d='m21 17-5.5-5.5L5 21'/%3E%3C/svg%3E");
  }
  .nav a.nav-link-vitrina::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233a2418' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='7' height='7' rx='1.5'/%3E%3Crect x='14' y='3' width='7' height='7' rx='1.5'/%3E%3Crect x='3' y='14' width='7' height='7' rx='1.5'/%3E%3Crect x='14' y='14' width='7' height='7' rx='1.5'/%3E%3C/svg%3E");
  }
  .nav a[aria-current="page"] {
    color: var(--choco);
    font-weight: 800;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: inset 0 0 0 1px rgba(255, 159, 104, 0.28);
  }
  .nav a[aria-current="page"]::after {
    color: var(--choco);
  }
  .nav a[aria-current="page"]::before {
    opacity: 1;
  }
  .nav a.nav-tap:not([aria-current="page"]) {
    color: var(--choco);
    background: transparent;
  }
  .nav a.nav-link-home-mobile:active,
  .nav a.nav-link-create-mobile:active,
  .nav a.nav-link-edit-mobile:active,
  .nav a.nav-link-vitrina:active {
    background: rgba(255, 255, 255, 0.65);
    transform: none;
  }
  .header-cta { padding: 9px 12px; font-size: 13px; }
  .auth-links { gap: 6px; }
  .auth-links .nav-link { font-size: 13px; padding: 9px 10px; }
  .auth-links .balance-chip { font-size: 13px; padding: 8px 10px; }
  .auth-links .btn-sm { font-size: 12px; padding: 8px 10px; }
  .section-pad { width: min(calc(100% - 20px), var(--max)); padding: 58px 0; }
  /* Главная: hero −20% на мобилке */
  main#top > .hero {
    gap: 21px;
    padding-top: 34px;
    padding-bottom: 22px;
  }
  main#top > .hero.section-pad + .choose.section-pad {
    padding-top: 6px;
  }
  main#top > .hero h1 {
    margin: 14px 0;
    font-size: clamp(35px, 12vw, 56px);
    line-height: 1.02;
    letter-spacing: -0.045em;
    text-wrap: balance;
    max-width: 18ch;
  }
  main#top > .hero .hero-text {
    font-size: clamp(14px, 3.8vw, 17px);
    line-height: 1.55;
  }
  main#top > .hero .hero-eyebrow-brand,
  main#top > .hero .hero-eyebrow-stat {
    font-size: 10px;
  }
  main#top > .hero .hero-actions {
    margin-top: 26px;
    gap: 11px;
  }
  main#top > .hero .hero-actions .btn {
    width: 100%;
    min-height: 45px;
    padding: 0 19px;
    font-size: 14px;
  }
  main#top > .hero .hero-visual {
    min-height: 200px;
    margin-top: -8px;
    align-items: stretch;
  }
  main#top > .hero .hero-visual img {
    width: min(100%, 100%);
  }
  main#top > .hero .beta-float {
    padding: 8px 10px;
    font-size: 10px;
    gap: 6px;
    border-radius: 13px;
  }
  main#top > .hero .beta-float strong {
    font-size: 10px;
    padding: 5px 8px;
  }
  .hero { padding-top: 42px; padding-bottom: 28px; }
  .hero.section-pad + .choose.section-pad,
  .hero-compact.section-pad + .editor-section.section-pad {
    padding-top: 8px;
  }
  .hero h1 { font-size: clamp(44px, 15vw, 70px); }
  .hero-actions .btn { width: 100%; }
  .trust-row { display: none !important; }
  .hero-visual { min-height: 250px; margin-top: -10px; align-items: stretch; }
  .beta-float {
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 12px;
    font-size: 12.5px;
    line-height: 1.35;
    border-radius: 16px;
  }
  .beta-float strong {
    white-space: nowrap;
    font-size: 12px;
    padding: 6px 10px;
  }
  .beta-float span {
    width: 100%;
    text-wrap: pretty;
  }
  .editor-card { padding: 10px; border-radius: 28px; }
  .editor-faq { grid-template-columns: 1fr; padding: 18px 14px; }
  .prompt-panel { padding: 20px; border-radius: 24px; }
  .auth-gate {
    margin-top: 18px;
    padding: 15px 18px;
    font-size: 19px;
    line-height: 1.35;
    border-radius: 21px;
  }
  .generate-btn {
    min-height: 52px;
    margin-top: 12px;
    font-size: 15px;
  }
  .dropzone { min-height: 300px; border-radius: 24px; }
  .feature-grid,
  .example-grid,
  .steps { grid-template-columns: 1fr; }
  .choose-grid:not(.choose-grid--home) { grid-template-columns: 1fr; }
  .section-heading { margin-bottom: 24px; }
  #pricing.section-pad,
  #pricing ~ .section-pad {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

@media (max-width: 720px) {
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .site-footer-row {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .site-footer-nav {
    flex-wrap: wrap;
    row-gap: 8px;
    column-gap: 12px;
  }
  .site-footer-nav a {
    font-size: 13px;
  }
  .site-footer-row p {
    white-space: normal;
  }
}

/* Шапка аккаунта (раньше было в auth.css) */
#auth-slot { flex: 0 0 auto; align-self: center; }
.auth-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}
.balance-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,248,239,.9);
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}
.auth-links-pending .balance-chip {
  opacity: 0.55;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  color: var(--muted);
}
.nav-link:hover { color: var(--choco); }

.header-tg {
  display: none;
}

.tg-fab-wrap {
  position: fixed;
  right: 16px;
  z-index: 8500;
  pointer-events: none;
}
.tg-fab {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #f0d9c4;
  box-shadow: 0 10px 28px rgba(58, 36, 24, 0.12);
  color: #229ED9;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  transition: background 0.15s, color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.tg-fab:hover {
  background: #229ED9;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(34, 158, 217, 0.28);
}
.tg-fab svg,
.tg-fab-icon { display: block; flex-shrink: 0; width: 20px; height: 20px; }
@media (max-width: 700px) {
  .tg-fab {
    padding: 10px 24px;
    justify-content: center;
  }
  .tg-fab-label { display: none; }
}

.btn-sm {
  padding: 7px 12px;
  font-size: 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  color: var(--choco);
  font-family: inherit;
}
.btn-sm:hover { background: var(--cream); }

@media (max-width: 980px) {
  .page-shell::before,
  .page-shell::after { display: none; }
}

/* --- Added for merged live app --- */
.file-name {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
  word-break: break-word;
}

.char-count {
  margin: 10px 4px 0;
  text-align: right;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.queue-status,
.error-msg,
.result-container {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(58,36,24,.1);
}

.queue-status {
  color: #7c5b45;
  background: #fff8ef;
}

.error-msg {
  color: #b42318;
  background: #fff2f0;
  border-color: rgba(180,35,24,.14);
}

.result-container h3 {
  margin: 0 0 14px;
  font-size: 20px;
  letter-spacing: -.02em;
}

.result-container img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 14px;
  border: 1px solid rgba(58,36,24,.08);
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.result-actions .btn {
  flex: 1 1 220px;
}


/* --- Fixes for live Molochko app --- */
.file-name {
  margin-top: 12px;
  color: var(--muted, #6b7280);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
  word-break: break-word;
}

.char-count {
  margin: 10px 4px 0;
  text-align: right;
  color: var(--muted, #6b7280);
  font-size: 13px;
  font-weight: 800;
}

.queue-status,
.error-msg,
.result-container {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(58,36,24,.1);
}

.queue-status {
  color: #7c5b45;
  background: #fff8ef;
}

.error-msg {
  color: #b42318;
  background: #fff2f0;
  border-color: rgba(180,35,24,.14);
}

.result-container h3 {
  margin: 0 0 14px;
  font-size: 20px;
  letter-spacing: -.02em;
}

.result-container img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 14px;
  border: 1px solid rgba(58,36,24,.08);
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.result-actions .btn {
  flex: 1 1 220px;
}

.button-progress-bar {
  border-radius: 999px;
}


/* --- Live app fixes --- */
.file-name {
  margin-top: 12px;
  color: var(--muted, #6b7280);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
  word-break: break-word;
}

.char-count {
  margin: 10px 4px 0;
  text-align: right;
  color: var(--muted, #6b7280);
  font-size: 13px;
  font-weight: 800;
}

.queue-status,
.error-msg,
.result-container {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(58,36,24,.1);
}

.queue-status {
  color: #7c5b45;
  background: #fff8ef;
}

.error-msg {
  color: #b42318;
  background: #fff2f0;
  border-color: rgba(180,35,24,.14);
}

.result-container h3 {
  margin: 0 0 14px;
  font-size: 20px;
  letter-spacing: -.02em;
}

.result-container img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 14px;
  border: 1px solid rgba(58,36,24,.08);
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.result-actions .btn {
  flex: 1 1 220px;
}

.button-progress-bar {
  border-radius: 999px;
}

[hidden],
.hidden {
  display: none !important;
}


/* --- Beta pricing additions --- */
.beta-float {
  width: min(100%, 620px);
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255,214,223,.85), transparent 55%),
    rgba(255,255,255,.82);
  border: 1px solid rgba(197,139,92,.22);
  box-shadow: 0 16px 38px rgba(58,36,24,.12);
  backdrop-filter: blur(12px);
  color: var(--muted);
  font-weight: 750;
  font-size: 13.5px;
  line-height: 1.4;
}

.beta-float strong {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--choco);
  background: linear-gradient(135deg, var(--accent), #ffbd8c);
  box-shadow: 0 10px 22px rgba(233,120,63,.20);
  font-weight: 950;
  font-size: 13px;
}

.beta-float span {
  line-height: 1.4;
  text-wrap: balance;
  min-width: 0;
}

.pricing {
  padding-top: 44px;
}

.pricing-card {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 38px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(255,214,223,.76), transparent 34%),
    radial-gradient(circle at 90% 0%, rgba(255,159,104,.28), transparent 32%),
    rgba(255,255,255,.74);
  border: 1px solid rgba(255,255,255,.86);
  box-shadow: var(--shadow);
  text-align: center;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 28px;
  border: 1px solid rgba(58,36,24,.07);
  pointer-events: none;
}

.pricing-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--choco);
  color: var(--bg);
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
}

.pricing-card h3 {
  position: relative;
  z-index: 1;
  margin: 18px 0 10px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
  letter-spacing: -.045em;
}

.price-line {
  position: relative;
  z-index: 1;
  margin: 8px 0 18px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.price-line span {
  font-size: clamp(48px, 8vw, 76px);
  line-height: .95;
  font-weight: 950;
  letter-spacing: -.065em;
  color: var(--choco);
}

.price-line small {
  color: var(--muted);
  font-size: 16px;
  font-weight: 900;
}

.pricing-card p {
  position: relative;
  z-index: 1;
  max-width: 570px;
  margin: 0 auto 26px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.pricing-card .btn {
  position: relative;
  z-index: 1;
}

/* --- 404 page --- */
.notfound-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px 16px;
}

.notfound-card {
  position: relative;
  width: min(100%, 780px);
  padding: clamp(32px, 7vw, 76px);
  border-radius: 44px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(255,214,223,.82), transparent 34%),
    radial-gradient(circle at 86% 16%, rgba(255,159,104,.32), transparent 32%),
    rgba(255,255,255,.76);
  border: 1px solid rgba(255,255,255,.88);
  box-shadow: var(--shadow);
}

.notfound-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 32px;
  border: 1px solid rgba(58,36,24,.07);
  pointer-events: none;
}

.notfound-logo {
  position: relative;
  z-index: 1;
  width: 210px;
  margin: 0 auto 22px;
}

.notfound-code {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--choco);
  color: var(--bg);
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(58,36,24,.14);
}

.notfound-card h1 {
  position: relative;
  z-index: 1;
  margin: 20px 0 14px;
  font-size: clamp(38px, 7vw, 76px);
  line-height: .95;
  letter-spacing: -.065em;
}

.notfound-card p {
  position: relative;
  z-index: 1;
  margin: 0 auto 28px;
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

.notfound-actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.notfound-small {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(58,36,24,.08);
  font-weight: 850;
  font-size: 14px;
}

@media (max-width: 700px) {
  .notfound-card {
    border-radius: 32px;
  }

  .notfound-logo {
    width: 170px;
  }

  .notfound-actions .btn {
    width: 100%;
  }
}
