.cs--panda {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 16px 10px;
  font-family: Inter, Arial, sans-serif;
  color: #10182f;
}

.cs--panda .cs-hero { max-width: 820px; }

/* Kicker */
.cs--panda .cs-kicker{
  margin:0 0 12px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#6b7280;
}

/* Title */
.cs--panda .cs-title{
  margin:0 0 18px;
  font-size:25px;
  line-height:1.35;
  font-weight:800;
  color:#10182f;
}

/* Lead */
.cs--panda .cs-lead{
  max-width:720px;
  margin:0 0 26px;
  font-size:18px;
  line-height:1.6;
  color:#3c4257;
}

/* Tags */
.cs--panda .cs-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:18px;
}

.cs--panda .cs-tag{
  padding:8px 16px;
  font-size:14px;
  font-weight:600;
  border-radius:999px;
  background:#f1f3f6;
  color:#374151;
  white-space:nowrap;
}

.cs--panda .cs-tag--accent{
  background:linear-gradient(135deg,#1FC5A8,#4A90E2);
  color:#fff;
  padding:9px 18px;
  font-weight:700;
}

/* Actions */
.cs--panda .cs-actions{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-top:14px;
}

/* Buttons */
.cs--panda .cs-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 26px;
  font-size:15px;
  font-weight:700;
  border-radius:999px;
  text-decoration:none;
  transition:all .25s ease;
}

.cs--panda .cs-btn--primary{
  background:linear-gradient(135deg,#1FC5A8,#4A90E2);
  color:#fff;
}

.cs--panda .cs-btn--primary:hover{
  transform:translateY(-1px);
  box-shadow:0 8px 20px rgba(31,197,168,.25);
}

.cs--panda .cs-btn--ghost{
  background:transparent;
  color:#3c4257;
  border:1px solid #d1d5db;
}

.cs--panda .cs-btn--ghost:hover{ background:#f9fafb; }

/* Mobile typography */
@media (max-width: 640px) {
  .cs--panda .cs-title { font-size:22px; }
  .cs--panda .cs-lead  { font-size:16px; }
}

/* =========================
   CASE: Problem block — FINAL
========================= */
.cs-problem2{
  max-width:1180px;
  margin:64px auto 0;     
  padding:10px 16px 40px;
  font-family:Inter, Arial, sans-serif;
  color:#0f172a;
}

.cs-problem2 .cs-sec-title{
  display:flex;
  align-items:center;
  justify-content:center;   
  gap:12px;
  margin:0 0 16px;
  font-size:32px;
  font-weight:800;
  color:#1a1f36;
  letter-spacing:-0.2px;
  text-align:center;       
  flex-wrap:wrap;           
}

.cs-problem2 h2.cs-sec-title > .cs-sec-num{
  width:34px;
  height:34px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  font-weight:800;
  color:#fff;
  background:linear-gradient(135deg,#1FC5A8,#4A90E2);
  flex:0 0 auto;
}

.cs-problem2 .cs-sec-lead{
  margin:0 0 22px;
  font-size:19px;
  line-height:1.7;
  color:#475569;
  text-align:center; 
}

.cs-problem2 .cs-box{
  background:#fff;
  border:1px solid #e3e7ee;
  border-radius:14px;
  box-shadow:0 10px 26px rgba(0,0,0,.06);
  overflow:hidden;
}

.cs-problem2 .cs-box-head{
  font-weight:700;
  font-size:20px;
  color:#111;
  padding:18px 22px;
  border-bottom:1px solid #eef1f5;
  display:flex;
  align-items:center;
  gap:10px;
}

.cs-problem2 .cs-box-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:linear-gradient(135deg,#1FC5A8,#4A90E2);
  flex:0 0 auto;
}

/* LIST — HARD RESET (NO DOUBLE BULLETS) */
.cs-problem2 ul,
.cs-problem2 li{ list-style:none !important; background:none !important; }

.cs-problem2 li::marker{ content:"" !important; font-size:0 !important; }
.cs-problem2 li::after{ content:none !important; }

.cs-problem2 .cs-list{
  margin:0;
  padding:18px 22px 22px;
  display:grid;
  gap:12px;
}

.cs-problem2 .cs-list li{
  position:relative;
  margin:0 !important;
  padding-left:18px !important;
  font-size:18px;
  line-height:1.6;
  color:#4a5568;
}

.cs-problem2 .cs-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.65em;
  width:8px;
  height:8px;
  border-radius:50%;
  background:linear-gradient(135deg,#1FC5A8,#4A90E2);
}

.cs-problem2 .cs-cta-row{
  margin-top:26px;
  display:flex;
  justify-content:center;
}

.cs-problem2 .cs-cta{
  display:inline-block;
  background:linear-gradient(135deg,#1FC5A8,#4A90E2);
  color:#fff;
  padding:16px 38px;
  font-size:18px;
  font-weight:700;
  border-radius:50px;
  text-decoration:none;
  box-shadow:0 8px 22px rgba(0,0,0,.18);
  transition:background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.cs-problem2 .cs-cta:hover{
  background:linear-gradient(135deg,#17a495,#3d7dda);
  box-shadow:0 12px 28px rgba(0,0,0,.22);
  transform:scale(1.03);
}

/* Mobile typography only */
@media (max-width:768px){
  .cs-problem2 .cs-sec-title{ font-size:26px; }
  .cs-problem2 .cs-sec-lead { font-size:17px; }
  .cs-problem2 .cs-list li  { font-size:16px; }
}



/* =========================
   CASE: What we built
========================= */

.cs-built{
  max-width:1180px;
  margin:0 auto;
  padding:40px 16px 10px;
  font-family:Inter, Arial, sans-serif;
  color:#0f172a;
}

.cs-built-inner{ max-width:1180px; margin:0 auto; }

.cs-built-title{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin:0 0 14px;
  font-size:32px;
  font-weight:800;
  color:#1a1f36;
  letter-spacing:-0.2px;
  text-align:center;
  flex-wrap:wrap;
}

.cs-built-num{
  width:34px;
  height:34px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  font-weight:800;
  color:#fff;
  background:linear-gradient(135deg,#1FC5A8,#4A90E2);
}

.cs-built-lead{
  margin:0 0 22px;
  font-size:19px;
  line-height:1.7;
  color:#475569;
  text-align:center;
}

.cs-built-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:26px;
}

.cs-built-card{
  background:#fff;
  border:1px solid #eef1f5;
  border-radius:20px;
  padding:28px;
  text-align:left;
  box-shadow:0 12px 32px rgba(0,0,0,.06);
  transition:transform .25s ease, box-shadow .25s ease;
}

.cs-built-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 38px rgba(0,0,0,.10);
}

.cs-built-card h3{
  position:relative;
  padding-left:34px;
  margin:0 0 10px;
  font-size:22px;
  font-weight:700;
  color:#1a1f36;
}

.cs-built-card h3::before{ content:none; }

.cs-built-card h3::after{
  content:"🧭";
  position:absolute;
  left:0;
  top:.1em;
  font-size:18px;
  line-height:1;
}

.cs-built-grid .cs-built-card:nth-child(1) h3::after{ content:"🧭"; }
.cs-built-grid .cs-built-card:nth-child(2) h3::after{ content:"📍"; }
.cs-built-grid .cs-built-card:nth-child(3) h3::after{ content:"📊"; }
.cs-built-grid .cs-built-card:nth-child(4) h3::after{ content:"🔌"; }

.cs-built-card p{
  margin:0 0 14px;
  font-size:16px;
  line-height:1.6;
  color:#475569;
}

.cs-built-card ul{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.cs-built-card li{
  position:relative;
  padding-left:18px;
  font-size:16px;
  line-height:1.55;
  color:#4a5568;
}

.cs-built-card li::before{
  content:"";
  position:absolute;
  left:0;
  top:.62em;
  width:8px;
  height:8px;
  border-radius:50%;
  background:linear-gradient(135deg,#1FC5A8,#4A90E2);
}

@media (max-width:900px){
  .cs-built-grid{ grid-template-columns:1fr; }
  .cs-built-title{ font-size:28px; }
}

@media (max-width:767px){
  .cs-built-card h3{ padding-left:0; padding-top:26px; }
  .cs-built-card h3::after{ left:0; top:0; font-size:16px; }
}

/* =========================
   CASE: Results
========================= */

.cs-results{
  max-width:1180px;
  margin:24px auto 0;
  padding:46px 16px 18px;
  font-family:Inter, Arial, sans-serif;
  color:#0f172a;
}

.cs-results-title{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin:0 0 18px;
  font-size:32px;
  font-weight:800;
  color:#1a1f36;
  letter-spacing:-0.2px;
  text-align:center;
  flex-wrap:wrap;
}

.cs-results-num{
  width:34px;
  height:34px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  font-weight:800;
  color:#fff;
  background:linear-gradient(135deg,#1FC5A8,#4A90E2);
  flex:0 0 auto;
}

.cs-results-panel{
  position:relative;
  width:100%;
  margin:0 auto;
  padding:26px;
  border-radius:26px;
  overflow:hidden;
  background:rgba(255,255,255,0.74);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border:1px solid rgba(226,232,240,0.9);
  box-shadow:0 16px 46px rgba(15,23,42,0.10), 0 2px 10px rgba(15,23,42,0.05);
}

.cs-results-panel::before{
  content:"";
  position:absolute;
  right:-60px;
  top:-60px;
  width:240px;
  height:240px;
  border-radius:999px;
  background:radial-gradient(circle at 35% 35%, rgba(31,197,168,0.22), rgba(74,144,226,0.12) 45%, rgba(31,197,168,0.04) 70%, transparent 78%);
  filter:blur(18px);
  opacity:.85;
  pointer-events:none;
}

.cs-kpi{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin:0 0 18px;
  padding:18px 20px;
  border-radius:18px;
  background:linear-gradient(135deg, rgba(31,197,168,0.14), rgba(74,144,226,0.14));
  border:1px solid rgba(226,232,240,0.9);
}

.cs-kpi-left{ display:grid; gap:6px; }

.cs-kpi-badge{
  width:fit-content;
  padding:6px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:#0f172a;
  background:rgba(255,255,255,0.82);
}

.cs-kpi-value{
  font-size:44px;
  font-weight:900;
  line-height:1;
  background:linear-gradient(135deg,#1FC5A8,#4A90E2);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.cs-kpi-text{
  font-size:18px;
  font-weight:700;
  color:#1f2937;
}

.cs-kpi-note{
  max-width:320px;
  font-size:16px;
  line-height:1.55;
  color:#475569;
}

.cs-results-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
  margin:0;
  padding:0;
}

.cs-r-card{
  position:relative;
  padding:18px 18px 18px 46px;
  border-radius:18px;
  background:rgba(255,255,255,0.88);
  border:1px solid rgba(226,232,240,0.95);
  box-shadow:0 10px 22px rgba(15,23,42,0.06);
  transition:transform .22s ease, box-shadow .22s ease;
}

.cs-r-card:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 34px rgba(15,23,42,0.10);
}

.cs-r-card::before{
  content:"";
  position:absolute;
  left:18px;
  top:20px;
  width:10px;
  height:10px;
  border-radius:999px;
  background:linear-gradient(135deg,#1FC5A8,#4A90E2);
  box-shadow:0 10px 20px rgba(31,197,168,0.14);
}

.cs-r-card h3{
  margin:0 0 8px;
  font-size:18px;
  font-weight:800;
  color:#1a1f36;
  letter-spacing:-0.1px;
}

.cs-r-card p{
  margin:0;
  max-width:62ch;
  font-size:16px;
  line-height:1.6;
  color:#475569;
}

.cs-results-cta{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top:20px;
}

.cs-results-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 26px;
  border-radius:999px;
  font-size:16px;
  font-weight:800;
  text-decoration:none;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.cs-results-btn--primary{
  background:linear-gradient(135deg,#1FC5A8,#4A90E2);
  color:#fff !important;
  box-shadow:0 10px 26px rgba(15,23,42,0.18);
}

.cs-results-btn--primary:hover{
  background:linear-gradient(135deg,#17a495,#3d7dda);
  transform:scale(1.03);
  box-shadow:0 14px 32px rgba(15,23,42,0.22);
}

.cs-results-btn--ghost{
  background:rgba(255,255,255,0.92);
  color:#0f172a;
  border:1px solid #d1d5db;
  box-shadow:0 8px 18px rgba(15,23,42,0.08);
}

.cs-results-btn--ghost:hover{
  background:#fff;
  transform:translateY(-1px);
  box-shadow:0 12px 24px rgba(15,23,42,0.10);
}

@media (max-width:900px){
  .cs-results-panel{ padding:20px; }
  .cs-results-grid{ grid-template-columns:1fr; }
  .cs-kpi{ flex-direction:column; align-items:flex-start; }
  .cs-kpi-note{ max-width:100%; }
}

@media (max-width:768px){
  .cs-results-title{ font-size:26px; }
  .cs-kpi-value{ font-size:38px; }
}

/* =========================
   Proof & next step
========================= */

.cs-proof{
  max-width:1180px;
  margin:0 auto;
  padding:56px 16px 64px;
  font-family:Inter, Arial, sans-serif;
  color:#0f172a;
}

.cs-proof-inner{ max-width:1180px; margin:0 auto; }

.cs-proof ul,
.cs-proof ol{
  list-style:none !important;
  margin:0 !important;
  padding:0 !important;
}

.cs-proof li::marker{ content:"" !important; }

.cs-proof blockquote{ quotes:none !important; }
.cs-proof blockquote::before,
.cs-proof blockquote::after{ content:none !important; }

.cs-proof-title{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin:0 0 22px;
  font-size:32px;
  font-weight:800;
  letter-spacing:-0.2px;
  color:#1a1f36;
  text-align:center;
  flex-wrap:wrap;
}

.cs-proof-num{
  width:34px;
  height:34px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:16px;
  font-weight:800;
  background:linear-gradient(135deg,#1FC5A8,#4A90E2);
}

.cs-proof-stack{ display:grid; gap:18px; }

.cs-proof-today{
  position:relative;
  padding:26px 28px;
  border-radius:22px;
  background:linear-gradient(135deg, rgba(31,197,168,0.12), rgba(74,144,226,0.12));
  border:1px solid rgba(226,232,240,0.9);
  overflow:hidden;
}

.cs-proof-today::after{
  content:"";
  position:absolute;
  right:-70px;
  top:-70px;
  width:240px;
  height:240px;
  border-radius:999px;
  background:radial-gradient(circle at 35% 35%, rgba(31,197,168,0.18), rgba(74,144,226,0.10) 45%, rgba(31,197,168,0.03) 70%, transparent 78%);
  filter:blur(18px);
  opacity:.9;
  pointer-events:none;
}

.cs-proof-chip{
  position:relative;
  z-index:1;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  background:rgba(255,255,255,0.85);
  border:1px solid rgba(226,232,240,0.9);
  color:#0f172a;
}

.cs-proof-today h3{
  position:relative;
  z-index:1;
  margin:12px 0 10px;
  font-size:20px;
  font-weight:800;
  letter-spacing:-0.2px;
  color:#1a1f36;
}

.cs-proof-lead{
  position:relative;
  z-index:1;
  margin:0;
  max-width:86ch;
  font-size:16px;
  line-height:1.65;
  color:#334155;
}

.cs-proof-list{
  position:relative;
  z-index:1;
  margin:14px 0 0;
  padding:0 !important;
  list-style:none !important;
  display:grid;
  gap:8px;
}

.cs-proof-list li{
  position:relative;
  padding-left:18px;
  font-size:15.5px;
  line-height:1.6;
  color:#334155;
}

.cs-proof-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.62em;
  width:8px;
  height:8px;
  border-radius:50%;
  background:linear-gradient(135deg,#1FC5A8,#4A90E2);
}

.cs-proof-quote{
  position:relative;
  padding:26px 28px;
  border-radius:22px;
  background:rgba(255,255,255,0.92);
  border:1px solid rgba(226,232,240,0.95);
  box-shadow:0 14px 34px rgba(15,23,42,0.08);
  overflow:hidden;
}

.cs-proof-quote::before{ content:none !important; }

.cs-proof-quote::after{
  content:"";
  position:absolute;
  left:-90px;
  bottom:-90px;
  width:260px;
  height:260px;
  border-radius:999px;
  background:radial-gradient(circle at 35% 35%, rgba(31,197,168,0.18), rgba(74,144,226,0.10) 45%, rgba(31,197,168,0.03) 70%, transparent 78%);
  filter:blur(18px);
  opacity:.9;
  pointer-events:none;
  z-index:0;
}

.cs-quote-mark{
  position:absolute;
  top:8px;
  left:18px;
  font-size:56px;
  font-weight:900;
  line-height:1;
  color:rgba(31,197,168,0.20);
  z-index:1;
}

.cs-proof-quote blockquote,
.cs-quote-meta{ position:relative; z-index:1; }

.cs-proof-quote blockquote{
  margin:0 !important;
  padding-left:28px;
  max-width:90ch;
  font-size:16.5px;
  line-height:1.7;
  font-weight:600;
  letter-spacing:-0.1px;
  color:#111827;
}

.cs-proof-quote blockquote p{ margin:0 !important; }

.cs-quote-meta{
  margin-top:14px;
  padding-left:28px;
  font-size:14.5px;
  line-height:1.55;
  color:#475569;
}

.cs-proof-cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:20px 22px;
  border-radius:22px;
  background:rgba(255,255,255,0.92);
  border:1px solid rgba(226,232,240,0.95);
  box-shadow:0 12px 28px rgba(15,23,42,0.06);
}

.cs-proof-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 28px;
  border-radius:999px;
  background:linear-gradient(135deg,#1FC5A8,#4A90E2);
  color:#fff !important;
  font-weight:800;
  font-size:16px;
  text-decoration:none;
  box-shadow:0 10px 26px rgba(15,23,42,0.18);
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space:nowrap;
}

.cs-proof-btn:hover{
  background:linear-gradient(135deg,#17a495,#3d7dda);
  transform:translateY(-1px);
  box-shadow:0 14px 32px rgba(15,23,42,0.22);
}

.cs-proof-cta-note{
  margin:0;
  max-width:56ch;
  font-size:15.5px;
  line-height:1.6;
  color:#475569;
}

/* =========================
   PROOF — MOBILE ADAPTATION (add to the end)
========================= */

/* 1024 ↓ : чуть плотнее и без “вылетов” декоративных кругов */
@media (max-width:1024px){
  .cs-proof{ padding:44px 16px 52px; }
  .cs-proof-inner{ max-width: 820px; } /* если хочешь как в других блоках */

  .cs-proof-today,
  .cs-proof-quote{ border-radius:20px; }

  .cs-proof-today::after{
    right:-120px;
    top:-120px;
    width:260px;
    height:260px;
    opacity:.75;
  }
  .cs-proof-quote::after{
    left:-140px;
    bottom:-140px;
    width:300px;
    height:300px;
    opacity:.75;
  }
}

/* 768 ↓ : заголовки, паддинги, quote/cta в один столбец */
@media (max-width:768px){
  .cs-proof{ padding:36px 14px 44px; }

  .cs-proof-title{
    font-size:24px;
    gap:10px;
    margin-bottom:18px;
  }
  .cs-proof-num{
    width:30px;
    height:30px;
    font-size:14px;
  }

  .cs-proof-stack{ gap:14px; }

  .cs-proof-today,
  .cs-proof-quote{ padding:18px 16px; border-radius:18px; }

  .cs-proof-chip{ font-size:11px; padding:6px 10px; }

  .cs-proof-today h3{
    font-size:18px;
    line-height:1.25;
    margin:10px 0 8px;
  }
  .cs-proof-lead{ font-size:15px; line-height:1.6; }
  .cs-proof-list{ gap:7px; margin-top:12px; }
  .cs-proof-list li{ font-size:14.8px; }

  /* quote */
  .cs-quote-mark{
    left:14px;
    top:6px;
    font-size:44px;
  }
  .cs-proof-quote blockquote{
    padding-left:20px;        /* меньше отступ */
    font-size:15.5px;
    line-height:1.65;
  }
  .cs-quote-meta{
    padding-left:20px;
    font-size:13.8px;
  }

  /* CTA -> колонкой */
  .cs-proof-cta{
    padding:16px;
    border-radius:18px;
    flex-direction:column;
    align-items:stretch;
    gap:12px;
  }
  .cs-proof-btn{
    width:100%;
    justify-content:center;
    padding:14px 18px;
    white-space:normal;       /* чтобы текст мог переноситься */
    text-align:center;
  }
  .cs-proof-cta-note{
    max-width:100%;
    font-size:14.8px;
  }

  /* декоративные круги — тише */
  .cs-proof-today::after,
  .cs-proof-quote::after{
    filter:blur(16px);
    opacity:.55;
  }
}

/* 420 ↓ : максимально компактно, без странных переполнений */
@media (max-width:420px){
  .cs-proof{ padding:32px 12px 40px; }

  .cs-proof-title{ font-size:22px; }
  .cs-proof-today,
  .cs-proof-quote{ padding:16px 14px; }

  .cs-proof-today h3{ font-size:17px; }

  .cs-proof-quote blockquote{
    padding-left:16px;
    font-size:15px;
  }
  .cs-quote-mark{ font-size:40px; }

  /* круги можно почти убрать */
  .cs-proof-today::after,
  .cs-proof-quote::after{ opacity:.35; }
}
