/* =========================
   ABOUT (CLEAN - new design)
   Not: site.css içindeki eski About blokları kaldırıldı.
   ========================= */

.about-hero{
  margin-top:6px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:24px;
  background:linear-gradient(180deg,#ffffff,#fafbff);
  box-shadow:0 18px 60px rgba(15,23,42,.08);
  overflow:hidden;
}
.about-hero-inner{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:18px;
  padding:22px;
  align-items:start;
}
.about-chip{
  display:inline-flex;align-items:center;
  padding:7px 12px;border-radius:999px;
  border:1px solid rgba(15,23,42,.10);
  background:rgba(15,23,42,.03);
  font-weight:950;margin-bottom:10px;
}
.about-h1{
  margin:0 0 10px;
  font-weight:980;
  letter-spacing:-.02em;
  line-height:1.1;
  font-size:clamp(1.6rem, 1.2rem + 1.4vw, 2.6rem);
}
.about-lead{
  margin:0 0 14px;
  color:rgba(15,23,42,.72);
  font-weight:650;
  line-height:1.65;
  max-width:760px;
}
.about-hero-actions{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:12px;}
.about-badges{display:flex;flex-wrap:wrap;gap:8px;}
.about-badge{
  font-weight:900;font-size:.9rem;
  padding:8px 10px;border-radius:12px;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
}

/* Right card */
.about-hero-card{
  border-radius:22px;
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  box-shadow:0 18px 60px rgba(15,23,42,.10);
  padding:16px;
}
.about-hero-card-top{display:flex;gap:12px;align-items:center;margin-bottom:12px;}
.about-hero-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgb(251 191 36 / 0%), rgba(37, 99, 235, .25));
    box-shadow: 0 14px 34px rgba(251,191,36,.22);
}
.about-hero-title{font-weight:980;}
.about-hero-sub{color:rgba(15,23,42,.62);font-weight:650;font-size:.95rem;}

.about-hero-lines{display:grid;gap:8px;margin:10px 0 14px;}
.about-line{display:flex;gap:10px;align-items:center;color:rgba(15,23,42,.75);font-weight:700;}
.about-line span{
  width:10px;height:10px;border-radius:999px;
  background:rgba(37,99,235,.25);
  box-shadow:0 0 0 4px rgba(37,99,235,.10);
}

.about-hero-cta{
  display:block;text-align:center;
  padding:12px 14px;border-radius:14px;
  text-decoration:none;
  font-weight:950;
  background:rgba(37,99,235,.06);
  border:1px solid rgba(37,99,235,.16);
  color:#0f172a;
}
.about-hero-cta:hover{background:rgba(37,99,235,.09);}

.about-section{padding:18px 0 6px;}
.about-h2{margin:0 0 6px;font-weight:980;letter-spacing:-.02em;font-size:1.55rem;}
.about-muted{
  margin:0 0 14px;
  color:rgba(15,23,42,.68);
  font-weight:650;
  line-height:1.6;
  max-width:880px;
}
.about-grid{display:grid;grid-template-columns:repeat(3, minmax(0,1fr));gap:14px;}
.about-card2{
  background:#fff;border:1px solid rgba(15,23,42,.10);
  border-radius:20px;padding:16px;
  box-shadow:0 12px 34px rgba(15,23,42,.06);
}
.about-card2-icon{
  width:42px;height:42px;border-radius:14px;
  background:linear-gradient(135deg,rgba(37,99,235,.14),rgba(251,191,36,.28));
  margin-bottom:10px;
}
.about-card2 h3{margin:0 0 6px;font-weight:980;}
.about-card2 p{margin:0;color:rgba(15,23,42,.72);line-height:1.55;font-weight:650;}

.about-cta{
  margin-top:16px;border-radius:24px;
  border:1px solid rgba(15,23,42,.08);
  background:white;
  padding:18px;
  box-shadow:0 18px 60px rgba(15,23,42,.08);
}
.about-cta-inner{display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap;}

.about-stats{
  margin-top:12px;
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:10px;
}
.about-stat{
  background:rgba(255,255,255,.86);
  border:1px solid rgba(15,23,42,.08);
  border-radius:16px;
  padding:12px;
  display:flex;align-items:center;gap:10px;
}
.about-stat-num{
  width:34px;height:34px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  font-weight:980;
  background:rgba(251,191,36,.32);
}
.about-stat-text{font-weight:850;color:rgba(15,23,42,.78);}

/* Responsive */
@media (max-width:992px){
  .about-hero-inner{grid-template-columns:1fr;}
  .about-grid{grid-template-columns:1fr;}
  .about-stats{grid-template-columns:repeat(2, minmax(0,1fr));}
}
@media (max-width:640px){
  .about-hero-inner{padding:16px;}
  .about-cta{padding:14px;}
  .about-stats{grid-template-columns:1fr;}
}

/* ---- Fix: btn-tt-warning override only on About page ---- */
.about .btn-tt-warning,
.about-hero .btn-tt-warning{
  background:rgba(255,255,255,.14);
  color:#111827;
  border-color:rgba(0,0,0,.08);
  box-shadow:0 10px 26px rgba(15,23,42,.10);
}
.about .btn-tt-warning:hover,
.about-hero .btn-tt-warning:hover{
  box-shadow:0 16px 36px rgba(251,191,36,.30);
  filter:brightness(1.02);
}
