/* ==========================================================
   ELITE AUTO — about.css
   ========================================================== */

/* ── STORY SECTION ──────────────────────────────────────── */
.about-story {
  background: var(--bg);
  padding: 5rem 2rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 2.5rem;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-text p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
}

.about-text p strong {
  color: var(--text);
  font-weight: 700;
}

.about-photo-wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.about-photo-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}

/* ── BADGES STRIP ───────────────────────────────────────── */
.about-badges-section {
  background: var(--bg-alt);
  padding: 3.5rem 2rem;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}

.about-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.about-badge {
  background: #fff;
  border: 1.5px solid #e4e4e4;
  border-radius: 8px;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.about-badge:hover {
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(126, 200, 50, 0.1);
}

.about-badge-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--green);
}

.about-badge-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

/* ── VALUES SECTION ─────────────────────────────────────── */
.about-values {
  background: var(--bg);
  padding: 5rem 2rem;
}

.about-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
}

.about-value-item {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--surface);
}

.about-value-item:nth-last-child(-n+2) {
  border-bottom: none;
  padding-bottom: 0;
}

.about-value-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.about-value-name::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.about-value-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── CTA STRIP ──────────────────────────────────────────── */
.cta-strip {
  background: var(--dark);
  padding: 3.5rem 2rem;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-strip-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.cta-strip-sub {
  font-size: 0.925rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.35rem;
  line-height: 1.6;
}

.cta-strip-actions {
  display: flex;
  gap: 0.85rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 860px) {
  .about-grid          { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-photo-wrap img { height: 360px; }
  .about-badges-grid   { grid-template-columns: 1fr 1fr; }
  .about-values-grid   { grid-template-columns: 1fr; }
  .about-value-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--surface); padding-bottom: 2rem; }
  .about-value-item:last-child { border-bottom: none; padding-bottom: 0; }
}

@media (max-width: 600px) {
  .about-story         { padding: 3.5rem 1.25rem; }
  .about-badges-section { padding: 2.5rem 1.25rem; }
  .about-values        { padding: 3.5rem 1.25rem; }
  .cta-strip           { padding: 3rem 1.25rem; }
  .cta-strip-inner     { flex-direction: column; align-items: flex-start; }
  .cta-strip-actions   { width: 100%; flex-direction: column; }
  .cta-strip-actions .btn { width: 100%; }
}
