/* DOIT GIFT About V1 */
.about-hero {
  padding: 88px 0 76px;
  background:
    radial-gradient(circle at 82% 12%, rgba(227,27,35,.10), transparent 28%),
    linear-gradient(135deg, #fff 0%, #f1f1f1 100%);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}

.about-hero h1 {
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.01;
  letter-spacing: -.05em;
  margin: 18px 0 24px;
}

.about-hero h1 span {
  color: var(--accent);
}

.about-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.about-visual {
  min-height: 450px;
  border-radius: 28px;
  padding: 28px;
  background: linear-gradient(145deg, #151515, #333);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.16);
}

.about-visual::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.10);
  right: -110px;
  top: -130px;
}

.visual-label {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,.58);
  font-size: 11px;
  letter-spacing: .2em;
  font-weight: 800;
}

.visual-grid {
  position: absolute;
  inset: 82px 28px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.visual-tile {
  min-height: 145px;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.visual-tile strong {
  font-size: 24px;
  letter-spacing: -.02em;
}

.visual-tile small {
  font-size: 12px;
  opacity: .70;
}

.tile-number {
  font-size: 11px;
  font-weight: 800;
  opacity: .65;
}

.tile-dark {
  color: #fff;
  background: #222;
  border: 1px solid rgba(255,255,255,.08);
}

.tile-metal {
  color: #111;
  background: linear-gradient(145deg,#eeeeee,#a8a8a8);
}

.tile-light {
  color: #111;
  background: #f5f5f5;
}

.tile-accent {
  color: #fff;
  background: var(--accent);
}

.split-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.split-section h2,
.process-intro h2 {
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: -.045em;
  line-height: 1.05;
}

.split-section h2 span,
.process-intro h2 span,
.section-head h2 span {
  color: var(--accent);
}

.section-copy {
  display: grid;
  gap: 16px;
}

.section-copy p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
}

.about-capability-grid {
  grid-template-columns: repeat(4, 1fr);
}

.about-card {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 18px;
  padding: 26px;
}

.about-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f0f0f0;
  color: #555;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

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

.about-card a {
  color: #111;
  font-weight: 800;
  text-decoration: none;
}

.about-card a:hover {
  color: var(--accent);
}

.values-section {
  background: #111;
  color: #fff;
}

.values-section .section-head p {
  color: #aaa;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.value-card {
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 26px;
  background: rgba(255,255,255,.025);
}

.value-card > span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(227,27,35,.15);
  color: #ff747a;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.value-card p {
  color: #aaa;
  font-size: 14px;
  line-height: 1.75;
}

.process-section {
  background: #fff;
}

.process-intro {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 42px;
}

.process-intro p {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.75;
}

.about-process {
  border-top: 1px solid #dfdfdf;
}

.process-step {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  padding: 28px 0;
  border-bottom: 1px solid #dfdfdf;
}

.step-index {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 7px;
}

.process-step p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  max-width: 800px;
}

@media (max-width: 1000px) {
  .about-hero-grid,
  .split-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-capability-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-visual {
    min-height: 390px;
  }
}

@media (max-width: 640px) {
  .about-hero {
    padding: 58px 0 44px;
  }

  .about-hero h1 {
    font-size: 48px;
  }

  .about-hero p {
    font-size: 16px;
  }

  .about-capability-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-card p {
    min-height: auto;
  }

  .process-intro {
    display: block;
  }

  .process-intro p {
    margin-top: 18px;
  }

  .visual-grid {
    gap: 10px;
  }

  .visual-tile {
    padding: 16px;
    min-height: 120px;
  }

  .visual-tile strong {
    font-size: 18px;
  }
}
