/* Hero text adjustments */
.hero__eyebrow {
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #FF6B1A;
  margin-bottom: 0.5rem;
}

.hero__title {
  font-weight: 600;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--color-text-primary, #1A1A1A);
  margin-bottom: 1.25rem;
}

.hero__subtitle {
  font-weight: 400;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-secondary, #5A5A5A);
  max-width: 640px;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.hero__proof {
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--color-text-tertiary, #8A8A8A);
  margin-bottom: 2rem;
}

/* Primary CTA adjustments */
.hero__actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn--primary {
  background-color: #FF6B1A;
  color: #FFFFFF;
  padding: 1rem 2rem;
  font-weight: 500;
  border-radius: 0.5rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s ease-out;
}

.btn--primary:hover {
  background-color: #E85A0F;
}

/* Secondary ghost CTA */
.btn--ghost {
  border: 1px solid var(--color-text-primary, #1A1A1A);
  background: transparent;
  color: var(--color-text-primary, #1A1A1A);
  padding: 1rem 2rem;
  font-weight: 500;
  border-radius: 0.5rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease-out;
}

.btn--ghost:hover {
  background: var(--color-text-primary, #1A1A1A);
  color: var(--color-background-primary, #FFFFFF);
}

.hero__tertiary-link {
  font-size: 0.875rem;
  color: var(--color-text-secondary, #5A5A5A);
  text-decoration: none;
  margin-top: 0.5rem;
  display: block;
}
.hero__tertiary-link:hover {
  color: var(--color-text-primary, #1A1A1A);
}

/* Channels row */
.channels-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.channels-label {
  font-size: 0.875rem;
  color: var(--color-text-secondary, #5A5A5A);
}

.channel-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  border: 1px solid var(--color-border, #E5E3DD);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-primary, #1A1A1A);
  text-decoration: none;
  transition: all 0.15s ease-out;
}

.channel-btn:hover {
  border-color: #FF6B1A;
  background: rgba(255, 107, 26, 0.04);
}

.channel-btn:focus-visible {
  outline: 2px solid #FF6B1A;
  outline-offset: 2px;
}

.channel-btn .badge {
  font-size: 0.6875rem;
  padding: 0.125rem 0.375rem;
  background: var(--color-background-tertiary, #F1EFE8);
  border-radius: 0.25rem;
  color: var(--color-text-secondary, #5A5A5A);
}

/* Phone Mockup */
.phone-mockup {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
}

.phone-frame {
  background: #FFFFFF;
  border-radius: 36px;
  border: 8px solid #222;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  overflow: hidden;
  position: relative;
  height: 600px;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 24px;
  background: #222;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 10;
}

.phone-screen {
  background: #F0F2F5; /* Telegram like background */
  height: 100%;
  display: flex;
  flex-direction: column;
}

.phone-status-bar {
  display: flex;
  justify-content: space-between;
  padding: 12px 24px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1A1A1A;
  z-index: 5;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
}

.phone-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.bot-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFFFFF;
  padding: 12px 16px;
  border-bottom: 1px solid #E4E4E7;
}

.live-indicator {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .live-indicator { animation: none; }
}

.bot-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: #1F2937;
}

.bot-status {
  font-size: 0.75rem;
  font-weight: 500;
  color: #22c55e;
  margin-left: auto;
}

.bot-messages {
  padding: 1rem;
}

.bot-msg {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.5;
}

.bot-msg p {
  margin-bottom: 0.5rem;
}

.bot-msg p:last-child {
  margin-bottom: 0;
}

.phone-footer {
  text-align: center;
  padding: 0.75rem;
  font-size: 0.75rem;
  color: #6B7280;
  background: #FFFFFF;
  border-top: 1px solid #E4E4E7;
}

/* Outcome Block */
.outcome-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .outcome-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.outcome-card {
  border: 1px solid var(--color-border, #E5E3DD);
  border-radius: 1rem;
  padding: 2rem;
  background: var(--color-background-primary, #FFFFFF);
  display: flex;
  flex-direction: column;
}

.outcome-card__eyebrow {
  color: #FF6B1A;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.outcome-card__title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.outcome-card__body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-secondary, #5A5A5A);
  flex: 1;
}

.outcome-card__body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.outcome-card__body li {
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.outcome-card__body li:last-child {
  margin-bottom: 0;
}

.outcome-card__body li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #FF6B1A;
}

/* ===================================================================
   Killer Features (§5) — alternating left/right cards
   =================================================================== */
.killers__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.killer-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .killer-card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3.5rem;
  }
  .killer-card--reverse .killer-card__media {
    order: 2;
  }
}

.killer-card__media {
  background: #FAFAF7;
  border: 1px solid var(--color-border, #E5E3DD);
  border-radius: 1.25rem;
  padding: 2rem;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.killer-card__visual {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Killer #1 — Telegram preview */
.killer-card__vmsg {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  font-size: 0.9375rem;
  line-height: 1.5;
}
.killer-card__vmsg-head {
  font-size: 0.75rem;
  color: #6B7280;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.killer-card__vmsg-body {
  color: #1F2937;
}
.killer-card__voice {
  align-self: flex-end;
  background: #FF6B1A;
  color: #fff;
  border-radius: 12px 12px 4px 12px;
  padding: 10px 14px;
  font-size: 0.875rem;
  max-width: 80%;
  box-shadow: 0 2px 8px rgba(255,107,26,0.18);
}

/* Killer #2 — AI Q&A */
.killer-card__qa {
  background: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  border-left: 3px solid #FF6B1A;
}
.killer-card__q {
  font-weight: 600;
  color: #1F2937;
  margin-bottom: 4px;
}
.killer-card__a {
  color: #4B5563;
}

/* Killer #3 — Sprint bar */
.killer-card__bar {
  display: flex;
  width: 100%;
  max-width: 100%;
  border-radius: 999px;
  overflow: hidden;
  height: 44px;
  background: #fff;
  border: 1px solid var(--color-border, #E5E3DD);
}
.killer-card__bar-seg {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
  padding: 0 10px;
  min-width: 0;
  overflow: hidden;
}
.killer-card__bar-seg--infra { background: #1A1A1A; }
.killer-card__bar-seg--setup { background: #FF6B1A; }
.killer-card__bar-seg span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
@media (max-width: 520px) {
  .killer-card__bar-seg span { display: none; }
}
.killer-card__sprint-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
  font-size: 0.8125rem;
  color: #4B5563;
}
.killer-card__sprint-meta span {
  padding-left: 1rem;
  position: relative;
}
.killer-card__sprint-meta span::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #FF6B1A;
  font-weight: 700;
}

/* Killer #4 — Method comparison rows */
.killer-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border: 1px solid var(--color-border, #E5E3DD);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9375rem;
}
.killer-card__row--accent {
  border-color: #FF6B1A;
  background: rgba(255,107,26,0.04);
}
.killer-card__row-label { color: #1F2937; font-weight: 500; }
.killer-card__row-tag {
  font-size: 0.75rem;
  color: #6B7280;
  background: #F3F4F6;
  padding: 4px 10px;
  border-radius: 999px;
}
.killer-card__row-tag--accent {
  color: #FF6B1A;
  background: rgba(255,107,26,0.12);
  font-weight: 600;
}

.killer-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.killer-card__eyebrow {
  color: #FF6B1A;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.killer-card__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text-primary, #1A1A1A);
  margin: 0;
}
.killer-card__body {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-text-secondary, #5A5A5A);
  margin: 0;
}
.killer-card__diff {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color-text-primary, #1A1A1A);
  background: #F8F7F4;
  border-left: 3px solid #FF6B1A;
  border-radius: 4px;
  padding: 12px 16px;
}
.killer-card__diff strong { color: #FF6B1A; }
.killer-card__link {
  align-self: flex-start;
  color: #FF6B1A;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9375rem;
}
.killer-card__link:hover { text-decoration: underline; }

/* ===================================================================
   /chekup.html — landing styles
   =================================================================== */
.chekup-hero {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFAF7 100%);
}
.chekup-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,26,0.08);
  color: #FF6B1A;
  border: 1px solid rgba(255,107,26,0.2);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.chekup-hero__pill-dot {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .chekup-hero__pill-dot { animation: none; }
}
.chekup-hero__title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.1;
  font-weight: 700;
  color: var(--color-text-primary, #1A1A1A);
  margin: 0 0 20px;
}
.chekup-hero__lede {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-primary, #1A1A1A);
  font-weight: 500;
  margin: 0 0 16px;
  line-height: 1.45;
}
.chekup-hero__desc {
  font-size: 1.0625rem;
  color: var(--color-text-secondary, #5A5A5A);
  line-height: 1.6;
  margin: 0 0 32px;
}
.chekup-hero__bot {
  color: #FF6B1A;
  text-decoration: none;
  font-weight: 600;
}
.chekup-hero__bot:hover { text-decoration: underline; }
.chekup-hero__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.chekup-hero__microtrust {
  font-size: 0.8125rem;
  color: #8A8A8A;
  margin: 0;
}
.chekup-hero__microtrust a { color: #FF6B1A; text-decoration: none; }

/* Bundle (4 items what you get) */
.chekup-bundle {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 720px) {
  .chekup-bundle { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
.chekup-bundle__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--color-border, #E5E3DD);
  border-radius: 16px;
  padding: 24px;
}
.chekup-bundle__icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,107,26,0.08);
  border-radius: 12px;
}
.chekup-bundle__item h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0 0 6px;
  color: #1A1A1A;
}
.chekup-bundle__item p {
  font-size: 0.9375rem;
  color: #5A5A5A;
  line-height: 1.55;
  margin: 0;
}
.chekup-bundle__pill {
  display: inline-block;
  background: rgba(255,107,26,0.12);
  color: #FF6B1A;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
  vertical-align: middle;
}

/* 4 layers grid */
.chekup-layers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 720px) {
  .chekup-layers { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (min-width: 1000px) {
  .chekup-layers { grid-template-columns: repeat(4, 1fr); }
}
.chekup-layer {
  background: #fff;
  border: 1px solid var(--color-border, #E5E3DD);
  border-radius: 14px;
  padding: 22px;
}
.chekup-layer__num {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 0.8125rem;
  color: #FF6B1A;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.chekup-layer h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0 0 8px;
}
.chekup-layer p {
  font-size: 0.9375rem;
  color: #5A5A5A;
  line-height: 1.55;
  margin: 0;
}

/* Tariffs */
.chekup-tariffs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 720px) {
  .chekup-tariffs { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
.chekup-tariff {
  background: #fff;
  border: 1px solid var(--color-border, #E5E3DD);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.chekup-tariff--featured {
  border: 2px solid #FF6B1A;
  box-shadow: 0 10px 36px rgba(255,107,26,0.08);
}
.chekup-tariff__badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: #FF6B1A;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.chekup-tariff__eyebrow {
  font-size: 0.75rem;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.chekup-tariff__price {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  color: #1A1A1A;
  margin-bottom: 4px;
}
.chekup-tariff__price span {
  font-size: 1.5rem;
  font-weight: 600;
  color: #6B7280;
}
.chekup-tariff__sub {
  color: #6B7280;
  font-size: 0.9375rem;
  margin-bottom: 24px;
}
.chekup-tariff__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.chekup-tariff__list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.5;
}
.chekup-tariff__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #FF6B1A;
  font-weight: 700;
}
.chekup-tariff__cta {
  width: 100%;
  text-align: center;
  padding: 14px 20px;
  font-weight: 600;
  text-decoration: none;
}
.chekup-tariffs__foot {
  text-align: center;
  font-size: 0.875rem;
  color: #6B7280;
  margin-top: 24px;
}
.chekup-tariffs__foot code {
  background: #F3F4F6;
  padding: 1px 6px;
  border-radius: 4px;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 0.8125rem;
}

/* Steps */
.chekup-steps {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.chekup-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.chekup-step__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FF6B1A;
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chekup-step__body h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0 0 4px;
}
.chekup-step__body p {
  font-size: 0.9375rem;
  color: #4B5563;
  line-height: 1.55;
  margin: 0;
}
.chekup-step__body code {
  background: #F3F4F6;
  padding: 1px 6px;
  border-radius: 4px;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 0.8125rem;
}
.chekup-step__pill {
  display: inline-block;
  background: rgba(255,107,26,0.12);
  color: #FF6B1A;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
  vertical-align: middle;
}

/* Guarantee */
.chekup-guarantee {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--color-border, #E5E3DD);
  border-left: 4px solid #FF6B1A;
  border-radius: 14px;
  padding: 28px;
}
.chekup-guarantee__icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.chekup-guarantee h2 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0 0 10px;
}
.chekup-guarantee p {
  color: #4B5563;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0 0 10px;
}
.chekup-guarantee p:last-child { margin-bottom: 0; }
.chekup-guarantee code {
  background: #F3F4F6;
  padding: 1px 6px;
  border-radius: 4px;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 0.8125rem;
}
.chekup-guarantee__small {
  font-size: 0.8125rem !important;
  color: #6B7280 !important;
}
.chekup-guarantee a { color: #FF6B1A; text-decoration: none; }
.chekup-guarantee a:hover { text-decoration: underline; }

/* LIVE indicator demo note */
.live-indicator__note {
  display: inline-block;
  margin-left: 8px;
  padding: 1px 6px;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #9CA3AF;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  letter-spacing: 0;
  text-transform: none;
  vertical-align: middle;
}

/* ===================================================================
   POLISH LAYER — v2.1 fit-and-finish
   Стандартизирует ритм, типографику, состояния. Без сноса structures.
   =================================================================== */

/* — Section rhythm — единый вертикальный ритм для главной */
body[data-page="home"] .section,
body[data-page="chekup"] .section,
body[data-page="method"] .section {
  padding-top: clamp(56px, 8vw, 112px);
  padding-bottom: clamp(56px, 8vw, 112px);
}
body[data-page="home"] .hero.section {
  padding-top: clamp(64px, 7vw, 100px);
  padding-bottom: clamp(48px, 6vw, 80px);
}

/* — Section heading rhythm */
.section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-text-primary, #1A1A1A);
}
.section__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.5;
  color: var(--color-text-secondary, #5A5A5A);
  margin-top: 12px;
}
.section__header {
  margin-bottom: clamp(32px, 5vw, 56px);
}

/* — Trust Strip */
.trust-strip {
  padding: clamp(28px, 4vw, 48px) 0;
  background: #fff;
  border-top: 1px solid var(--color-border, #E5E3DD);
  border-bottom: 1px solid var(--color-border, #E5E3DD);
}
.trust-strip__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px 24px;
}
@media (min-width: 640px) {
  .trust-strip__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .trust-strip__grid { grid-template-columns: repeat(5, 1fr); gap: 12px 24px; }
}
.trust-strip__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}
.trust-strip__icon {
  flex-shrink: 0;
  color: #FF6B1A;
  margin-top: 2px;
}
.trust-strip__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text-primary, #1A1A1A);
  line-height: 1.3;
  margin-bottom: 4px;
}
.trust-strip__sub {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--color-text-secondary, #5A5A5A);
}
.trust-strip__sub code {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 0.75rem;
  background: #F3F4F6;
  padding: 1px 5px;
  border-radius: 4px;
  color: #1F2937;
}

/* — Outcome card polish */
.outcome-card {
  border-radius: 16px;
  border: 1px solid #ECEAE3;
  background: #fff;
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out;
  box-shadow: 0 1px 2px rgba(15,23,42,0.04);
}
.outcome-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,107,26,0.25);
  box-shadow: 0 14px 32px rgba(15,23,42,0.06), 0 4px 8px rgba(15,23,42,0.04);
}

/* — Audience card polish */
.audience-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  border: 1px solid #ECEAE3;
  border-radius: 18px;
  padding: 28px;
  text-decoration: none;
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out;
  height: 100%;
}
.audience-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,107,26,0.35);
  box-shadow: 0 14px 36px rgba(15,23,42,0.07), 0 4px 10px rgba(15,23,42,0.04);
}
.audience-card__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #FF6B1A;
}
.audience-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  color: var(--color-text-primary, #1A1A1A);
}
.audience-card__body {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color-text-secondary, #5A5A5A);
  margin: 0;
  flex: 1;
}
.audience-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding: 10px 16px;
  background: #FF6B1A;
  color: #FFFFFF !important;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  align-self: flex-start;
  white-space: nowrap;
  transition: background 0.15s ease-out, transform 0.15s ease-out;
  box-shadow: 0 2px 8px rgba(255,107,26,0.18);
}
.audience-card__cta:hover {
  background: #E85A0F;
  transform: translateX(2px);
  text-decoration: none;
}
.audience-card__cta:focus-visible {
  outline: 2px solid #FF6B1A;
  outline-offset: 3px;
}
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 8px;
}
@media (min-width: 720px) {
  .audience-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* — Battle block (replace inline styles) */
.battle-section {
  padding: clamp(56px, 8vw, 112px) 0;
}
.battle-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(28px, 4vw, 48px);
}
.battle-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.battle-tab {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid #ECEAE3;
  background: #fff;
  font-weight: 500;
  font-size: 0.9375rem;
  cursor: pointer;
  color: var(--color-text-primary, #1A1A1A);
  transition: all 0.15s ease-out;
}
.battle-tab:hover {
  border-color: rgba(255,107,26,0.5);
}
.battle-tab.battle-tab--active {
  background: #FF6B1A !important;
  color: #fff !important;
  border-color: #FF6B1A !important;
}
.battle-panel-wrap {
  max-width: 880px;
  margin: 0 auto;
}
.battle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px) {
  .battle-grid { grid-template-columns: 1fr 1fr; }
}
.battle-col {
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.battle-col--bad {
  background: #FFF7F5;
  border: 1px solid #FFE0D8;
}
.battle-col--good {
  background: #F1FAF4;
  border: 1px solid #C9EBD4;
}
.battle-col__eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.battle-col--bad .battle-col__eyebrow { color: #DC2626; }
.battle-col--good .battle-col__eyebrow { color: #16A34A; }
.battle-col__row {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #1F2937;
}
.battle-cta {
  text-align: center;
  margin-top: clamp(28px, 4vw, 40px);
}

/* — FAQ accordion polish */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #ECEAE3;
}
.faq-list .faq-item {
  border-bottom: 1px solid #ECEAE3;
  padding: 0;
}
.faq-list .faq-summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 32px 20px 0;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--color-text-primary, #1A1A1A);
  position: relative;
  line-height: 1.4;
  transition: color 0.15s ease-out;
}
.faq-list .faq-summary::-webkit-details-marker { display: none; }
.faq-list .faq-summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: #FF6B1A;
  transition: transform 0.2s ease-out;
  line-height: 1;
}
.faq-list details[open] .faq-summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-list .faq-summary:hover { color: #FF6B1A; }
.faq-list .faq-content {
  padding: 0 32px 20px 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-secondary, #5A5A5A);
}
.faq-list .faq-content p { margin: 0 0 8px; }
.faq-list .faq-content p:last-child { margin-bottom: 0; }
.faq-list .faq-content a { color: #FF6B1A; text-decoration: none; }
.faq-list .faq-content a:hover { text-decoration: underline; }

/* — Buttons (unified focus state) */
.btn:focus-visible,
.btn--primary:focus-visible,
.btn--ghost:focus-visible,
.btn--outline:focus-visible {
  outline: 2px solid #FF6B1A;
  outline-offset: 3px;
}

/* — Footer typography polish */
.footer {
  background: #fff;
  border-top: 1px solid #ECEAE3;
  padding: clamp(48px, 7vw, 72px) 0 clamp(24px, 3vw, 32px);
}
.footer h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6B7280;
  margin: 0 0 16px;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer ul a {
  color: #1F2937;
  text-decoration: none;
  font-size: 0.9375rem;
  line-height: 1.4;
  transition: color 0.15s ease-out;
}
.footer ul a:hover { color: #FF6B1A; }

/* — Hide legacy sections on home that no longer serve focus
   (per ТЗ structure: Hero → Trust → Outcome → Audience → Killers → Battle → Cases → FAQ → Final CTA).
   Decision drivers: AI Q&A duplicates Killer #2, open-source block is fully covered by /mcp,
   pricing ladder lives on /pricing, ladder-pdf-cta is a brand download not in the conversion path. */
body[data-page="home"] #ai-block,
body[data-page="home"] #open-source,
body[data-page="home"] .ladder-pdf-cta,
body[data-page="home"] #pricing {
  display: none;
}

/* — Body scroll guard for fixed sticky-cta on mobile */
@media (max-width: 720px) {
  body { padding-bottom: 72px; }
}

/* — Global mobile overflow guard */
html, body {
  overflow-x: clip;
}
.killer-card,
.killer-card__media,
.killer-card__content,
.audience-card,
.outcome-card,
.chekup-bundle__item,
.chekup-layer,
.chekup-tariff {
  min-width: 0;
}

/* — Mobile killer-card spacing tweak (less padding on small screens) */
@media (max-width: 720px) {
  .killer-card__media { padding: 1.25rem; min-height: 180px; }
  .killers__list { gap: 2.25rem; }
}

/* ===================================================================
   INTERACTIVE PHONE WIDGET — «Один день фаундера»
   Auto-cycling 3 сцены: Сводка → Q&A → Голос. Pause on hover.
   =================================================================== */
.phone-mockup { position: relative; max-width: 320px; }
.phone-scenes {
  position: relative;
  flex: 1;
  overflow: hidden;
  min-height: 360px;
  padding: 12px;
}
.phone-scene {
  position: absolute;
  inset: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s ease-out, transform 0.45s ease-out;
  pointer-events: none;
}
.phone-scene.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Message bubbles */
.bot-msg {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: #1F2937;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  max-width: 88%;
  word-wrap: break-word;
}
.bot-msg p { margin: 0 0 4px; }
.bot-msg p:last-child { margin: 0; }
.bot-msg__head {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.bot-msg strong { color: #1A1A1A; font-weight: 600; }
.bot-msg--in {
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.bot-msg--out {
  align-self: flex-end;
  background: #FF6B1A;
  color: #FFFFFF;
  border-bottom-right-radius: 4px;
}
.bot-msg--out p, .bot-msg--out strong { color: #FFFFFF; }
.bot-msg--voice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
}
.bot-msg--typing {
  align-self: flex-start;
  display: inline-flex;
  gap: 4px;
  padding: 10px 14px;
  background: #FFFFFF;
}
.bot-msg--typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C0C4CB;
  animation: typing-bounce 1.2s ease-in-out infinite;
}
.bot-msg--typing span:nth-child(2) { animation-delay: 0.15s; }
.bot-msg--typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .bot-msg--typing span { animation: none; }
}

/* Voice waveform */
.voice-wave {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  height: 14px;
}
.voice-wave span {
  width: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  animation: voice-bar 1s ease-in-out infinite;
}
.voice-wave span:nth-child(1) { height: 5px; animation-delay: 0s; }
.voice-wave span:nth-child(2) { height: 9px; animation-delay: 0.1s; }
.voice-wave span:nth-child(3) { height: 12px; animation-delay: 0.2s; }
.voice-wave span:nth-child(4) { height: 8px; animation-delay: 0.3s; }
.voice-wave span:nth-child(5) { height: 4px; animation-delay: 0.4s; }
@keyframes voice-bar {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1); }
}
@media (prefers-reduced-motion: reduce) {
  .voice-wave span { animation: none; }
}
.voice-text {
  font-size: 0.8125rem;
  line-height: 1.3;
}

/* Quick-reply chips */
.bot-quickreply {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.bot-chip {
  background: #FFFFFF;
  border: 1px solid #E4E7EB;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #FF6B1A;
  cursor: pointer;
  transition: all 0.15s ease-out;
  font-family: inherit;
}
.bot-chip:hover {
  background: rgba(255,107,26,0.06);
  border-color: rgba(255,107,26,0.3);
}

.phone-meta {
  align-self: center;
  font-size: 0.6875rem;
  color: #9CA3AF;
  margin-top: 4px;
  text-align: center;
}

/* Footer: time + scene dots */
.phone-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  background: #FFFFFF;
  border-top: 1px solid #E4E4E7;
}
.phone-scene-dots {
  display: inline-flex;
  gap: 6px;
}
.phone-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 0;
  background: #D1D5DB;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease-out;
}
.phone-dot.is-active {
  background: #FF6B1A;
  width: 20px;
  border-radius: 3px;
}
.phone-dot:hover { background: #9CA3AF; }
.phone-dot.is-active:hover { background: #FF6B1A; }

/* Floating caption beside phone */
.phone-caption {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translate(20px, -50%);
  max-width: 240px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease-out 0.1s;
}
@media (min-width: 1100px) {
  .phone-caption { opacity: 1; }
}
.phone-caption__kicker {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #FF6B1A;
  margin-bottom: 8px;
}
.phone-caption__text {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--color-text-secondary, #5A5A5A);
  transition: opacity 0.3s ease-out;
}

/* Mobile: caption goes below phone, simpler */
@media (max-width: 1099px) {
  .phone-caption {
    position: static;
    transform: none;
    max-width: 320px;
    margin: 16px auto 0;
    text-align: center;
    opacity: 1;
  }
}

/* — Buttons never overflow viewport */
.btn, .btn--primary, .btn--ghost, .btn--outline {
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
}
@media (max-width: 520px) {
  .btn, .btn--primary, .btn--ghost, .btn--outline {
    white-space: normal;
    line-height: 1.3;
  }
  .hero__actions .btn { width: 100%; }
}
