:root {
  --container: 1100px;
  --gap: 12px;
}

.wrap {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 14px;
  box-sizing: border-box;
}

.about-hero {
  position: relative;
  margin: 10px 0;
  padding: clamp(5px, 4vw, 5px) 0 clamp(5px, 3vw, 5px);
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-head .eyebrow {
  display: inline-block;
  padding: 5px 10px;
  margin-bottom: 10px;
  border: 2px solid var(--orange);
  color: var(--orange);
  border-radius: 5px;
  font-size: 12px;
  letter-spacing: .3px;
  font-weight: bold;
}

.about-hero h1 {
  margin: 0 0 8px;
  font-size: clamp(24px, 3.4vw, 36px);
  letter-spacing: .2px;
}

.about-hero .lead {
  margin: 0;
  color: var(--text-muted);
  max-width: 68ch;
  line-height: 1.6;
  font-size: clamp(14px, 1.8vw, 18px);
}

.hero-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.hero-kpis li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 5px;
  background: var(--card);
  border: 2px solid var(--border);
  color: var(--text-light);
  font-size: 13.5px;
  letter-spacing: .2px;
}

.kpi-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--text-light);
}

@media (max-width: 900px) {
  .hero-kpis {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .hero-kpis {
    grid-template-columns: 1fr;
  }
}

.about-pillars {
  margin-top: 20px;
}

.about-pillars .grid {
  display: grid;
  gap: var(--gap);
  margin-top: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

@media (max-width: 1024px) {
  .about-pillars .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .about-pillars .grid {
    grid-template-columns: 1fr;
  }
}

.about-pillars .card {
  position: relative;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 5px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: transform .12s ease, border-color .14s ease, box-shadow .14s ease;
  isolation: isolate;
}

.about-pillars .card:hover {
  transform: translateY(-2px);
}


.about-pillars .card h3 {
  margin: 2px 0 2px;
  font-size: 16px;
  letter-spacing: .2px;
}

.about-pillars .card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.58;
  font-size: 13.5px;
}

.about-flow {
  margin: 22px 0 18px;
}

.about-flow h2 {
  margin: 0 0 12px;
  font-size: clamp(18px, 2.6vw, 22px);
  letter-spacing: .2px;
}

.about-flow .steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-flow .steps>li {
  list-style: none;
}

.about-flow .steps>li::marker {
  content: none;
}

.about-flow .steps,
.about-flow .steps * {
  hyphens: none;
}

@media (max-width: 1024px) {
  .about-flow .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .about-flow .steps {
    grid-template-columns: 1fr;
  }
}

.step-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  row-gap: 5px;
  padding: 16px 14px;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 5px;
}

.step-badge {
  width: 30px;
  height: 30px;
  font-size: 14px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--bg-dark);
  background: var(--text-muted);
}

.step-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.step-title {
  font-weight: bold;
  letter-spacing: .2px;
  font-size: 14px;
  line-height: 1.3;
}

.step-desc {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.58;
  overflow: hidden;
}

/* CTA centered – Telegram premium button */
.about-flow .cta {
  margin: 30px 0 8px;
  display: flex;
  justify-content: center;
}

.btn-telegram {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 8px;
  border-radius: 5px;
  color: var(--bg-dark);
  text-decoration: none;
  font-weight: bold;
  font-size: 13px;
  border: 0;
  background:  #239ddf ;
  transition: transform .06s ease, filter .12s ease, box-shadow .12s ease;
}

.about-flow .disclaimer {
  color: var(--text-muted);
  font-size: 12px;
  margin: 8px 0 0;
  text-align: center;
}

.about-faq {
  margin: 26px 0 14px;
}

.about-faq h2 {
  margin: 0 0 14px;
  font-size: clamp(18px, 2.6vw, 22px);
  letter-spacing: .2px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq {
  border: 2px solid var(--border);
  border-radius: 5px;
  background: var(--card);
  overflow: hidden;
}

.faq>summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: .2px;
  position: relative;
}

.faq>summary::-webkit-details-marker {
  display: none;
}

.faq .q {
  flex: 1 1 auto;
}

.faq .chev {
  width: 8px;
  height: 8px;
  border: 2px solid color-mix(in srgb, var(--text), transparent 30%);
  border-left: 0;
  border-top: 0;
  transform: rotate(45deg);
  transition: transform .15s ease, border-color .15s ease;
  opacity: .9;
}

.faq:hover .chev {
  border-color: color-mix(in srgb, var(--text), transparent 10%);
}

.faq[open] .chev {
  transform: rotate(225deg);
}

.faq .a {
  padding: 10px 16px 14px 16px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
  border-top: 1px solid color-mix(in srgb, var(--border), white 10%);
}



/* Responsiveness */
@media (max-width: 600px) {
  .step-badge {
    width: 30px;
    height: 30px;
    border-radius: 5px;
  }
}

/* Motion accessibility */
@media (prefers-reduced-motion: reduce) {

  .about-pillars .card,
  .step-card,
  .btn-telegram,
  .faq .chev {
    transition: none;
  }
}
