/* Фатаи — marketing fatai.fit · light theme */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --mkt-bg: #ffffff;
  --mkt-bg-soft: #f8fafc;
  --mkt-bg-muted: #f1f5f9;
  --mkt-surface: #ffffff;
  --mkt-border: #e2e8f0;
  --mkt-border-soft: #f1f5f9;
  --mkt-text: #0f172a;
  --mkt-text-secondary: #334155;
  --mkt-muted: #64748b;
  --mkt-accent: #0ea5c9;
  --mkt-accent-dark: #0891b2;
  --mkt-accent-soft: #e0f2fe;
  --mkt-gradient: linear-gradient(135deg, #0ea5c9 0%, #06b6d4 50%, #14b8a6 100%);
  --mkt-radius: 20px;
  --mkt-radius-sm: 12px;
  --mkt-radius-lg: 28px;
  --mkt-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --mkt-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
  --mkt-shadow-lg: 0 24px 64px rgba(14, 165, 201, 0.12), 0 8px 24px rgba(15, 23, 42, 0.06);
  --mkt-header-h: 68px;
  --mkt-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --mkt-max: 1140px;
}

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

html { scroll-behavior: smooth; }

body.mkt-body {
  margin: 0;
  font-family: var(--mkt-font);
  background: var(--mkt-bg);
  color: var(--mkt-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--mkt-accent-dark); text-decoration: none; }
a:hover { color: var(--mkt-accent); }

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

/* ── Header ── */
.mkt-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--mkt-header-h);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.mkt-header.is-scrolled {
  border-bottom-color: var(--mkt-border);
  box-shadow: var(--mkt-shadow-sm);
}

.mkt-header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mkt-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--mkt-text);
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.mkt-logo:hover { text-decoration: none; color: var(--mkt-text); }

.mkt-logo img {
  border-radius: 14px;
  box-shadow: var(--mkt-shadow-sm);
}

.mkt-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mkt-nav a {
  color: var(--mkt-muted);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.15s, background 0.15s;
}

.mkt-nav a:hover {
  color: var(--mkt-text);
  background: var(--mkt-bg-muted);
  text-decoration: none;
}

.mkt-nav-cta {
  margin-left: 8px;
  padding: 10px 20px !important;
  background: var(--mkt-gradient) !important;
  color: #fff !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(14, 165, 201, 0.35);
}

.mkt-nav-cta:hover {
  filter: brightness(1.05);
  background: var(--mkt-gradient) !important;
  color: #fff !important;
}

.mkt-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--mkt-border);
  border-radius: var(--mkt-radius-sm);
  background: var(--mkt-bg);
  padding: 10px;
  cursor: pointer;
}

.mkt-menu-btn span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--mkt-text);
  border-radius: 2px;
}

/* ── Hero ── */
.mkt-hero {
  position: relative;
  padding: calc(var(--mkt-header-h) + 56px) 0 72px;
  background:
    radial-gradient(ellipse 70% 50% at 78% 0%, rgba(15, 23, 42, 0.03), transparent 65%),
    var(--mkt-bg);
  overflow: visible;
}

.mkt-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px 48px;
  align-items: end;
}

.mkt-hero-copy {
  display: flex;
  flex-direction: column;
}

/* Mobile art — hidden on desktop; DOM-order for mobile first screen */
.mkt-hero-mobile {
  display: none;
}

/* Desktop reading order: title → lead → points → CTAs */
.mkt-hero-lead { order: 3; }
.mkt-hero-points { order: 4; }
.mkt-hero-actions { order: 5; }

.mkt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  background: var(--mkt-bg-muted);
  color: var(--mkt-muted);
  font-size: 0.8125rem;
  font-weight: 600;
}

.mkt-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mkt-text-secondary);
  opacity: 0.45;
}

.mkt-hero-title {
  margin: 0 0 16px;
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: var(--mkt-text);
}

.mkt-hero-promise {
  display: block;
  margin-top: 10px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--mkt-muted);
}

.mkt-hero-title em {
  font-style: normal;
  color: inherit;
  background: none;
}

.mkt-hero-lead {
  margin: 0 0 20px;
  max-width: 28rem;
  color: var(--mkt-muted);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.mkt-hero-lead strong {
  display: block;
  margin-top: 6px;
  color: var(--mkt-text);
  font-weight: 600;
}

.mkt-hero-points {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 28rem;
}

.mkt-hero-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  line-height: 1.45;
  font-weight: 500;
  color: var(--mkt-text-secondary);
}

.mkt-point-icon {
  flex-shrink: 0;
  font-size: 1.125rem;
  line-height: 1;
}

.mkt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0;
}

.mkt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1rem;
  font-family: inherit;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

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

.mkt-btn-primary {
  background: var(--mkt-gradient);
  color: #fff;
  box-shadow: 0 6px 20px rgba(14, 165, 201, 0.35);
}

.mkt-btn-primary:hover { color: #fff; box-shadow: 0 8px 28px rgba(14, 165, 201, 0.4); }

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

.mkt-btn-ghost:hover { background: var(--mkt-bg-soft); color: var(--mkt-text); }

.mkt-btn-lg { padding: 16px 32px; font-size: 1.0625rem; }

.mkt-hero-badges {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mkt-hero-badges li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--mkt-bg);
  border: 1px solid var(--mkt-border);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--mkt-text-secondary);
  box-shadow: var(--mkt-shadow-sm);
}

.mkt-badge-icon {
  font-size: 1rem;
  line-height: 1;
}

/* Hero visual */
.mkt-hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  min-height: 480px;
  padding: 0 0 4px;
  overflow: visible;
}

.mkt-hero-scene {
  position: relative;
  width: 488px;
  height: 480px;
  margin: 0 auto;
  flex-shrink: 0;
}

.mkt-hero-mascot {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 268px;
  z-index: 2;
  overflow: visible;
}

.mkt-hero-mascot::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 1.5%;
  height: 20px;
  border-radius: 50%;
  background: rgba(30, 41, 59, 0.2);
  filter: blur(10px);
  transform: scaleX(1.15);
  z-index: 0;
  pointer-events: none;
}

.mkt-hero-mascot img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.mkt-mascot-bubble {
  position: absolute;
  top: -8px;
  right: -10px;
  left: auto;
  z-index: 6;
  width: 188px;
  padding: 10px 12px;
  background: var(--mkt-bg);
  border: 1px solid var(--mkt-border);
  border-radius: 16px;
  box-shadow: var(--mkt-shadow-lg);
  animation: mkt-bubble-in 0.6s ease-out 0.3s both;
}

.mkt-mascot-bubble::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -7px;
  width: 14px;
  height: 14px;
  background: var(--mkt-bg);
  border-right: 1px solid var(--mkt-border);
  border-bottom: 1px solid var(--mkt-border);
  transform: rotate(45deg);
}

.mkt-mascot-bubble-icon {
  display: inline;
  font-size: 1rem;
  line-height: 1;
  margin-right: 2px;
  vertical-align: -1px;
}

.mkt-mascot-bubble p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.35;
  font-weight: 500;
  color: var(--mkt-text);
}

@keyframes mkt-bubble-in {
  from { opacity: 0; transform: translateY(6px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.mkt-phone {
  position: absolute;
  left: 8px;
  bottom: 0;
  width: 252px;
  padding: 10px;
  border-radius: 32px;
  background: #1e293b;
  box-shadow: var(--mkt-shadow-lg);
  transform: rotate(-6deg) scale(0.95);
  transform-origin: left bottom;
  z-index: 4;
}

.mkt-phone-notch {
  width: 80px;
  height: 18px;
  margin: 0 auto 8px;
  border-radius: 0 0 10px 10px;
  background: #0f172a;
}

.mkt-phone-screen {
  border-radius: 22px;
  background: #f8fafc;
  overflow: hidden;
  aspect-ratio: 10 / 19.5;
}

.mkt-phone-app {
  display: flex;
  flex-direction: column;
  min-height: 440px;
  background: #f8fafc;
}

.mkt-app-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: #f8fafc;
}

.mkt-app-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}

.mkt-app-header-text {
  flex: 1;
  min-width: 0;
}

.mkt-app-name {
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--mkt-text);
}

.mkt-app-tagline {
  font-size: 0.48rem;
  line-height: 1.25;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mkt-app-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

.mkt-app-trash {
  display: flex;
  color: #94a3b8;
  flex-shrink: 0;
}

.mkt-app-trash svg {
  width: 12px;
  height: 12px;
}

.mkt-app-dash {
  padding: 6px 8px 0;
}

.mkt-app-dash-card {
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
  border: 1px solid rgba(14, 165, 201, 0.18);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
  padding: 7px 8px 0;
}

.mkt-app-dash-top {
  display: flex;
  gap: 6px;
  align-items: flex-start;
}

.mkt-app-ring {
  position: relative;
  width: 58px;
  height: 58px;
  flex-shrink: 0;
}

.mkt-app-ring-fill {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(#55d8ff 0deg, #2bc5ba 310deg, #e2e8f0 310deg 360deg);
}

.mkt-app-ring-hole {
  position: absolute;
  width: 48px;
  height: 48px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
  z-index: 1;
}

.mkt-app-ring-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 42px;
  text-align: center;
}

.mkt-app-ring-inner .num {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--mkt-text);
}

.mkt-app-ring-inner .target {
  display: block;
  font-size: 0.42rem;
  color: #64748b;
  line-height: 1.1;
}

.mkt-app-ring-inner .pct {
  display: block;
  margin-top: 1px;
  font-size: 0.48rem;
  font-weight: 700;
  color: #64748b;
}

.mkt-app-metrics {
  flex: 1;
  min-width: 0;
}

.mkt-app-date {
  margin-bottom: 2px;
  font-size: 0.42rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}

.mkt-app-date .day {
  display: block;
  margin-top: 1px;
  font-size: 0.56rem;
  font-weight: 700;
  color: var(--mkt-text);
  text-transform: none;
  letter-spacing: 0;
}

.mkt-app-macro {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.46rem;
  line-height: 1.35;
  color: var(--mkt-text);
}

.mkt-app-macro span:first-child {
  width: 10px;
  text-align: center;
  flex-shrink: 0;
}

.mkt-app-macro.over {
  color: #e84a6f;
  font-weight: 600;
}

.mkt-app-water {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 3px;
  font-size: 0.46rem;
  font-weight: 600;
  color: #2563eb;
}

.mkt-app-water-btn {
  padding: 1px 5px;
  border-radius: 6px;
  border: 1px solid rgba(37, 99, 235, 0.25);
  background: rgba(37, 99, 235, 0.08);
  font-size: 0.42rem;
  font-weight: 700;
  color: #2563eb;
}

.mkt-app-rewards {
  display: flex;
  gap: 4px;
  margin-top: 5px;
  padding: 2px 0;
  overflow: hidden;
}

.mkt-app-rewards span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.04);
  font-size: 0.55rem;
  line-height: 1;
}

.mkt-app-meals {
  margin-top: 4px;
  padding: 4px 0 5px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  text-align: center;
  font-size: 0.46rem;
  color: #64748b;
}

.mkt-app-chat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px 10px;
  min-height: 108px;
  overflow: hidden;
}

.mkt-msg {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.mkt-msg-user {
  justify-content: flex-end;
}

.mkt-msg-avatar {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  object-fit: cover;
}

.mkt-msg-avatar-user {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e2e8f0;
  font-size: 0.5rem;
  line-height: 1;
}

.mkt-bubble {
  max-width: 88%;
  padding: 6px 8px;
  border-radius: 10px;
  font-size: 0.54rem;
  line-height: 1.35;
}

.mkt-bubble-user {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: var(--mkt-text);
  border-bottom-right-radius: 3px;
}

.mkt-bubble-ai {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 1px 6px rgba(15, 23, 42, 0.04);
  color: var(--mkt-text);
  border-bottom-left-radius: 3px;
}

.mkt-bubble-photo {
  padding: 3px;
  line-height: 0;
}

.mkt-food-photo {
  display: block;
  width: 76px;
  height: 56px;
  border-radius: 8px;
  background:
    radial-gradient(ellipse 55% 45% at 32% 42%, rgba(245, 198, 140, 0.95) 0%, transparent 68%),
    radial-gradient(ellipse 42% 38% at 68% 58%, rgba(129, 199, 132, 0.85) 0%, transparent 70%),
    radial-gradient(ellipse 90% 70% at 50% 50%, #f8ead8 0%, #d4c4a8 55%, #b8a88c 100%);
  filter: blur(2px) saturate(1.05);
  transform: scale(1.04);
}

.mkt-bubble-food-card p {
  margin: 0;
}

.mkt-food-kcal {
  margin: 3px 0 5px !important;
  font-weight: 700;
  color: #334155;
}

.mkt-food-add-btn {
  display: inline-block;
  padding: 3px 7px;
  border-radius: 8px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  font-size: 0.48rem;
  font-weight: 600;
  color: #334155;
  line-height: 1.3;
}

.mkt-app-input {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 8px 6px;
  padding: 5px 6px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.mkt-app-input-icon {
  font-size: 0.55rem;
  line-height: 1;
  opacity: 0.75;
}

.mkt-app-input-field {
  flex: 1;
  min-width: 0;
  font-size: 0.48rem;
  color: #94a3b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mkt-app-send {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0ea5c9, #14b8a6);
  color: #fff;
  font-size: 0.45rem;
  line-height: 1;
}

.mkt-app-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 6px 12px 8px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  font-size: 0.7rem;
  color: #94a3b8;
}

.mkt-app-nav .active {
  color: #334155;
}

/* Trust */
.mkt-trust {
  background: var(--mkt-bg-soft);
  border-top: 1px solid var(--mkt-border-soft);
  border-bottom: 1px solid var(--mkt-border-soft);
}

.mkt-trust-inner p {
  margin: 0;
  padding: 32px 0;
  text-align: center;
  color: var(--mkt-text-secondary);
  font-size: 1.0625rem;
  max-width: 40rem;
  margin-inline: auto;
  font-weight: 500;
}

/* Sections */
.mkt-section { padding: 80px 0; }

.mkt-section-alt { background: var(--mkt-bg-soft); }

.mkt-section-title {
  margin: 0 0 12px;
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--mkt-text);
  text-align: center;
}

.mkt-section-lead {
  margin: 0 auto 48px;
  color: var(--mkt-muted);
  font-size: 1.0625rem;
  text-align: center;
  max-width: 32rem;
}

.mkt-pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}

.mkt-price-card {
  padding: 28px;
  border-radius: var(--mkt-radius);
  background: var(--mkt-surface);
  border: 1px solid var(--mkt-border);
  box-shadow: var(--mkt-shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mkt-price-card--featured {
  border-color: #7dd3fc;
  box-shadow: var(--mkt-shadow);
  background: linear-gradient(180deg, #f0f9ff 0%, var(--mkt-surface) 48%);
}

.mkt-price-badge {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mkt-accent, #0284c7);
}

.mkt-price-card h3 {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.mkt-price-amount {
  margin: 4px 0 0;
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.mkt-price-period {
  margin: 0;
  color: var(--mkt-muted, #64748b);
  font-size: 0.9375rem;
}

.mkt-price-list {
  margin: 8px 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  flex: 1;
}

.mkt-price-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: var(--mkt-text, #0f172a);
}

.mkt-price-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--mkt-accent, #0284c7);
}

.mkt-price-card .mkt-btn {
  align-self: stretch;
  text-align: center;
  justify-content: center;
}

.mkt-pricing-note {
  max-width: 720px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--mkt-muted, #64748b);
}

.mkt-pricing-note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 720px) {
  .mkt-pricing { grid-template-columns: 1fr; }
}

.mkt-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 960px;
  margin-inline: auto;
}

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

.mkt-card:hover {
  border-color: #bae6fd;
  box-shadow: var(--mkt-shadow);
  transform: translateY(-3px);
}

.mkt-card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--mkt-accent-soft);
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.mkt-card h3 {
  margin: 0 0 8px;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.mkt-card p {
  margin: 0;
  color: var(--mkt-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

/* Steps */
.mkt-steps {
  list-style: none;
  margin: 0 0 48px;
  padding: 0;
  display: grid;
  gap: 16px;
  max-width: 720px;
  margin-inline: auto;
}

.mkt-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px 28px;
  border-radius: var(--mkt-radius);
  background: var(--mkt-bg);
  border: 1px solid var(--mkt-border);
  box-shadow: var(--mkt-shadow-sm);
}

.mkt-step-num {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--mkt-gradient);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.mkt-steps h3 { margin: 0 0 6px; font-size: 1.0625rem; font-weight: 700; }

.mkt-steps p { margin: 0; color: var(--mkt-muted); font-size: 0.9375rem; }

.mkt-cta-band {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 36px 40px;
  border-radius: var(--mkt-radius-lg);
  background: var(--mkt-bg);
  border: 1px solid var(--mkt-border);
  box-shadow: var(--mkt-shadow);
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.mkt-cta-band > div {
  width: 100%;
}

.mkt-cta-band h3 { margin: 0 0 6px; font-size: 1.25rem; font-weight: 700; }

.mkt-cta-band p {
  margin: 0 auto;
  color: var(--mkt-muted);
  font-size: 0.9375rem;
  max-width: 32rem;
}

.mkt-cta-band p + p { margin-top: 8px; }

/* Philosophy */
.mkt-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.mkt-split .mkt-section-title { text-align: left; margin-bottom: 16px; }

.mkt-prose { color: var(--mkt-muted); font-size: 1.0625rem; line-height: 1.65; }

.mkt-checklist {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.mkt-checklist li {
  position: relative;
  padding: 10px 0;
  color: var(--mkt-text-secondary);
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--mkt-border-soft);
}

.mkt-checklist li:last-child { border-bottom: none; }

.mkt-quote-card {
  padding: 36px;
  border-radius: var(--mkt-radius-lg);
  background: linear-gradient(145deg, #f0f9ff 0%, #ecfeff 100%);
  border: 1px solid #bae6fd;
}

.mkt-quote-card blockquote {
  margin: 0 0 16px;
  font-size: 1.125rem;
  line-height: 1.55;
  font-weight: 600;
  color: var(--mkt-text);
}

.mkt-quote-card cite {
  color: var(--mkt-muted);
  font-style: normal;
  font-size: 0.9375rem;
  font-weight: 500;
}

/* FAQ */
.mkt-faq-wrap { max-width: 680px; margin-inline: auto; }

.mkt-faq { display: grid; gap: 10px; }

.mkt-faq-item {
  border-radius: var(--mkt-radius-sm);
  border: 1px solid var(--mkt-border);
  background: var(--mkt-bg);
  padding: 0 20px;
  box-shadow: var(--mkt-shadow-sm);
}

.mkt-faq-item[open] { border-color: #bae6fd; box-shadow: var(--mkt-shadow); }

.mkt-faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 18px 0;
  list-style: none;
  color: var(--mkt-text);
}

.mkt-faq-item summary::-webkit-details-marker { display: none; }

.mkt-faq-item p {
  margin: 0 0 18px;
  color: var(--mkt-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Final CTA */
.mkt-final-cta {
  padding: 88px 0;
  background:
    radial-gradient(ellipse at center, rgba(14, 165, 201, 0.06), transparent 65%),
    var(--mkt-bg-soft);
  border-top: 1px solid var(--mkt-border-soft);
}

.mkt-final-cta-inner { text-align: center; max-width: 440px; margin-inline: auto; }

.mkt-final-icon {
  margin: 0 auto 20px;
  border-radius: 20px;
  box-shadow: var(--mkt-shadow);
}

.mkt-final-cta h2 {
  margin: 0 0 12px;
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.mkt-final-cta p {
  margin: 0 0 28px;
  color: var(--mkt-muted);
  font-size: 1.0625rem;
}

/* Footer */
.mkt-footer {
  padding: 56px 0 40px;
  background: var(--mkt-bg);
  border-top: 1px solid var(--mkt-border);
}

.mkt-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

.mkt-footer-brand img {
  border-radius: 14px;
  margin-bottom: 14px;
  box-shadow: var(--mkt-shadow-sm);
}

.mkt-footer-tagline { margin: 0 0 12px; color: var(--mkt-muted); max-width: 18rem; font-size: 0.9375rem; }

.mkt-footer-legal {
  margin: 0 0 14px;
  color: #64748b;
  font-size: 0.8125rem;
  line-height: 1.45;
  max-width: 18rem;
}

.mkt-footer-copy { margin: 0; color: #94a3b8; font-size: 0.8125rem; }

.mkt-footer-links h3 {
  margin: 0 0 16px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  font-weight: 600;
}

.mkt-footer-links a {
  display: block;
  margin-bottom: 10px;
  color: var(--mkt-text-secondary);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
}

.mkt-footer-links a:hover { color: var(--mkt-accent); text-decoration: none; }

.mkt-footer-social {
  display: inline-flex !important;
  align-items: center;
  margin-top: 6px;
  margin-bottom: 0 !important;
  line-height: 0;
  opacity: 0.92;
  transition: opacity 0.15s, transform 0.15s;
}

.mkt-footer-social:hover {
  opacity: 1;
  transform: translateY(-1px);
  color: inherit;
}

.mkt-footer-social img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: block;
}

/* Legal */
.mkt-page-hero {
  padding: calc(var(--mkt-header-h) + 40px) 0 28px;
  background: var(--mkt-bg-soft);
  border-bottom: 1px solid var(--mkt-border);
}

.mkt-page-hero h1 { margin: 0 0 8px; font-size: 1.875rem; font-weight: 800; }

.mkt-page-meta { margin: 0; color: var(--mkt-muted); }

.mkt-legal { max-width: 680px; color: var(--mkt-text-secondary); }

.mkt-legal h2 { margin: 32px 0 12px; font-size: 1.125rem; color: var(--mkt-text); font-weight: 700; }

.mkt-legal ul { padding-left: 1.25rem; }

.mkt-legal li { margin-bottom: 8px; }

.mkt-legal-back { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--mkt-border); }

/* Mobile */
@media (max-width: 960px) {
  .mkt-hero {
    padding: calc(var(--mkt-header-h) + 8px) 0 20px;
    overflow-x: hidden;
    overflow-y: visible;
  }

  .mkt-hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
    align-items: stretch;
  }

  .mkt-hero-copy {
    text-align: center;
  }

  .mkt-hero-lead,
  .mkt-hero-points,
  .mkt-hero-actions,
  .mkt-hero-mobile {
    order: 0;
  }

  .mkt-eyebrow {
    margin: 0 auto 8px;
    padding: 5px 12px 5px 7px;
    font-size: 0.75rem;
  }

  .mkt-hero-title {
    margin: 0;
    font-size: clamp(1.55rem, 6.8vw, 2.1rem);
    line-height: 1.12;
  }

  .mkt-hero-promise {
    margin-top: 10px;
  }

  /* Воздух между подзаголовком → картинкой → кнопкой */
  .mkt-hero-mobile {
    display: block;
    position: relative;
    width: min(78vw, 250px);
    height: auto;
    max-height: none;
    margin: 28px auto 24px;
    overflow: visible;
    line-height: 0;
    z-index: 0;
  }

  .mkt-hero-mobile img,
  .mkt-hero-mobile-img {
    position: static;
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    object-fit: contain;
    object-position: center top;
  }

  .mkt-hero-visual {
    display: none;
  }

  .mkt-hero-lead {
    display: none;
  }

  .mkt-hero-actions {
    position: relative;
    z-index: 2;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-top: 0;
    clear: both;
  }

  .mkt-hero-actions .mkt-btn-primary {
    width: 100%;
    padding: 12px 20px;
  }

  /* Вторая кнопка → текстовая ссылка */
  .mkt-hero-actions .mkt-hero-secondary {
    width: auto;
    margin: 0 auto;
    padding: 4px 10px;
    background: transparent;
    border: none;
    box-shadow: none;
    color: var(--mkt-muted);
    font-size: 0.875rem;
    font-weight: 500;
  }

  .mkt-hero-actions .mkt-hero-secondary:hover {
    color: var(--mkt-accent-dark);
    background: transparent;
    transform: none;
  }

  .mkt-hero-points {
    order: 0;
    margin: 20px auto 0;
    gap: 6px;
    text-align: left;
    max-width: 20rem;
  }

  .mkt-hero-points li {
    font-size: 0.875rem;
  }

  .mkt-mascot-bubble {
    width: 158px;
    padding: 7px 9px;
  }

  .mkt-mascot-bubble p {
    font-size: 0.68rem;
    line-height: 1.3;
  }

  .mkt-app-input,
  .mkt-app-nav { display: none; }

  .mkt-features { grid-template-columns: 1fr 1fr; }
  .mkt-split { grid-template-columns: 1fr; }
  .mkt-split .mkt-section-title { text-align: center; }
  .mkt-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .mkt-menu-btn { display: block; }

  .mkt-nav {
    position: fixed;
    top: var(--mkt-header-h);
    left: 12px;
    right: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    background: var(--mkt-bg);
    border: 1px solid var(--mkt-border);
    border-radius: var(--mkt-radius);
    box-shadow: var(--mkt-shadow-lg);
    transform: translateY(-8px) scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s, opacity 0.2s;
  }

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

  .mkt-nav a { padding: 12px 14px; }
  .mkt-nav-cta { margin-left: 0 !important; margin-top: 4px; text-align: center; }

  .mkt-features { grid-template-columns: 1fr; }
  .mkt-footer-grid { grid-template-columns: 1fr; }
  .mkt-cta-band { flex-direction: column; align-items: center; padding: 28px; text-align: center; }
  .mkt-cta-band .mkt-btn { width: 100%; max-width: 320px; }
  .mkt-hero-lead { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mkt-btn:hover, .mkt-card:hover { transform: none; }
}
