:root {
  --canvas: #fdf8f6;
  --canvas-end: #f5e6ef;
  --surface: #ffffff;
  --surface-rose: #fce8ec;
  --surface-lavender: #ede8f5;
  --primary: #c97b84;
  --primary-soft: #e8b4bc;
  --primary-deep: #a85d67;
  --ink: #3d3a36;
  --ink-muted: #8a8178;
  --hairline: #efe6e0;
  --success: #6bab8a;
  --success-bg: #e8f5ee;
  --warning: #d4a574;
  --warning-bg: #faf0e4;
  --error: #d4737a;
  --error-bg: #fce8ec;
  --shadow: 0 4px 24px rgba(61, 58, 54, 0.06);
  --shadow-lg: 0 12px 40px rgba(201, 123, 132, 0.12);
  --radius: 20px;
  --radius-sm: 12px;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-ui: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--ink);
  background: linear-gradient(145deg, var(--canvas) 0%, var(--canvas-end) 55%, #f0e8f4 100%);
  background-attachment: fixed;
  line-height: 1.6;
  position: relative;
  overflow-x: clip;
  max-width: 100%;
  overscroll-behavior-x: none;
}

a { color: var(--primary-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Floral decor (как в ЛК) ── */
.deco {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

.deco-floral-1 {
  top: -40px;
  right: -20px;
  width: 280px;
  height: 280px;
}

.deco-floral-2 {
  bottom: -60px;
  left: -40px;
  width: 320px;
  height: 320px;
  opacity: 0.25;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(253, 248, 246, 0.88);
  border-bottom: 1px solid var(--hairline);
  padding-top: env(safe-area-inset-top);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  position: relative;
  min-width: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(180, 100, 110, 0.14);
}

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

.logo-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.logo-text small {
  display: block;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-sheet {
  display: contents;
}

@media (min-width: 901px) {
  .nav-backdrop { display: none !important; }

  .nav {
    position: static;
    flex-direction: row;
    justify-content: flex-end;
    background: transparent;
    padding: 0;
    inset: auto;
    overflow: visible;
    pointer-events: auto;
  }

  .nav-sheet {
    display: contents;
  }

  .nav a:not(.btn) {
    display: inline;
    width: auto;
    max-width: none;
    padding: 0;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-muted);
    border-radius: 0;
  }

  .nav a:not(.btn):active {
    background: transparent;
  }

  .nav .btn {
    display: inline-flex;
    width: auto;
    max-width: none;
    margin-top: 0;
    padding: 12px 24px;
    border-radius: 999px;
    white-space: nowrap;
  }

  .nav .btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
    box-shadow: 0 4px 14px rgba(168, 93, 103, 0.35);
  }

  .nav .btn-primary:hover {
    color: #fff;
    box-shadow: 0 6px 18px rgba(168, 93, 103, 0.4);
  }
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-muted);
  text-decoration: none;
}

.nav a:hover { color: var(--primary-deep); text-decoration: none; }

.nav .btn-primary {
  color: #fff;
  box-shadow: 0 4px 14px rgba(168, 93, 103, 0.45);
}

.nav .btn-primary:hover {
  color: #fff;
  text-decoration: none;
}

.nav .btn-outline {
  color: var(--primary-deep);
  background: #fff;
}

.nav .btn-outline:hover {
  color: var(--primary-deep);
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(201, 123, 132, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(201, 123, 132, 0.4);
}

.btn-outline {
  background: var(--surface);
  color: var(--primary-deep);
  border: 1px solid var(--primary-soft);
  box-shadow: var(--shadow);
}

/* ── Hero ── */
.hero {
  padding: 72px 0 88px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--surface-rose);
  color: var(--primary-deep);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(232, 180, 188, 0.5);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.hero-lead {
  font-size: 18px;
  color: var(--ink-muted);
  margin: 0 0 32px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--success-bg);
  color: #4a7a62;
  font-size: 12px;
  font-weight: 600;
}

.hero-trust span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px 22px 26px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
  align-self: center;
}

.hero-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 14px;
  text-align: center;
}

.hero-chat {
  max-width: 318px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: 0 8px 28px rgba(201, 123, 132, 0.14);
  background: #fff;
}

.hero-chat__top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--hairline);
}

.hero-chat__avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--surface-rose), #fff);
  border: 1px solid rgba(201, 123, 132, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-deep);
  flex-shrink: 0;
}

.hero-chat__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}

.hero-chat__status {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--success);
  margin-top: 1px;
}

.hero-chat__body {
  padding: 14px 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #e8e0dc url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d4ccc8' fill-opacity='0.35'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-chat__day {
  align-self: center;
  margin: 0 0 4px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-muted);
  box-shadow: 0 1px 2px rgba(61, 58, 54, 0.06);
}

.chat-msg--template {
  align-self: flex-end;
  max-width: 90%;
  padding: 10px 12px 22px;
  background: linear-gradient(145deg, #d4a0a8 0%, #c97b84 100%);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.tmpl-title {
  margin: 0 0 10px;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.35;
}

.tmpl-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.tmpl-text + .tmpl-text {
  margin-top: 8px;
}

.tmpl-details {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.tmpl-details li {
  font-size: 13px;
  line-height: 1.4;
}

.tmpl-sign {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.4;
}

.chat-msg--out {
  align-self: flex-end;
  background: linear-gradient(145deg, #d4a0a8 0%, #c97b84 100%);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.chat-msg {
  position: relative;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.42;
  box-shadow: 0 1px 2px rgba(61, 58, 54, 0.08);
}

.chat-msg p {
  margin: 0;
}

.chat-msg--in {
  align-self: flex-start;
  max-width: 72%;
  padding: 8px 11px 18px;
  background: #fff;
  color: var(--ink);
  border-bottom-left-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.chat-msg__time {
  position: absolute;
  right: 8px;
  bottom: 4px;
  font-size: 10px;
  line-height: 1;
  opacity: 0.72;
  white-space: nowrap;
}

.chat-msg--out .chat-msg__time {
  color: rgba(255, 255, 255, 0.88);
}

.chat-msg--in .chat-msg__time {
  color: var(--ink-muted);
}

.deco-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.35;
  z-index: 0;
}

.deco-blob-1 {
  width: 320px;
  height: 320px;
  background: var(--primary-soft);
  top: -80px;
  right: -60px;
}

.deco-blob-2 {
  width: 280px;
  height: 280px;
  background: #d4c4e8;
  bottom: 0;
  left: -80px;
}

/* ── Sections ── */
main { position: relative; z-index: 1; }

section { padding: 72px 0; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  text-align: center;
  margin: 0 0 12px;
}

.section-sub {
  text-align: center;
  color: var(--ink-muted);
  max-width: 560px;
  margin: 0 auto 48px;
  font-size: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--surface-rose), var(--surface-lavender));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary-deep);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--ink);
}

.feature-card p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-muted);
}

/* ── Pricing ── */
.trial-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--surface-rose) 0%, var(--surface) 100%);
  border: 1px solid var(--primary-soft);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 32px;
  box-shadow: var(--shadow);
}

.trial-banner-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trial-banner-text strong {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--primary-deep);
}

.trial-banner-text span {
  font-size: 14px;
  color: var(--ink-muted);
}

.pricing-table-wrap {
  max-width: 520px;
  margin: 0 auto 28px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.pricing-table th,
.pricing-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--hairline);
}

.pricing-table th {
  background: var(--surface-rose);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
}

.pricing-table th:last-child,
.pricing-table td:last-child {
  text-align: right;
}

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

.pricing-table tbody tr:hover td {
  background: rgba(252, 232, 236, 0.2);
}

.pricing-table .highlight-row {
  background: rgba(252, 232, 236, 0.35);
}

.pricing-table .highlight-row td strong {
  color: var(--primary-deep);
  font-size: 17px;
}

.pricing-includes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  font-size: 14px;
  color: var(--ink-muted);
}

.pricing-includes li::before {
  content: "✓ ";
  color: var(--success);
  font-weight: 600;
}

.pricing-footnote {
  text-align: center;
  font-size: 14px;
  color: var(--ink-muted);
  margin: 0;
}

.pricing-footnote a {
  color: var(--primary-deep);
}

/* ── Steps ── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step {
  text-align: center;
  padding: 24px 16px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow);
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 4px 12px rgba(201, 123, 132, 0.3);
}

.step h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
}

.step p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-muted);
}

/* ── CTA ── */
.cta-band {
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
  color: #fff;
  border-radius: var(--radius);
  padding: 56px 40px;
  text-align: center;
  margin: 0 0 72px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: 32px;
  margin: 0 0 12px;
  position: relative;
}

.cta-band p {
  margin: 0 0 28px;
  opacity: 0.92;
  font-size: 17px;
  position: relative;
}

.cta-band .btn-primary {
  background: #fff;
  color: var(--primary-deep);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: relative;
}

.cta-band .btn-primary:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

/* ── Legal pages header ── */
.site-header--legal {
  position: static;
}

.header-inner--legal {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-inner--legal .nav--legal {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.header-inner--legal .legal-lk-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (min-width: 901px) {
  .header-inner--legal .nav--legal a:not(.btn) {
    display: inline;
    padding: 0;
    text-align: left;
    font-size: 14px;
    color: var(--ink-muted);
  }
}
/* ── Legal pages content ── */
.legal-page {
  padding: 48px 0 80px;
  position: relative;
  z-index: 1;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: 36px;
  margin: 0 0 8px;
}

.legal-meta {
  color: var(--ink-muted);
  font-size: 14px;
  margin-bottom: 32px;
}

.legal-content {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 40px 48px;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin: 28px 0 12px;
  color: var(--primary-deep);
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p, .legal-content li {
  font-size: 15px;
  color: var(--ink);
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content .placeholder {
  background: var(--warning-bg);
  border: 1px dashed var(--warning);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: #8a6d3b;
  margin-bottom: 24px;
}

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--hairline);
  padding: 40px 0;
  background: rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--ink-muted);
  margin: 12px 0 0;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 14px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 8px;
  text-decoration: none;
}

.footer-col a:hover { color: var(--primary-deep); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.footer-contact a {
  margin-bottom: 0;
}

.footer-bottom p {
  margin: 0;
}
.footer-bottom-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-legal--note {
  max-width: 320px;
}

@media (min-width: 901px) {
  .footer-legal--note {
    text-align: right;
  }
}


.footer-copy {
  font-weight: 500;
  color: var(--ink);
}

.footer-legal {
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.92;
}


.footer-bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  font-size: 13px;
  color: var(--ink-muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

/* ── Mobile ── */
.menu-toggle { display: none; }

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(61, 58, 54, 0.28);
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav-backdrop.open { display: block; }

@media (max-width: 900px) {
  html {
    overflow-x: hidden;
  }

  body {
    overflow-x: hidden;
    background-attachment: scroll;
  }

  .nav-backdrop.open {
    top: var(--header-h, 72px);
  }

  body.menu-open .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 200;
    background: #fdf8f6;
    backdrop-filter: none;
    box-shadow: 0 1px 0 var(--hairline);
    padding-top: env(safe-area-inset-top, 0px);
  }

  body.menu-open .menu-toggle {
    z-index: 201;
  }

  body { background-attachment: scroll; }

  .hero {
    overflow: hidden;
  }

  .hero-grid { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 64px; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .site-footer {
    padding: 32px 0 calc(32px + env(safe-area-inset-bottom, 0px));
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    justify-items: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-bottom: 28px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--hairline);
  }

  .footer-brand .logo {
    justify-content: center;
    flex: unset;
    width: auto;
    margin-inline: auto;
  }

  .footer-brand p {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    font-size: 13px;
    line-height: 1.55;
  }

  .footer-col {
    width: 100%;
    max-width: 300px;
    padding: 2px 0;
  }

  .footer-col h4 {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin: 0 0 12px;
  }

  .footer-col a {
    font-size: 15px;
    line-height: 1.45;
    color: var(--ink);
    margin-bottom: 10px;
  }

  .footer-col a:last-child,
  .footer-contact a:last-child {
    margin-bottom: 0;
  }

  .footer-contact {
    margin-top: 16px;
    padding: 14px 18px;
    border-top: none;
    background: var(--surface-rose);
    border-radius: var(--radius-sm);
    gap: 6px;
  }

  .footer-contact a {
    font-size: 14px;
    color: var(--primary-deep);
    font-weight: 500;
  }

  .deco { display: none; }

  .deco-blob-1,
  .deco-blob-2 {
    width: 200px;
    height: 200px;
    opacity: 0.2;
  }

  .deco-blob-1 { right: -40px; }
  .deco-blob-2 { left: -40px; }

  .header-inner { gap: 12px; padding: 14px 0; }

  .logo {
    min-width: 0;
    flex: 1;
  }

  .logo-text { font-size: 20px; }

  .logo-text small {
    font-size: 9px;
    letter-spacing: 0.06em;
  }

  .nav {
    display: none;
    position: fixed;
    top: var(--header-h, 72px);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 150;
    margin-left: 0;
    background: #fdf8f6;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav.open {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav-sheet {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: min(280px, calc(100vw - 48px));
    margin: 0 auto;
    padding: 20px 0 40px;
    box-sizing: border-box;
    justify-content: flex-start;
  }

  .nav-sheet a:not(.btn) {
    display: block;
    padding: 14px 16px;
    font-size: 17px;
    font-weight: 500;
    text-align: center;
    color: var(--ink);
    border-radius: 12px;
    text-decoration: none;
  }

  .nav-sheet a:not(.btn):active {
    background: var(--surface-rose);
  }

  .nav-sheet .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 12px 0 0;
    padding: 14px 24px;
    box-sizing: border-box;
    text-align: center;
  }

  body.menu-open {
    overflow: hidden;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
    position: relative;
    z-index: 151;
    -webkit-tap-highlight-color: transparent;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    margin: 0 auto;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .legal-content { padding: 28px 24px; }

  .container {
    width: min(var(--max), calc(100% - 32px));
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    margin-top: 28px;
    padding-top: 22px;
    font-size: 12px;
  }

  .footer-bottom-meta {
    align-items: center;
  }

  .footer-bottom p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .footer-legal--note {
    max-width: 280px;
    margin-inline: auto;
  }

  .site-header--legal {
    position: static;
  }

  .header-inner--legal {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 10px 12px;
    align-items: center;
  }

  .header-inner--legal .logo {
    grid-column: 1;
    grid-row: 1;
    flex: unset;
    min-width: 0;
  }

  .header-inner--legal .legal-lk-btn {
    grid-column: 2;
    grid-row: 1;
    padding: 10px 16px;
    font-size: 13px;
  }

  .header-inner--legal .nav--legal {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex !important;
    position: static;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 24px;
    width: 100%;
    margin: 0;
    padding: 0 0 6px;
    background: transparent;
    overflow: visible;
  }

  .header-inner--legal .nav--legal a {
    padding: 4px 0;
    font-size: 14px;
    text-align: center;
    width: auto;
    max-width: none;
    color: var(--ink-muted);
  }
}

@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 64px; }
  .hero h1 { font-size: clamp(30px, 8vw, 40px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { gap: 8px; }
  .hero-trust span { font-size: 11px; padding: 5px 10px; }
  .trial-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px 18px;
  }
  .trial-banner-text span {
    font-size: 13px;
    line-height: 1.45;
  }
  .trial-banner .btn { width: 100%; }
  .pricing-table th,
  .pricing-table td {
    padding: 12px 14px;
    font-size: 14px;
  }
  .pricing-includes {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .cta-band {
    padding: 40px 20px;
    margin-bottom: 48px;
  }
  .cta-band h2 { font-size: 26px; }
  .cta-band p { font-size: 15px; }
  .logo-text { font-size: 20px; }
  .container {
    width: min(var(--max), calc(100% - 24px));
  }
}
