/* Hakkımızda – açık tema, sektörel */
.about-hero {
  position: relative;
  padding: calc(var(--header-height, 72px) + 2.75rem) 0 3rem;
  overflow: hidden;
  color: var(--color-navy-deep, #0f1b2d);
  background:
    radial-gradient(800px 360px at 90% 0%, rgba(31,111,235,.12), transparent 55%),
    radial-gradient(640px 300px at 5% 90%, rgba(0,194,168,.1), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(31,111,235,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,111,235,.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 20%, transparent 75%);
}
.about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.about-kicker {
  display: inline-flex;
  margin: 0 0 .85rem;
  padding: .35rem .8rem;
  border-radius: 999px;
  border: 1px solid rgba(0,194,168,.25);
  background: rgba(0,194,168,.08);
  color: #0f766e;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.about-hero h1 {
  margin: 0 0 .75rem;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--color-navy-deep, #0f1b2d);
}
.about-lead {
  margin: 0 0 1.5rem;
  max-width: 36rem;
  color: var(--color-gray-600, #5b6b82);
  font-size: 1.08rem;
}
.about-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  max-width: 420px;
}
.about-stat {
  background: #fff;
  border: 1px solid rgba(15,27,45,.06);
  border-radius: 16px;
  padding: .85rem .9rem;
  box-shadow: 0 8px 24px rgba(15,27,45,.04);
}
.about-stat strong {
  display: block;
  font-family: var(--font-display, Sora, sans-serif);
  font-size: 1.15rem;
  color: var(--color-navy-deep, #0f1b2d);
}
.about-stat span {
  color: var(--color-gray-600, #5b6b82);
  font-size: .78rem;
}

.about-story { padding-top: 1rem; }
.about-story-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .about-story-grid { grid-template-columns: 1fr; }
  .about-hero-stats { max-width: none; }
}
.about-story-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
}
.about-story-copy p {
  color: var(--color-gray-600, #5b6b82);
  margin: 0 0 1rem;
  line-height: 1.7;
}
.about-story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.25rem;
}

.about-story-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15,27,45,.06);
  border-radius: 22px;
  padding: 1.35rem 1.25rem;
  box-shadow: 0 18px 48px rgba(15,27,45,.07);
}
.about-card-glow {
  position: absolute;
  width: 180px; height: 180px;
  right: -40px; top: -50px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31,111,235,.16), transparent 70%);
  pointer-events: none;
}
.about-story-card h3 {
  margin: 0 0 1rem;
  position: relative;
}
.about-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .85rem;
  position: relative;
}
.about-points li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}
.point-dot {
  width: 10px; height: 10px; margin-top: .4rem;
  border-radius: 50%;
  background: #1f6feb;
  box-shadow: 0 0 0 4px rgba(31,111,235,.15);
  flex-shrink: 0;
}
.point-dot.teal {
  background: #00c2a8;
  box-shadow: 0 0 0 4px rgba(0,194,168,.15);
}
.about-points strong {
  display: block;
  color: var(--color-navy-deep, #0f1b2d);
  font-size: .95rem;
}
.about-points small {
  color: var(--color-gray-600, #5b6b82);
  font-size: .82rem;
}
.about-phone {
  display: inline-flex;
  margin-top: 1.15rem;
  font-weight: 700;
  color: #0f766e;
}

.about-gallery { padding-top: .5rem; }
.about-gallery-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 1.5rem;
}
.about-gallery-head h2 { margin: 0 0 .5rem; }
.about-gallery-head p {
  margin: 0;
  color: var(--color-gray-600, #5b6b82);
}
.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 900px) {
  .about-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .about-gallery-grid { grid-template-columns: 1fr; }
}
.about-photo {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #eef2f7;
  border: 1px solid rgba(15,27,45,.05);
  box-shadow: 0 14px 36px rgba(15,27,45,.07);
  animation: aboutRise .7s ease both;
  animation-delay: calc(var(--i, 0) * .08s);
}
.about-photo img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.about-photo:hover img { transform: scale(1.04); }
.about-photo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: .7rem .9rem;
  background: linear-gradient(transparent, rgba(15,27,45,.72));
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
}
@keyframes aboutRise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

.about-gallery-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  border: 1px dashed rgba(15,27,45,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.7);
  color: var(--color-gray-600, #5b6b82);
}
.empty-shop {
  display: inline-flex;
  gap: .45rem;
  margin-bottom: .85rem;
}
.empty-shop span {
  width: 42px; height: 56px;
  border-radius: 10px;
  border: 2px solid rgba(31,111,235,.18);
  background: linear-gradient(160deg, #fff, #e8eef8);
  animation: float 4s ease-in-out infinite;
}
.empty-shop span:nth-child(2) { height: 68px; animation-delay: .3s; }
.empty-shop span:nth-child(3) { animation-delay: .6s; }

.about-cta { margin-top: 1rem; }
