﻿/* =============================================
   ABOUT HERO
   ============================================= */
.about-hero {
  padding: 80px 0;
  background: var(--bg);
}

.about-hero__inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: center;
}

.about-hero__photo {
  position: relative;
}

.about-hero__photo::before {
  display: none;
}

.about-hero__photo img {
  width: 280px !important;
  height: 280px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  object-position: top center !important;
  display: block;
  position: relative;
  z-index: 1;
}

.about-hero__content h1 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 14px;
}

.about-hero__sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 0;
}

.about-hero__stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  margin-top: 28px;
}

.about-stat-num {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
}

.about-stat-label {
  font-size: 11px;
  color: var(--light);
  font-weight: 600;
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* =============================================
   STORY SECTION
   ============================================= */
.about-story {
  background: var(--bg-alt);
  padding: 80px 0;
}

.about-story__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.about-story__text .eyebrow {
  margin-bottom: 14px;
}

.about-story__text .section-title {
  margin-bottom: 28px;
}

.about-story__text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-story__text p:last-child {
  margin-bottom: 0;
}

.about-quote {
  background: var(--bg);
  border-left: 4px solid var(--accent);
  border-radius: 0 14px 14px 0;
  padding: 28px 32px;
  position: sticky;
  top: 100px;
}

.about-quote__text {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 12px;
}

.about-quote__attr {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

/* =============================================
   EXPERIENCE CARDS
   ============================================= */
.about-exp {
  background: var(--bg);
  padding: 80px 0;
}

.about-exp__header {
  margin-bottom: 40px;
}

.about-exp__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.about-exp__card {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.about-exp__card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 8px 28px rgba(108, 99, 255, 0.1);
}

.about-exp__icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.about-exp__card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}

.about-exp__card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* =============================================
   HOW I WORK
   ============================================= */
.about-how {
  background: var(--bg-alt);
  padding: 80px 0;
}

.about-how__header {
  margin-bottom: 40px;
}

.about-how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-how__item {
  background: var(--bg);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1.5px solid var(--border);
}

.about-how__icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.about-how__item h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}

.about-how__item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* =============================================
   CTA SECTION
   ============================================= */
.about-cta {
  background: var(--accent);
  padding: 80px 0;
  text-align: center;
}

.about-cta h2 {
  color: #fff;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  margin-bottom: 14px;
}

.about-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.about-cta .btn-white {
  background: #fff;
  color: var(--accent);
  border: 2px solid #fff;
}

.about-cta .btn-white:hover {
  background: var(--accent-bg);
  border-color: var(--accent-bg);
  color: var(--accent);
}

/* =============================================
   MOBILE (<768px)
   ============================================= */
@media (max-width: 767px) {
  .about-hero,
  .about-story,
  .about-exp,
  .about-how,
  .about-cta {
    padding: 56px 0;
  }

  .about-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-hero__photo {
    display: flex;
    justify-content: center;
  }

  .about-hero__photo img {
    width: 160px !important;
    height: 160px !important;
  }

  .about-hero__sub {
    max-width: 100%;
  }

  .about-story__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-quote {
    position: static;
  }

  .about-exp__grid {
    grid-template-columns: 1fr;
  }

  .about-how__grid {
    grid-template-columns: 1fr;
  }
}
