﻿/* HAKKIMIZDA SAYFA ÖZEL STYLING */
.about-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 42px;
  padding: 140px 48px 80px;
  position: relative;
  z-index: 2;
}

.about-content {
  max-width: 640px;
  position: relative;
  z-index: 2;
}

.about-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.95;
  margin: 18px 0 28px;
  letter-spacing: -1.5px;
  background: linear-gradient(120deg, #ffffff, #00e5ff 45%, #ff6ec7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(var(--text-rgb, 255,255,255), 0.78);
  max-width: 620px;
}

.about-box {
  margin-top: 34px;
  background: var(--card-surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px 30px;
  box-shadow: 0 24px 80px rgba(123,47,255,0.08);
  position: relative;
  overflow: hidden;
}

.about-box::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  top: -60px;
  right: -60px;
  background: radial-gradient(circle, rgba(255,110,199,0.16), transparent 55%);
}

.box-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 0.78rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #00e5ff;
}

.about-card-panel {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-card {
  width: 100%;
  max-width: 520px;
  background: var(--card-surface);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 40px 38px;
  box-shadow: 0 32px 90px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), transparent 35%);
  pointer-events: none;
}

.chip {
  position: absolute;
  width: 92px;
  height: 92px;
  border-radius: 26px;
  filter: blur(10px);
  opacity: 0.65;
}

.chip-left {
  top: -25px;
  left: -22px;
  background: rgba(255,110,199,0.35);
}

.chip-right {
  bottom: -28px;
  right: -28px;
  background: rgba(0,229,255,0.25);
}

.about-card-title {
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  line-height: 1.2;
  margin-bottom: 16px;
  z-index: 1;
}

.about-card-copy {
  position: relative;
  z-index: 1;
  color: rgba(var(--text-rgb, 255,255,255), 0.72);
  line-height: 1.8;
  font-size: 0.98rem;
}

.about-flare {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.flare-dot {
  position: absolute;
  border-radius: 50%;
  opacity: 0.35;
}

.dot-1 { width: 90px; height: 90px; top: 24px; right: 30px; background: rgba(123,47,255,0.24); }
.dot-2 { width: 58px; height: 58px; bottom: 88px; left: 32px; background: rgba(0,229,255,0.3); }
.dot-3 { width: 48px; height: 48px; top: 120px; left: 24px; background: rgba(255,110,199,0.3); }

.flare-shape {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 42% 58% 48% 52% / 55% 45% 55% 45%;
  background: radial-gradient(circle at 40% 40%, rgba(255,255,255,0.08), transparent 60%);
  top: 100px;
  right: -80px;
  transform: rotate(18deg);
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.about-actions .btn {
  min-width: 170px;
}

.about-features .section {
  padding-top: 60px;
}

@media (max-width: 900px) {
  .about-hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
  }

  .about-card-panel {
    min-height: auto;
    margin-top: 40px;
  }

  .about-card {
    padding: 32px;
  }

  .about-actions {
    justify-content: flex-start;
  }
}
