/* Fonts loaded via <link> in page head — do not @import here (blocks render). */

:root {
  --bg: #ffffff;
  --bg-soft: #f4f6f8;
  --ink: #111111;
  --muted: #5c6678;
  --line: #e6ebf0;
  --accent: #00e5b8;
  --accent-ink: #043b30;
  --lime: #c8f542;
  --dark: #0d0f12;
  --coral: #ff5c6c;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Unbounded", system-ui, sans-serif;
  --radius: 20px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.tel-page {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  padding-bottom: 72px;
}
@media (min-width: 769px) { body.tel-page { padding-bottom: 0; } }

.tel-container { width: min(1160px, 92vw); margin: 0 auto; }

/* Nav */
.tel-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.tel-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 12px 0;
}
.tel-logo {
  font-family: var(--display); font-weight: 700; font-size: .9rem;
  color: var(--ink); text-decoration: none;
}
.tel-logo span {
  display: inline-block; margin-left: 4px; padding: 2px 8px;
  border-radius: 8px; background: var(--ink); color: var(--accent);
}
.tel-nav-links { display: flex; gap: 12px; align-items: center; }
.tel-nav-phone {
  color: var(--ink); text-decoration: none; font-weight: 800;
  font-size: .82rem; white-space: nowrap;
}

/* Скрытый номер — показ по клику (как engine-anatomy.ru) */
.phone-reveal:not(.is-revealed) { cursor: pointer; }
.phone-reveal__line {
  display: inline-flex; align-items: center; gap: 7px;
  line-height: 1.15; white-space: nowrap;
}
.phone-reveal__value { display: inline; line-height: inherit; }
.phone-reveal__eye {
  display: block; width: 1em; height: 1em;
  min-width: 16px; min-height: 16px; flex: 0 0 auto;
  stroke: currentColor; fill: none; stroke-width: 1.75;
  opacity: 0.72; transform: translateY(0.04em);
}
.phone-reveal.is-revealed .phone-reveal__eye { display: none; }
.phone-reveal:not(.is-revealed) .phone-reveal__fade {
  display: inline;
  vertical-align: baseline;
  user-select: none;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    currentColor 0%,
    currentColor 8%,
    color-mix(in srgb, currentColor 38%, transparent) 32%,
    transparent 70%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tel-btn.phone-reveal { display: inline-flex; align-items: center; justify-content: center; }
.tel-sticky-call.phone-reveal {
  display: inline-flex; align-items: center; justify-content: center;
  text-transform: none; letter-spacing: 0; font-size: .78rem;
}
.tel-nav-cta {
  padding: 10px 18px; border-radius: 999px; font-weight: 800; font-size: .72rem;
  background: var(--lime); color: var(--ink); text-decoration: none;
  letter-spacing: .04em; text-transform: uppercase; white-space: nowrap;
}
@media (max-width: 480px) {
  .tel-nav-phone { display: none; }
  .tel-nav-cta { padding: 10px 14px; font-size: .68rem; }
}

/* Sections */
.tel-section { padding: 64px 0; }
.tel-section--soft { background: var(--bg-soft); }
.tel-section--dark {
  background: var(--dark);
  color: #fff;
  border-radius: 32px 32px 0 0;
  margin-top: 12px;
  padding: 72px 0;
}
.tel-label {
  font-size: .72rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); margin: 0 0 10px;
}
.tel-section--dark .tel-label { color: var(--lime); }

/* Hunt ladder step labels */
.tel-hunt {
  font-size: .68rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent-ink);
  margin: 0 0 8px;
}
.tel-hunt::before {
  content: "▸ "; color: var(--lime);
  filter: drop-shadow(0 0 0 var(--ink));
}
.tel-section--dark .tel-hunt,
.tel-hunt--dark {
  color: var(--lime);
}
.tel-section--dark .tel-hunt::before { color: var(--accent); }

/* Strong USP cards */
.tel-usp-strong {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.tel-usp-strong-card {
  grid-column: span 2;
  padding: 22px 20px;
  border-radius: var(--radius);
  background: var(--bg);
  border: 2px solid var(--line);
}
#usp .tel-usp-strong-card {
  border-color: var(--ink);
  box-shadow: 6px 6px 0 var(--lime);
  background: linear-gradient(180deg, #f8fff4 0%, var(--bg) 100%);
}
.tel-usp-strong-card:nth-child(4),
.tel-usp-strong-card:nth-child(5) {
  grid-column: span 3;
}
@media (max-width: 900px) {
  .tel-usp-strong { grid-template-columns: 1fr; }
  .tel-usp-strong-card,
  .tel-usp-strong-card:nth-child(4),
  .tel-usp-strong-card:nth-child(5) { grid-column: span 1; }
}
.tel-usp-strong-card--hl {
  border-color: var(--ink);
  background: linear-gradient(180deg, #f8fff4 0%, var(--bg) 100%);
  box-shadow: 6px 6px 0 var(--lime);
}
.tel-usp-strong-num {
  display: inline-block;
  font-family: var(--display);
  font-size: .68rem; font-weight: 800;
  color: var(--accent-ink);
  background: var(--lime);
  padding: 4px 8px; border-radius: 6px;
  margin-bottom: 12px;
}
.tel-usp-strong-card h3 {
  margin: 0 0 10px;
  font-size: .95rem;
  font-weight: 800;
  line-height: 1.3;
}
.tel-usp-strong-card p {
  margin: 0;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.55;
}
.tel-title {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3.2vw, 2.35rem);
  font-weight: 700; line-height: 1.15; letter-spacing: -.03em;
  margin: 0 0 14px;
}
.tel-section--dark .tel-title { color: #fff; }
.tel-lead {
  font-size: 1rem; color: var(--muted); max-width: 680px;
  margin: 0 0 28px; line-height: 1.65;
}
.tel-section--dark .tel-lead { color: #a8b4c8; margin-bottom: 0; }

/* Buttons */
.tel-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 26px; border-radius: 999px; font-weight: 800; font-size: .82rem;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  letter-spacing: .04em; text-transform: uppercase; transition: transform .2s, box-shadow .2s;
  font-family: inherit;
}
.tel-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.tel-btn--lime { background: var(--lime); color: var(--ink); }
.tel-btn--dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.tel-btn--full { width: 100%; }

/* Hero */
.tel-hero {
  padding: 36px 0 48px;
  background: linear-gradient(180deg, #f8fff4 0%, var(--bg) 100%);
}
.tel-hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 32px; align-items: start;
}
@media (max-width: 900px) { .tel-hero-grid { grid-template-columns: 1fr; } }
.tel-hero-badge {
  display: inline-block; margin: 0 0 14px; padding: 6px 12px;
  border-radius: 999px; background: var(--lime); font-size: .72rem; font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase;
}
.tel-hero h1 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.8vw, 2.65rem);
  font-weight: 700; line-height: 1.12; letter-spacing: -.03em;
  margin: 0 0 18px;
}
.tel-hero h1 mark {
  background: var(--lime); color: var(--ink);
  padding: 0 6px; border-radius: 4px;
}
.tel-hero-lead {
  font-size: 1.02rem; color: var(--muted); max-width: 540px;
  margin-bottom: 18px; line-height: 1.65;
}
.tel-hero-lead strong { color: var(--ink); }
.tel-hero-checks {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.tel-hero-checks li {
  font-size: .86rem; color: var(--muted); padding-left: 22px; position: relative;
}
.tel-hero-checks li::before {
  content: "✓"; position: absolute; left: 0;
  color: var(--accent-ink); font-weight: 800;
}

/* Lead form card */
.tel-lead-card {
  padding: 28px 24px; border-radius: 24px;
  background: var(--bg); border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--lime);
}
.tel-lead-card-label {
  margin: 0 0 6px; font-size: .72rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.tel-lead-card-title {
  font-family: var(--display); font-size: clamp(1.05rem, 2vw, 1.35rem);
  margin: 0 0 18px; line-height: 1.25;
}
.tel-lead-form {
  display: flex; flex-direction: column; gap: 10px;
}
.tel-lead-form input:not([type="checkbox"]) {
  width: 100%; padding: 14px 16px; border-radius: 12px;
  border: 2px solid var(--line); font: inherit; font-size: .9rem;
  background: var(--bg-soft); transition: border-color .2s, box-shadow .2s;
}
.tel-lead-form input:not([type="checkbox"]):focus {
  outline: none; border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(200,245,66,.35); background: #fff;
}
.tel-consent {
  font-size: .72rem; color: var(--muted);
  display: flex; gap: 8px; align-items: flex-start; line-height: 1.4;
}
.tel-consent input[type="checkbox"] {
  width: auto; flex-shrink: 0; margin: 2px 0 0;
  padding: 0; border: none; background: transparent; box-shadow: none;
}
.tel-consent--light { color: rgba(17,17,17,.7); }
.tel-lead-alt {
  margin: 14px 0 0; font-size: .82rem; color: var(--muted); text-align: center;
}
.tel-lead-alt a { color: var(--ink); font-weight: 800; text-decoration: none; }
.tel-form-success {
  padding: 20px; border-radius: 14px;
  background: #f0fff8; border: 2px solid var(--accent);
  text-align: center;
}
.tel-form-success strong { display: block; font-size: 1rem; margin-bottom: 6px; }
.tel-form-success p { margin: 0; font-size: .84rem; color: var(--muted); }

/* Trust strip */
.tel-trust {
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.tel-trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}
@media (max-width: 960px) {
  .tel-trust-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
}
@media (max-width: 760px) {
  .tel-trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
}
@media (max-width: 480px) {
  .tel-trust-grid { grid-template-columns: 1fr; }
}
.tel-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 0 6px;
  min-height: 3.6rem;
}
.tel-trust-item b {
  display: block;
  width: 100%;
  font-family: var(--display);
  font-size: clamp(1.08rem, 2.1vw, 1.32rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 6px;
  color: var(--ink);
}
.tel-trust-item span {
  display: block;
  width: 100%;
  font-size: .72rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.4;
}

/* Pain */
.tel-pain-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
@media (max-width: 900px) { .tel-pain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .tel-pain-grid { grid-template-columns: 1fr; } }
.tel-pain-card {
  padding: 20px 18px; border-radius: 18px;
  background: var(--bg); border: 2px solid var(--line);
}
#pain .tel-pain-card {
  border-color: var(--ink);
  box-shadow: 6px 6px 0 var(--lime);
  background: linear-gradient(180deg, #f8fff4 0%, var(--bg) 100%);
}
.tel-pain-card--accent {
  border-color: var(--coral);
  background: linear-gradient(180deg, #fff5f6 0%, var(--bg) 100%);
}
.tel-pain-icon { font-size: 1.5rem; display: block; margin-bottom: 8px; }
.tel-pain-card h3 { margin: 0 0 8px; font-size: .9rem; font-weight: 800; }
.tel-pain-card p { margin: 0; font-size: .8rem; color: var(--muted); line-height: 1.5; }

/* CTA bands */
.tel-cta-band {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap; margin-top: 28px; padding: 20px 22px;
  border-radius: 18px; background: var(--bg);
  border: 2px solid var(--ink); box-shadow: 6px 6px 0 var(--lime);
}
.tel-cta-band p { margin: 0; font-size: .88rem; color: var(--muted); max-width: 560px; }
.tel-cta-band p strong { color: var(--ink); }
.tel-cta-band--dark {
  background: var(--dark); border-color: var(--dark);
  box-shadow: 6px 6px 0 var(--lime);
}
.tel-cta-band--dark p { color: #a8b4c8; }
.tel-cta-band--dark p strong { color: #fff; }

/* USP */
.tel-usp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
@media (max-width: 800px) { .tel-usp-grid { grid-template-columns: 1fr; } }
.tel-usp-card {
  padding: 22px; border-radius: var(--radius);
  background: var(--bg); border: 2px solid var(--line);
}
.tel-section--soft .tel-usp-card { background: var(--bg); }
.tel-usp-card--accent {
  border-color: var(--ink);
  background: linear-gradient(180deg, #f8fff4 0%, var(--bg) 100%);
  box-shadow: 6px 6px 0 var(--lime);
}
.tel-usp-card h3 { margin: 0 0 10px; font-size: .95rem; font-weight: 800; }
.tel-usp-card p { margin: 0; font-size: .84rem; color: var(--muted); line-height: 1.55; }
.tel-usp-card p strong { color: var(--ink); }

/* Results */
.tel-result-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
@media (max-width: 900px) { .tel-result-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .tel-result-grid { grid-template-columns: 1fr; } }
.tel-result-card {
  padding: 22px 18px; border-radius: 18px;
  background: var(--bg); border: 2px solid var(--line);
}
.tel-section--soft .tel-result-card { background: var(--bg); }
#solution .tel-result-card {
  border-color: var(--ink);
  box-shadow: 6px 6px 0 var(--lime);
  background: linear-gradient(180deg, #f8fff4 0%, var(--bg) 100%);
}
.tel-result-card--accent {
  border-color: var(--ink);
  box-shadow: 6px 6px 0 var(--lime);
  background: linear-gradient(180deg, #f8fff4 0%, var(--bg) 100%);
}
.tel-result-num {
  font-family: var(--display); font-size: .68rem; font-weight: 800;
  color: var(--accent-ink); background: var(--lime);
  display: inline-block; padding: 4px 8px; border-radius: 6px; margin-bottom: 10px;
}
.tel-result-card h3 { margin: 0 0 8px; font-size: .88rem; font-weight: 800; }
.tel-result-card p { margin: 0; font-size: .78rem; color: var(--muted); line-height: 1.5; }

/* Capabilities */
.tel-cap-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
@media (max-width: 900px) { .tel-cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .tel-cap-grid { grid-template-columns: 1fr; } }
.tel-cap {
  padding: 18px 16px; border-radius: 16px;
  background: var(--bg-soft); border: 1px solid var(--line);
  transition: transform .2s, box-shadow .2s;
}
.tel-cap:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
  border-color: var(--ink);
}
.tel-cap-icon { font-size: 1.4rem; margin-bottom: 8px; }
.tel-cap h3 { margin: 0 0 6px; font-size: .88rem; font-weight: 800; }
.tel-cap p { margin: 0; font-size: .78rem; color: var(--muted); line-height: 1.5; }
.tel-cap p strong { color: var(--ink); }
.tel-cap--addon {
  border-color: var(--ink);
  background: linear-gradient(180deg, #f8fff4 0%, var(--bg-soft) 100%);
  box-shadow: 4px 4px 0 var(--lime);
}
.tel-cap-badge {
  display: inline-block; margin-bottom: 8px; padding: 3px 8px;
  border-radius: 999px; background: var(--ink); color: var(--lime);
  font-size: .62rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
}

/* Setup — 3 groups (variant E) */
.tel-setup-groups {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
@media (max-width: 900px) { .tel-setup-groups { grid-template-columns: 1fr; } }
.tel-setup-group {
  border-radius: 20px; padding: 20px 18px;
  border: 2px solid var(--ink);
  background: var(--bg);
}
#setup .tel-setup-group:nth-child(1) {
  box-shadow: 6px 6px 0 var(--lime);
  background: linear-gradient(180deg, #f8fff4 0%, var(--bg) 100%);
}
#setup .tel-setup-group:nth-child(2) {
  box-shadow: 6px 6px 0 var(--accent);
}
#setup .tel-setup-group:nth-child(3) {
  box-shadow: 6px 6px 0 var(--ink);
  background: linear-gradient(180deg, #f8fff4 0%, var(--bg) 100%);
}
.tel-setup-group-head {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px; padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.tel-setup-group-head span { font-size: 1.25rem; line-height: 1; }
.tel-setup-group-head h3 {
  margin: 0; font-size: .78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em;
}
.tel-setup-items {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.tel-setup-items h4 { margin: 0 0 3px; font-size: .84rem; font-weight: 800; }
.tel-setup-items p { margin: 0; font-size: .74rem; color: var(--muted); line-height: 1.45; }

/* CQR — AI analytics block */
.tel-cqr-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin-bottom: 28px;
}
.tel-cqr-head .tel-lead { margin-bottom: 0; max-width: 640px; }
.tel-cqr-head .tel-lead strong { color: var(--ink); }
.tel-cqr-head--cqr { margin-bottom: 20px; }
.tel-cqr-head--cqr .tel-title { margin-bottom: 0; }
.tel-cqr-copy .tel-lead {
  margin: 0 0 20px;
  max-width: none;
}
.tel-cqr-copy .tel-lead strong { color: var(--ink); }
.tel-cqr-wrap {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 24px; align-items: start;
}
@media (max-width: 960px) { .tel-cqr-wrap { grid-template-columns: 1fr; } }
.tel-cqr-benefits {
  list-style: none; margin: 0 0 16px; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.tel-cqr-benefits li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .84rem; color: var(--muted); line-height: 1.5;
}
.tel-cqr-benefits li span:first-child { flex-shrink: 0; font-size: 1rem; line-height: 1.2; }
.tel-cqr-benefits b { color: var(--ink); }
.tel-cqr-note {
  margin: 0; padding: 14px 16px; border-radius: 14px;
  background: var(--bg-soft); border: 1px solid var(--line);
  font-size: .78rem; color: var(--muted); line-height: 1.5;
}
.tel-cqr-cta { margin-top: 40px; }
.tel-cqr-demo {
  border-radius: 20px; border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--lime);
  background: var(--bg); overflow: hidden;
}
.tel-cqr-demo-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  flex-wrap: wrap; padding: 12px 16px;
  background: linear-gradient(180deg, #f8fff4 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
}
.tel-cqr-demo-tag {
  font-size: .68rem; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; color: var(--accent-ink);
  background: var(--lime); padding: 4px 8px; border-radius: 6px;
}
.tel-cqr-demo-meta { font-size: .72rem; color: var(--muted); }
.tel-cqr-table-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.tel-cqr-table {
  width: 100%; min-width: 520px; border-collapse: collapse;
  font-size: .72rem; line-height: 1.45;
}
.tel-cqr-table th,
.tel-cqr-table td {
  padding: 10px 12px; text-align: left; vertical-align: top;
  border-bottom: 1px solid var(--line);
}
.tel-cqr-table th {
  font-size: .66rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .04em; color: var(--muted); background: var(--bg-soft);
}
.tel-cqr-table td:first-child { font-weight: 700; white-space: nowrap; width: 1%; }
.tel-cqr-table td:nth-child(2) { width: 56px; text-align: center; }
.tel-cqr-table tfoot td {
  background: #f8fff4; border-bottom: none; font-size: .78rem;
}
.tel-cqr-score {
  display: inline-block; min-width: 28px; padding: 2px 6px;
  border-radius: 6px; font-weight: 800; text-align: center;
}
.tel-cqr-score--good { background: #dcfce7; color: #166534; }
.tel-cqr-score--mid { background: #fef9c3; color: #854d0e; }
.tel-cqr-score--bad { background: #fee2e2; color: #991b1b; }
.tel-cqr-total {
  display: inline-block; margin-right: 6px; padding: 4px 10px;
  border-radius: 8px; background: var(--lime); color: var(--ink);
  font-family: var(--display); font-size: 1rem; font-weight: 800;
}

/* Telegram — боевой формат сообщений */
.tel-tg-demo {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items: start;
}
@media (max-width: 900px) {
  .tel-tg-demo { grid-template-columns: 1fr; }
}

#missed .tel-title { margin-bottom: 32px; }

.tel-tg-stage {
  position: relative;
  max-width: 420px;
  margin: 0;
  width: 100%;
}

.tel-tg-float {
  position: absolute; z-index: 3;
  padding: 8px 14px; border-radius: 12px;
  font-size: .72rem; font-weight: 800;
  border: 2px solid var(--ink); box-shadow: 4px 4px 0 var(--ink);
  background: var(--lime);
}
.tel-tg-float--count {
  top: -10px; right: -8px;
  transform: rotate(2deg);
}
.tel-tg-float-label {
  display: block; font-size: .62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; opacity: .75;
}
.tel-tg-float strong { font-family: var(--display); font-size: 1.1rem; }

.tel-tg-chat {
  border-radius: 22px;
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--lime);
  overflow: hidden;
  background: #b4d4a8 url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2398bf8a' fill-opacity='.35'%3E%3Cpath d='M30 5c2 8 10 12 18 14-8 2-14 8-16 16-2-8-10-14-18-16 8-2 14-8 16-14z'/%3E%3C/g%3E%3C/svg%3E");
  height: 548px;
  display: flex;
  flex-direction: column;
}

.tel-tg-chat-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  background: #5288c1;
  color: #fff;
  flex-shrink: 0;
}
.tel-tg-chat-back {
  font-size: 1.4rem; line-height: 1; opacity: .9;
}
.tel-tg-chat-title strong {
  display: block; font-size: .88rem; font-weight: 700;
}
.tel-tg-chat-title span {
  font-size: .68rem; opacity: .85;
}

.tel-tg-feed {
  position: relative;
  height: 494px;
  flex-shrink: 0;
  padding: 0 10px;
  overflow: hidden;
}

.tel-tg-feed-track {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 0 16px;
  will-change: transform;
  animation: tel-tg-track 6s ease-in-out 2s infinite;
}

@keyframes tel-tg-track {
  0%, 14% { transform: translateY(-56px); }
  20%, 54% { transform: translateY(-132px); }
  62%, 100% { transform: translateY(-56px); }
}

@keyframes tel-tg-track-m {
  0%, 14% { transform: translateY(-48px); }
  20%, 54% { transform: translateY(-118px); }
  62%, 100% { transform: translateY(-48px); }
}

.tel-tg-post {
  display: flex; gap: 8px; align-items: flex-start;
  flex-shrink: 0;
  animation: tel-tg-in .45s ease backwards;
}
.tel-tg-post:nth-child(1) { animation-delay: .05s; }
.tel-tg-post:nth-child(2) { animation-delay: .15s; }

@keyframes tel-tg-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.tel-tg-post-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; font-weight: 800; color: #fff;
}
.tel-tg-post-avatar--bot {
  background: linear-gradient(135deg, #e91e8c, #f06292);
}

.tel-tg-post-inner { flex: 1; min-width: 0; }

.tel-tg-post-head {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 4px; flex-wrap: wrap;
}
.tel-tg-post-name {
  font-size: .78rem; font-weight: 700;
  color: #e91e8c;
}
.tel-tg-post-admin {
  font-size: .58rem; font-weight: 700;
  padding: 2px 6px; border-radius: 4px;
  background: #c8e6c9; color: #2e7d32;
  text-transform: lowercase;
}

.tel-tg-bubble {
  position: relative;
  padding: 8px 10px 18px;
  border-radius: 0 12px 12px 12px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,.08);
  font-size: .74rem; line-height: 1.45; color: #111;
}
.tel-tg-bubble::before {
  content: "";
  position: absolute; left: -6px; top: 0;
  border: 6px solid transparent;
  border-top-color: #fff;
  border-right-color: #fff;
}

.tel-tg-line {
  margin: 0 0 4px;
}
.tel-tg-line:last-of-type { margin-bottom: 0; }
.tel-tg-line b { font-weight: 700; }
.tel-tg-line--alert {
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--coral);
  background: #fff0f2;
  margin-left: -4px;
  margin-right: -4px;
  padding: 4px 6px;
  border-radius: 6px;
}
.tel-tg-line--status {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid #eee;
  color: #444;
}
.tel-tg-line--open b { color: var(--coral); }
.tel-tg-bubble a {
  color: #2481cc;
  text-decoration: none;
  font-weight: 600;
}

.tel-tg-time {
  position: absolute;
  right: 8px; bottom: 4px;
  font-size: .62rem; color: #8b98a5;
  font-style: normal;
}

.tel-tg-post--vanish {
  animation: tel-tg-vanish 6s ease-in-out 2s infinite;
}
@keyframes tel-tg-vanish {
  0%, 14% { opacity: 0; transform: translateY(8px); }
  20%, 54% { opacity: 1; transform: none; }
  62%, 100% { opacity: 0; transform: translateY(-6px); }
}
.tel-tg-bubble--closed { opacity: .85; }
.tel-tg-vanish-label {
  display: block; margin-top: 6px;
  font-size: .66rem; font-weight: 800;
  color: var(--accent-ink);
  text-align: center;
}

.tel-tg-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 0;
}
.tel-tg-side-cta { margin-top: 16px; }

.tel-tg-flow {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}
.tel-tg-flow-step {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px; border-radius: 12px;
  font-size: .76rem; font-weight: 700; color: var(--muted);
  background: var(--bg); border: 1px solid var(--line);
  line-height: 1.35;
}
.tel-tg-flow-step > span:first-child {
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .62rem; font-weight: 800;
  background: var(--line); color: var(--ink);
  flex-shrink: 0;
}
.tel-tg-flow-step--miss {
  border-color: var(--coral);
  background: #fff5f6;
  color: #c62828;
}
.tel-tg-flow-step--miss > span:first-child {
  background: var(--coral);
  color: #fff;
}
.tel-tg-flow-step--on {
  border-color: var(--ink); color: var(--ink);
  background: var(--lime);
}
.tel-tg-flow-step--on > span:first-child { background: var(--ink); color: var(--lime); }
.tel-tg-flow-step--done {
  border-color: var(--accent); color: var(--accent-ink);
  background: #f0fff8;
}
.tel-tg-flow-step--done > span:first-child { background: var(--accent); color: #fff; }
.tel-tg-flow-arrow {
  font-size: .82rem; color: var(--muted); font-weight: 800;
  text-align: center; line-height: 1;
}

.tel-tg-list { list-style: none; margin: 0; padding: 0; }
.tel-tg-list li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px 0; font-size: .84rem; color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.tel-tg-list li:last-child { border-bottom: none; }
.tel-tg-list b { color: var(--ink); }

/* Stats dashboard demo */
.tel-cqr-head--stats { margin-bottom: 20px; }
.tel-stats-wrap {
  display: grid; grid-template-columns: 1fr minmax(0, 460px); gap: 28px; align-items: start;
}
@media (max-width: 960px) { .tel-stats-wrap { grid-template-columns: 1fr; } }
.tel-stats-copy .tel-lead {
  margin: 0 0 20px;
  max-width: none;
}
.tel-stats-copy .tel-lead strong { color: var(--ink); }
.tel-stats-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.tel-stats-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .84rem; color: var(--muted); line-height: 1.5;
  padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.tel-stats-list li:last-child { border-bottom: none; padding-bottom: 0; }
.tel-stats-list li span:first-child {
  flex-shrink: 0; font-size: 1rem; line-height: 1.2;
}
.tel-call-report-cta { margin-top: 40px; }
.tel-stats-list b { color: var(--ink); }
.tel-stats-demo {
  margin: 0; border-radius: 20px; border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--accent);
  background: #0a1218; overflow: hidden;
}
.tel-stats-demo-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  flex-wrap: wrap; padding: 12px 16px;
  background: linear-gradient(180deg, #12202a 0%, #0a1218 100%);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.tel-stats-demo-tag {
  font-size: .68rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent);
}
.tel-stats-demo-meta { font-size: .72rem; color: rgba(255,255,255,.55); }
.tel-stats-demo-scroll {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  padding: 0;
}
.tel-stats-demo img {
  display: block; width: 100%; min-width: 0; height: auto;
}
.tel-setup-items a {
  color: var(--accent-ink); font-weight: 700; text-decoration: none;
  border-bottom: 1px solid rgba(4,59,48,.25);
}
.tel-setup-items a:hover { border-bottom-color: var(--accent-ink); }

@media (prefers-reduced-motion: reduce) {
  .tel-tg-feed-track { animation: none; transform: translateY(-56px); }
  .tel-tg-post, .tel-tg-post--vanish, .tel-tg-vanish-label {
    animation: none;
  }
  .tel-tg-post--vanish { opacity: .4; }
}

/* Vendors — redesigned */
.tel-vendors-head {
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end;
  margin-bottom: 32px;
}
@media (max-width: 760px) { .tel-vendors-head { grid-template-columns: 1fr; } }
.tel-vendors-stat {
  padding: 20px 24px; border-radius: 18px;
  background: rgba(200,245,66,.08); border: 2px solid var(--lime);
  text-align: center; min-width: 180px;
}
.tel-vendors-stat-num {
  display: block; font-family: var(--display);
  font-size: 2rem; font-weight: 700; color: var(--lime); line-height: 1;
}
.tel-vendors-stat-label { font-size: .72rem; color: #a8b4c8; line-height: 1.35; }
.tel-vendor-cats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 900px) { .tel-vendor-cats { grid-template-columns: 1fr; } }
.tel-vendor-cat h3 {
  margin: 0 0 12px; font-size: .72rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; color: var(--lime);
}
.tel-vendor-cards { display: flex; flex-direction: column; gap: 8px; }
.tel-vendor-card {
  display: block;
  padding: 14px 16px; border-radius: 14px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  color: #fff;
  transition: background .2s, border-color .2s, transform .2s;
}
.tel-vendor-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.25);
  transform: translateX(4px);
}
.tel-vendor-card--hl {
  background: var(--lime); border-color: var(--ink); color: var(--ink);
  box-shadow: 4px 4px 0 rgba(0,0,0,.3);
}
.tel-vendor-card--hl:hover { background: #d4f04a; }
.tel-vendor-name {
  font-weight: 800; font-size: .88rem;
  transition: color .2s ease;
}
.tel-vendor-card:hover .tel-vendor-name { color: var(--lime); }
.tel-vendor-card--hl .tel-vendor-name { color: var(--ink); }
.tel-vendor-card--hl:hover .tel-vendor-name { color: var(--accent-ink); }

.tel-vendors-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap; margin-top: 32px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.tel-vendors-cta p { margin: 0; color: #a8b4c8; font-size: .9rem; }
.tel-vendors-cta p strong { color: #fff; }

/* Process */
.tel-process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}
@media (max-width: 720px) {
  .tel-process {
    grid-template-columns: repeat(5, minmax(148px, 1fr));
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    padding-bottom: 4px;
  }
  .tel-process-step { scroll-snap-align: start; }
}
.tel-process-step {
  padding: 18px 14px; border-radius: 16px;
  background: var(--bg); border: 2px solid var(--line);
  min-width: 0;
}
#process .tel-process-step {
  border-color: var(--ink);
  box-shadow: 6px 6px 0 var(--lime);
  background: linear-gradient(180deg, #f8fff4 0%, var(--bg) 100%);
}
.tel-process-step span {
  display: inline-block; font-family: var(--display);
  font-size: .68rem; font-weight: 800; color: var(--accent-ink);
  background: var(--lime); padding: 4px 8px; border-radius: 6px; margin-bottom: 10px;
}
.tel-process-step h3 { margin: 0 0 6px; font-size: .88rem; }
.tel-process-step p { margin: 0; font-size: .76rem; color: var(--muted); line-height: 1.5; }

/* Price */
.tel-price {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch;
}
@media (max-width: 760px) { .tel-price { grid-template-columns: 1fr; } }
.tel-price-main {
  display: flex; flex-direction: column; gap: 14px;
}
.tel-price-card {
  padding: 28px 24px; border-radius: 24px;
  background: var(--bg); border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--lime);
}
.tel-price-badge {
  display: inline-block; margin-bottom: 10px; padding: 4px 10px;
  border-radius: 999px; background: var(--lime);
  font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
}
.tel-price-badge--dark { background: var(--ink); color: var(--lime); }
.tel-price-card--addon {
  box-shadow: 6px 6px 0 var(--lime);
  background: linear-gradient(180deg, #f8fff4 0%, var(--bg) 100%);
}
.tel-price-addon-lead {
  margin: 0 0 12px; font-size: .82rem; color: var(--muted); line-height: 1.55;
}
.tel-price-list--compact { margin: 0 0 16px; }
.tel-price-card h3 { margin: 0 0 8px; font-size: 1.1rem; }
.tel-price-num {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700; line-height: 1; margin: 12px 0;
}
.tel-price-num small { font-size: .45em; font-weight: 600; }
.tel-price-list {
  list-style: none; margin: 16px 0 20px; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.tel-price-list li {
  font-size: .82rem; color: var(--muted);
  padding-left: 18px; position: relative;
}
.tel-price-list li::before {
  content: "✓"; position: absolute; left: 0;
  color: var(--accent-ink); font-weight: 800;
}
.tel-price-side { display: flex; flex-direction: column; gap: 14px; }
.tel-price-addons { display: flex; flex-direction: column; gap: 14px; }
.tel-guarantee {
  padding: 24px; border-radius: 20px;
  background: linear-gradient(135deg, #f0fff8, #f8fff4);
  border: 2px solid var(--accent);
}
.tel-guarantee h3 { margin: 0 0 10px; font-size: 1rem; }
.tel-guarantee p { margin: 0; font-size: .84rem; color: var(--muted); line-height: 1.55; }
.tel-price-note {
  padding: 24px; border-radius: 20px;
  background: var(--bg-soft); border: 1px solid var(--line);
}
.tel-price-note h3 { margin: 0 0 10px; font-size: 1rem; }
.tel-price-note p { margin: 0; font-size: .84rem; color: var(--muted); line-height: 1.55; }

/* FAQ */
.tel-faq-wrap {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 40px; align-items: start;
}
@media (max-width: 800px) { .tel-faq-wrap { grid-template-columns: 1fr; } }
.tel-faq-intro .tel-lead { margin-bottom: 18px; }
.tel-faq-list { display: flex; flex-direction: column; gap: 8px; }
.tel-faq-item {
  border-radius: 14px; background: var(--bg);
  border: 1px solid var(--line); overflow: hidden;
}
.tel-faq-item summary {
  padding: 16px 18px; font-weight: 800; font-size: .88rem;
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between;
}
.tel-faq-item summary::-webkit-details-marker { display: none; }
.tel-faq-item summary::after { content: "+"; font-size: 1.1rem; color: var(--muted); }
.tel-faq-item[open] summary::after { content: "−"; }
.tel-faq-item p {
  margin: 0; padding: 0 18px 16px;
  font-size: .82rem; color: var(--muted); line-height: 1.55;
}

/* Final CTA */
.tel-cta-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center;
  padding: 40px; border-radius: 28px;
  background: linear-gradient(135deg, var(--lime), var(--accent));
  color: var(--ink);
}
@media (max-width: 800px) { .tel-cta-wrap { grid-template-columns: 1fr; padding: 28px 22px; } }
.tel-cta-copy h2 {
  font-family: var(--display); font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  margin: 0 0 10px; line-height: 1.2;
}
.tel-cta-copy > p { margin: 0 0 16px; font-size: .9rem; max-width: 480px; }
.tel-cta-checks {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.tel-cta-checks li {
  font-size: .82rem; padding-left: 20px; position: relative;
}
.tel-cta-checks li::before {
  content: "✓"; position: absolute; left: 0; font-weight: 800;
}
.tel-lead-form--cta {
  padding: 22px; border-radius: 20px;
  background: rgba(255,255,255,.85); backdrop-filter: blur(8px);
  border: 2px solid var(--ink);
}

/* Sticky mobile bar */
.tel-sticky {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  display: flex; gap: 8px; padding: 10px 12px;
  background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
  border-top: 2px solid var(--ink);
  transform: translateY(100%);
  transition: transform .3s ease;
}
.tel-sticky.is-visible { transform: translateY(0); }
@media (min-width: 769px) { .tel-sticky { display: none; } }
.tel-sticky-call,
.tel-sticky-cta {
  flex: 1; padding: 12px 10px; border-radius: 999px;
  font-weight: 800; font-size: .72rem; text-align: center;
  text-decoration: none; letter-spacing: .03em; text-transform: uppercase;
}
.tel-sticky-call {
  background: var(--bg-soft); color: var(--ink);
  border: 2px solid var(--line);
}
.tel-sticky-cta {
  background: var(--lime); color: var(--ink);
  border: 2px solid var(--ink);
}

/* Footer */
.tel-footer {
  padding: 24px 0 40px;
  font-size: .78rem; color: var(--muted);
  border-top: 1px solid var(--line);
}
.tel-footer-inner {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.tel-footer a { color: var(--ink); }

/* Reveal */
.tel-reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}
.tel-reveal.is-visible { opacity: 1; transform: none; }
.tel-hero-copy, .tel-hero-form-wrap { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .tel-reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== Mobile & adaptive ===== */
html { -webkit-text-size-adjust: 100%; }
body.tel-page { overflow-x: clip; }

@media (max-width: 768px) {
  .tel-container { width: min(1160px, calc(100% - 28px)); }

  .tel-section { padding: 48px 0; }
  .tel-section--dark {
    padding: 52px 0;
    border-radius: 24px 24px 0 0;
    margin-top: 8px;
  }

  .tel-title { margin-bottom: 12px; }
  .tel-lead { margin-bottom: 22px; font-size: .94rem; }

  .tel-hero { padding: 20px 0 32px; }
  .tel-hero-grid { gap: 24px; }
  .tel-hero h1 { font-size: clamp(1.55rem, 7vw, 2rem); margin-bottom: 14px; }
  .tel-hero-lead { font-size: .94rem; margin-bottom: 14px; }
  .tel-hero-checks li { font-size: .82rem; }

  .tel-lead-card {
    padding: 22px 18px;
    border-radius: 20px;
    box-shadow: 6px 6px 0 var(--lime);
  }
  .tel-lead-card-title { margin-bottom: 14px; }

  .tel-lead-form input:not([type="checkbox"]) {
    padding: 15px 16px;
    font-size: 16px;
  }
  .tel-btn {
    padding: 16px 22px;
    font-size: .78rem;
    min-height: 48px;
  }

  .tel-trust { padding: 16px 0; }
  .tel-trust-grid { gap: 12px; }

  .tel-pain-card,
  .tel-result-card,
  .tel-cap,
  .tel-process-step {
    padding: 16px 14px;
  }

  .tel-cta-band,
  .tel-vendors-cta,
  .tel-cqr-head {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .tel-cta-band { padding: 16px; margin-top: 22px; }
  .tel-cta-band .tel-btn,
  .tel-vendors-cta .tel-btn,
  .tel-cqr-head .tel-btn,
  .tel-call-report-cta,
  .tel-cqr-cta,
  .tel-tg-side-cta {
    width: 100%;
  }

  .tel-cqr-head { align-items: stretch; margin-bottom: 20px; }
  .tel-cqr-wrap { gap: 18px; }
  .tel-cqr-demo { box-shadow: 6px 6px 0 var(--lime); }
  .tel-cqr-demo-bar { flex-direction: column; align-items: flex-start; }
  .tel-cqr-table { font-size: .68rem; min-width: 480px; }

  .tel-stats-wrap { gap: 18px; }
  .tel-stats-demo { box-shadow: 6px 6px 0 var(--accent); max-width: 100%; }
  .tel-stats-demo-bar { flex-direction: column; align-items: flex-start; }

  .tel-tg-demo { gap: 24px; }
  .tel-tg-stage {
    max-width: 100%;
    margin: 0 auto;
    padding-top: 8px;
  }
  .tel-tg-float--count {
    top: -6px;
    right: 4px;
    transform: none;
  }
  .tel-tg-chat { box-shadow: 6px 6px 0 var(--lime); height: auto; }
  .tel-tg-feed { height: 300px; }
  .tel-tg-feed-track { animation-name: tel-tg-track-m; }
  .tel-tg-side { gap: 16px; }
  .tel-tg-side-cta { margin-top: 8px; width: 100%; }

  .tel-faq-wrap { gap: 24px; }
  .tel-faq-intro .tel-btn { width: 100%; }

  .tel-price-card { padding: 22px 18px; box-shadow: 6px 6px 0 var(--lime); }
  .tel-guarantee,
  .tel-price-note { padding: 18px; }

  .tel-cta-wrap {
    gap: 24px;
    border-radius: 22px;
  }
  .tel-lead-form--cta { padding: 18px; }

  .tel-sticky {
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  }
  body.tel-page {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 480px) {
  .tel-container { width: min(1160px, calc(100% - 24px)); }

  .tel-section { padding: 40px 0; }
  .tel-section--dark { padding: 44px 0; border-radius: 20px 20px 0 0; }

  .tel-nav-inner { padding: 10px 0; }
  .tel-logo { font-size: .82rem; }

  .tel-hero-badge {
    font-size: .64rem;
    padding: 5px 10px;
    line-height: 1.35;
  }

  .tel-pain-grid,
  .tel-result-grid,
  .tel-cap-grid,
  .tel-setup-groups,
  .tel-process {
    gap: 10px;
  }

  .tel-setup-group { padding: 16px 14px; }
  #setup .tel-setup-group { box-shadow: 4px 4px 0 var(--lime); }
  .tel-usp-strong-card { padding: 18px 16px; }

  .tel-vendor-card:hover { transform: none; }

  .tel-faq-item summary {
    padding: 14px 16px;
    font-size: .82rem;
    gap: 12px;
  }
  .tel-faq-item p { padding: 0 16px 14px; font-size: .8rem; }

  .tel-footer { padding: 20px 0 calc(28px + env(safe-area-inset-bottom, 0px)); }
  .tel-footer-inner { justify-content: center; text-align: center; }

  .tel-sticky-call,
  .tel-sticky-cta {
    padding: 14px 8px;
    font-size: .68rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 360px) {
  .tel-trust-grid { grid-template-columns: 1fr; }
  .tel-hero h1 mark { display: inline; padding: 0 4px; }
}
