/* =========================
   ABOUT (LIGHT / BLUE CARDS)
   - hedef: beyaz zemin + açık mavi border + soft shadow
   - HTML değişmeden çalışır (mevcut class'lar korunuyor)
========================= */

:root{

  /* ✅ CONTACT mantığı: sayfa zemin değişkenleri */
  --page:#1ce16e;        /* çok açık mavi premium zemin */
  --page-2:#00eff3;      /* beyaza yumuşak geçiş */

  /* Base */
  --bg:#5bd987;
  --ink:#22d6a3;         /* slate-900 */
  --muted:#2ed6b4;       /* slate-600 */

  /* Brand blues (soft) */
  --blue-900:#0b1b3a;
  --blue-700:#1d4ed8;
  --blue-600:#2563eb;
  --cyan-500:#06b6d4;

  /* Surfaces */
  --surface:#ffffff;
  --surface-2:#f8fafc;   /* slate-50 */
  --surface-3:#f1f5f9;   /* slate-100 */

  /* Borders / shadows */
  --line:#dbeafe;        /* blue-100 */
  --line-strong:#bfdbfe; /* blue-200 */
  --shadow: 0 18px 45px rgba(2, 6, 23, .10);
  --shadow-soft: 0 10px 28px rgba(2, 6, 23, .08);

  --r-lg: 24px;
  --r-md: 18px;

  /* ✅ OKUNURLUK TUNING */
  --text-strong:#0b1220;
  --text-mid:#0f172a;
  --text-soft:#334155;
}

/* ✅ ONLY PAGE BACKGROUND (contact.css gibi) */
body{ background: var(--page) !important; }

/* Sections -> premium light stage */
.about-hero-neo,
.about-values-neo,
.about-stats-neo,
.about-cta-neo{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 12% 18%, rgba(70, 114, 211, 0.874), transparent 62%),
    radial-gradient(900px 420px at 82% 78%, rgba(6, 181, 212, 0.601), transparent 62%),
    linear-gradient(180deg, var(--page), var(--page-2));
  color: var(--ink);
}

.about-hero-neo{ padding: 70px 0 60px; }
.about-values-neo{ padding: 70px 0; }
.about-stats-neo{ padding: 70px 0; }
.about-cta-neo{ padding: 80px 0; }

/* -------------------------
   HERO TOPLINE
------------------------- */
.about-hero-topline{
  text-align: center;
  font-size: 30px;
  font-weight: 900;
  gap: 20px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 60px;

  background: linear-gradient(90deg, #032ea3, hsl(198, 86%, 47%), #06c9ec);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  text-shadow:
    0 6px 18px rgba(5, 236, 224, 0.985),
    0 2px 6px rgba(51, 6, 4, 0.414);

  background-size: 300% auto;
  animation: heroGradient 2s linear infinite;
}

@keyframes heroGradient {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* -------------------------
   HERO GRID
------------------------- */
.about-hero-grid{
  display:grid;
  grid-template-columns: 420px 1fr;
  gap: 34px;
  align-items: start;
}

/* left photo (light frame) */
.about-hero-photo{
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 14px;
}
.about-hero-photo img{
  width:100%;
  height: 520px;
  object-fit: cover;
  border-radius: calc(var(--r-lg) - 10px);
  display:block;
}

/* right stacked cards */
.about-hero-cards{
  display:flex;
  flex-direction: column;
  gap: 26px;
}

/* -------------------------
   NEO CARD BASE
------------------------- */
.neo-card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
  padding: 28px 30px;
}
.neo-card-lg{ padding: 30px 32px; }
.neo-card-xl{ padding: 28px 30px; }

.neo-card-title{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 16px;
}
.neo-card-title h2,
.neo-card-title h3{
  margin:0;
  font-weight: 900;
  letter-spacing: .01em;
  color: var(--blue-900);
}
.neo-card-title h2{ font-size: 28px; }
.neo-card-title h3{ font-size: 24px; }

/* icon badge */
.neo-ico{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: linear-gradient(145deg, rgba(37,99,235,.18), rgba(6,182,212,.14));
  border: 1px solid var(--line-strong);
  color: var(--blue-700);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(37,99,235,.14);
}
.neo-ico-quote{ font-size: 18px; }

/* story text */
.neo-text p{
  margin: 0 0 14px;
  color: var(--text-mid);
  line-height: 1.75;
  font-size: 18px;
  font-weight: 500;
}
.neo-text p:last-child{ margin-bottom: 0; }

/* -------------------------
   SKILLS PILLS (base)
------------------------- */
.pill-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 10px;
}

.pill{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(2,6,23,.06);
  color: var(--blue-900);
  font-weight: 800;
}
.pill:hover{
  border-color: var(--line-strong);
  transform: translateY(-1px);
  transition: .18s ease;
}

.pill-ico{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: linear-gradient(145deg, rgba(37,99,235,.22), rgba(6,182,212,.16));
  border: 1px solid var(--line-strong);
  color: var(--blue-700);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(37,99,235,.12);
}

/* -------------------------
   VALUES SECTION
------------------------- */
.values-grid{
  display:grid;
  grid-template-columns: 420px 1fr;
  gap: 36px;
  align-items: start;
}

.values-photos{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.values-photos .vimg{
  width:100%;
  height: 210px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.neo-wrap{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.neo-wrap-head{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 18px;
}
.neo-wrap-head h2{
  margin:0;
  font-size: 30px;
  font-weight: 950;
  color: var(--blue-900);
}

.value-cards{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.value-card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 18px;
  text-align:center;
  box-shadow: 0 12px 28px rgba(2,6,23,.07);
}

.value-ico{
  width: 46px;
  height: 46px;
  margin: 0 auto 12px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: linear-gradient(145deg, rgba(37,99,235,.22), rgba(6,182,212,.16));
  border: 1px solid var(--line-strong);
  color: var(--blue-700);
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 10px 24px rgba(37,99,235,.12);
}

.value-card h4{
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 900;
  color: var(--blue-900);
}
.value-card p{
  margin:0;
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 600;
}

/* -------------------------
   STATS SECTION
------------------------- */
.stats-layout{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  align-items: center;
}

.stats-text p{
  color: var(--text-mid);
  line-height: 1.9;
  font-size: 20px;
  margin: 0 0 18px;
  font-weight: 500;
}

.brandline{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 18px;
}
.brandlogo{
  width: 85px;
  height: 85px;
  object-fit: contain;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 6px;
  box-shadow: 0 10px 24px rgba(2,6,23,.06);
}
.brandname{
  font-size: 22px;
  font-weight: 950;
  letter-spacing: .02em;
  color: rgb(25, 113, 237);
}

.stats-cards{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.stat-neo{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 34px 26px;
  text-align:center;
  box-shadow: var(--shadow-soft);
}
.stat-number{
  font-size: 52px;
  font-weight: 950;
  letter-spacing: .02em;
  line-height: 1;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}
.stat-label{
  font-size: 15px;
  color: var(--text-soft);
  font-weight: 800;
}

/* -------------------------
   CTA
------------------------- */
.about-cta-neo{
  text-align:center;
  border-top: 1px solid var(--line);
}

.about-cta-neo h2{
  margin: 0 0 14px;
  font-size: 54px;
  font-weight: 950;
  letter-spacing: .01em;
  color: var(--blue-900);
}

.about-cta-neo p{
  margin: 0 0 26px;
  font-size: 18px;
  color: var(--text-soft);
  font-weight: 700;
}

.cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-500));
  color: #ffffff;
  font-weight: 900;
  text-decoration:none;
  box-shadow: 0 18px 45px rgba(37,99,235,.18);
  transition: .18s ease;
}
.cta-btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.02);
}

/* -------------------------
   RESPONSIVE
------------------------- */
@media (max-width: 1100px){
  .about-hero-grid,
  .values-grid,
  .stats-layout{
    grid-template-columns: 1fr;
  }
  .about-hero-photo img{ height: 460px; }
}

@media (max-width: 640px){
  /* mobilde zemin bandı daha soft görünsün */
  :root{
    --page:#f8fbff;
    --page-2:#ffffff;
  }

  .about-hero-neo{ padding: 52px 0 46px; }
  .about-values-neo,
  .about-stats-neo{ padding: 56px 0; }

  .pill-grid,
  .value-cards,
  .stats-cards{
    grid-template-columns: 1fr;
  }

  .about-cta-neo h2{ font-size: 36px; }
  .about-hero-photo img{ height: 380px; }
}

/* =========================
   PREMIUM CARD BORDERS (BLUE ONLY)
========================= */
:root{
  --bdrA: rgba(37, 99, 235, .85);
  --bdrB: rgba(6, 182, 212, .65);
  --bdrInner: rgba(255,255,255,.55);
  --glow: rgba(37,99,235,.22);
}

.neo-card,
.pill,
.value-card,
.neo-wrap,
.stat-neo,
.about-hero-photo,
.cap-card{
  position: relative;
  border: 1px solid transparent !important;
  background-clip: padding-box;
  box-shadow: 0 10px 28px rgba(2,6,23,.08);
}

.neo-card::before,
.pill::before,
.value-card::before,
.neo-wrap::before,
.stat-neo::before,
.about-hero-photo::before,
.cap-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  padding: 1.2px;
  background: linear-gradient(135deg, var(--bdrA), var(--bdrB));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events:none;
  opacity: .55;
}

.neo-card::after,
.pill::after,
.value-card::after,
.neo-wrap::after,
.stat-neo::after,
.about-hero-photo::after,
.cap-card::after{
  content:"";
  position:absolute;
  inset: 10px 10px auto 10px;
  height: 32%;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.6), transparent);
  opacity: .16;
  pointer-events:none;
}

.neo-card:hover,
.pill:hover,
.value-card:hover,
.stat-neo:hover,
.about-hero-photo:hover,
.cap-card:hover{
  box-shadow:
    0 16px 42px rgba(2,6,23,.12),
    0 0 0 5px rgba(37,99,235,.10),
    0 18px 55px var(--glow);
  transform: translateY(-1px);
  transition: .18s ease;
}

.neo-card:hover::before,
.pill:hover::before,
.value-card:hover::before,
.neo-wrap:hover::before,
.stat-neo:hover::before,
.about-hero-photo:hover::before,
.cap-card:hover::before{
  opacity: .9;
}

/* =========================
   HERO FOUNDERS (2 PHOTO CARDS)
========================= */
.about-founders{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.founder-card{
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 14px;
  position: relative;
  overflow: hidden;
}

.founder-card img{
  width: 100%;
  aspect-ratio: 7 / 7;
  height: auto;
  object-fit: cover;
  object-position: 50% 22%;
  border-radius: calc(var(--r-lg) - 10px);
  display: block;
  box-shadow: 0 12px 30px rgba(2, 6, 23, .12);
  transform: translateZ(0);
}

@media (max-width: 1100px){
  .founder-card img{ height: auto; }
}

.founder-meta{
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: var(--surface-2);
  border: 1px solid var(--line);
}

.founder-name{
  font-weight: 950;
  color: var(--blue-900);
  letter-spacing: .01em;
}

.founder-role{
  margin-top: 2px;
  font-size: 16px;
  color: var(--text-mid);
  font-weight: 800;
}

/* =========================
   CAPABILITIES (Alt 4 Kart) - OKUNURLUK BOOST ✅
========================= */
.cap-divider{
  height: 1px;
  background: linear-gradient(90deg, rgba(37,99,235,.18), rgba(6,182,212,.18), rgba(37,99,235,.10));
  margin: 18px 0;
}

.cap-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cap-card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 14px 12px;
  box-shadow: 0 10px 24px rgba(2,6,23,.06);
  position: relative;
  overflow: hidden;
}

.cap-head{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.cap-ico{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(37,99,235,.22), rgba(6,182,212,.16));
  border: 1px solid var(--line-strong);
  box-shadow: 0 10px 22px rgba(37,99,235,.10);
  flex: 0 0 auto;
}

.cap-svg{
  width: 20px;
  height: 20px;
  fill: var(--blue-700);
}

.cap-card h4{
  margin: 0;
  font-size: 15px;
  font-weight: 950;
  color: var(--blue-900);
  letter-spacing: .01em;
}

/* ✅ Burada sönüklük bitiyor */
.cap-list{
  margin: 0;
  padding-left: 18px;
  color: var(--text-strong);
  font-size: 13.8px;
  line-height: 1.60;
  font-weight: 600;
}

.cap-list li{
  margin: 6px 0;
}

/* responsive */
@media (max-width: 640px){
  .cap-grid{ grid-template-columns: 1fr; }
}

/* =========================
   ÜST 4 KARTI ALTAKİYLE AYNI YAP
========================= */
.pill-grid--detail{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 10px;
}

.pill--detail{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 14px 12px;
  box-shadow: 0 10px 24px rgba(2,6,23,.06);
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pill--detail:hover{
  transform: translateY(-1px);
  transition: .18s ease;
  border-color: var(--line-strong);
  box-shadow: 0 14px 30px rgba(2,6,23,.08);
}

.pill--detail .pill-ico{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(37,99,235,.22), rgba(6,182,212,.16));
  border: 1px solid var(--line-strong);
  box-shadow: 0 10px 22px rgba(37,99,235,.10);
  flex: 0 0 auto;
}

.pill--detail .pill-svg{
  width: 20px;
  height: 20px;
  fill: var(--blue-700);
}

.pill--detail .pill-txt{ min-width: 0; }

.pill--detail .pill-title{
  margin: 0;
  font-size: 15px;
  font-weight: 950;
  color: var(--blue-900);
  letter-spacing: .01em;
  line-height: 1.25;
}

.pill--detail .pill-list{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--text-strong);
  font-size: 13.8px;
  line-height: 1.60;
  font-weight: 600;
}

.pill--detail .pill-list li{ margin: 6px 0; }

@media (max-width: 640px){
  .pill-grid--detail{ grid-template-columns: 1fr; }
}
